@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-bold-rounded/css/uicons-bold-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-rounded/css/uicons-thin-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-straight/css/uicons-regular-straight.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-chubby/css/uicons-regular-chubby.css');
@import url('https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-bold-straight/css/uicons-bold-straight.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-chubby/css/uicons-thin-chubby.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-straight/css/uicons-solid-straight.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-brands/css/uicons-brands.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
	scroll-behavior: smooth;
}

/* img { max-width:100%; height:auto; display:block; border: none;} */
ul {
	list-style-type: none;
}

a {
	text-decoration: none;
}

/* CSS variables (theme) */
:root {
	--bg: #0f1724;
	--card: #0b1220;
	--muted: #9aa4b2;
	--accent: #4980d4;
	--accent-2: #182753;
	--text: #e6eef6;
	--radius: 12px;
	--container: 1100px;
	--gap: 1.25rem;
	--ff: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	--sat-blue: #1a237e;
	--sat-light-blue: #e8eaf6;
	--sat-green: #4caf50;
	--sat-orange: #ff9800;
	--sat-red: #f44336;
	--sat-gray: #f5f5f5;
	--dark-gray: #3e3e3e;
	--jakarta-plus: "Plus Jakarta Sans", sans-serif;
	--tinos-serif: "Tinos", serif;
	--spectral-serif: "Spectral", serif;
	--source-serif: "Source Serif 4", serif;

}

/* Base page styles */
body {
	color: #555;
	font-size: 15px;
	font-family: var(--jakarta-plus);
	color: var(--text);
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-bottom: 0rem;
}

.text-dar {
	color: var(--sat-blue);
}

.btn-primary {
	color: var(--bs-btn-active-color)#fff;
	background: linear-gradient(135deg, #2563eb, #1e40af);
	border-color: var(--bs-btn-active-border-color);
}


/* Layout container */
/* .container{width: min(94%, var(--container)); margin: 0 auto;} */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--jakarta-plus);
}

.innerpage-text-heading h2 strong {
	font-family: "Roboto Mono", monospace;
}


.p_category{    display: block; margin-bottom:8px;}

#headerWrapper {
	box-shadow: 0px 0px 11px 0px #9397cb;
}

/* DEFAULT STATE */
.main-header {
	position: relative;
	background: #fff;
	transition: all 0.3s ease;
	z-index: 999;
}

/* STICKY STATE (after 100px) */
.header-sticky-active .main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	animation: slideDown 0.3s ease;
}

/* BODY OFFSET (jump fix) */
.header-sticky-active body {
	padding-top: 85px;
	/* approx navbar height */
}

/* Optional animation */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.site-header {
	background: #fff;
	backdrop-filter: blur(6px);
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.site-header .container {
	display: flex;
	gap: var(--gap);
	align-items: center;
	padding: 0.5rem 0;
}

.top-navbar-section {
	background: #eff0f7;
}

.top-navbar {
	display: flex;
	align-items: Center;
	justify-content: space-between;
}

.top-navbar a {
	color: #555;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 8px;
	line-height: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.top-navbar a i {
	margin-right: 5px;
}


/* When scrolled down */
.header-sticky.sticky-active {
	background-color: #ffffff;
	/* white background after scroll */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 0;
	/* shrink effect */
}

/* Modal */
.pricing-modal {
	background: #fff;
	border-radius: 14px;
}

/* Popup Container */
.login-popup {
	padding: 20px 22px;
	font-family: "Segoe UI", sans-serif;
	color: #222;
}

/* Logo */
.login-logo {
	width: 100px;
	margin: auto;
	padding: 0;
}

.login-logo img {
	display: block;
	max-width: 100px;
}

/* Breadcrumb Wrapper */
.breadcrumb-bar {

	padding: 20px 0px;
	border-bottom: 1px solid #c5ced366;
	gap: 10px;
}

/* Custom Breadcrumb */

.home-icon {
	color: #fff;
	font-size: 16px;
	display: block;
	text-align: center;
	text-decoration: none;
	background: #0381d8;
	padding: 5px;
	border-radius: 5px;
	width: 30px;
	height: 30px;
}

.breadcrumb-pill {
	background: #d4eaf8;
	color: rgb(3, 34, 84);
	border: none;
	border-radius: 22px;
	padding: 6px 8px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	padding: 0px;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(230, 57, 70, .15);
}

.breadcrumb-pill .b-m-link {
	min-width: 64px;
	color: rgb(3, 34, 84);
	text-transform: none;
	font-size: 0.8rem;
	font-style: normal;
	padding: 6px 8px;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
}

.breadcrumb-dd ul.dropdown-menu>li>a.dropdown-item {
	font-size: 0.8rem;
	color: rgb(3, 34, 84);
	font-weight: 600;
}

.breadcrumb-dd ul.dropdown-menu>li>a.dropdown-item:hover {
	color: rgb(41 99 193);
}

.breadcrumb-pill i {
	background: #d4eaf8;
	color: rgb(3, 34, 84);
	border-left: 1px solid #fff;
	padding: 8px 6px;
	border-radius: 0% 50% 50% 0%;
	display: flex;
	padding: 8px 8px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.breadcrumb-pill:hover,
.breadcrumb-pill.active {
	background: #fff;
}

/* Dropdown menu popup look */
.breadcrumb-dd .dropdown-menu {
	border-radius: 14px;
	padding: 8px 0;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
	margin-top: 10px;
}

.breadcrumb-dd .dropdown-menu {
	border-radius: 14px;
	padding: 8px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
	margin-top: 0px;
	z-index: 99;
}

.divider {
	color: #486ba5;
	font-weight: 600;
}


/* Titles */
.login-popup-form h2 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 2px;
	margin-top: 10px;
	color: #042254;
	text-align: center;
}

.login-popup-form .subtitle {
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 14px;
	color: #555;
	text-align: center;
}

.popup-btn-login {
	text-align: center;
}

.otp-row {
	display: flex;
	gap: 10px;
}

.otp-left {
	width: 55%;
}

.otp-right {
	width: 23%;
}

.otp-mid {
	width: 22%;
}


.otp-btn-full {
	width: 100%;
	background: #0381d8;
	color: #fff;
	border: none;
	padding: 11.5px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
}

.form-control.form-control-otp {
	padding: 0px;
	text-align: center;
}

.otp-btn-full:hover {
	background: #0381d8;
}


.input-svg-icon {
	position: absolute;
	top: 60%;
	left: 12px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #9ca3af;
}

/* Inputs */
.login-popup-form .form-control {
	width: 100%;
	height: 35px;
	padding-left: 42px;
	/* space for icon */
	box-sizing: border-box;
}

.form-control:focus {
	border-color: #4f46e5;
	box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
}

/* Input section */
.captcha-group {
	display: flex;
	gap: 10px;
}

.captcha-input {
	position: relative;
	flex: 1;
}

.captcha-input i {
	position: absolute;
	top: 30%;
	left: 10px;
	transform: translateY(-50%);
	color: #999;
}

.captcha-input input {
	height: 45px;
	border-radius: 5px;
}

.captcha-box {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#captchaCanvas {
	display: block;
	border-radius: 6px;
	background: #f2f2f2;
	margin-bottom: 4px;
	padding: 3px;
}

.captcha-box a {
	font-size: 12px;
	color: #1a73e8;
	cursor: pointer;
	text-decoration: underline;
}


/* Button */
.btn-login {
	height: 42px;
	font-size: 16px;
	margin-top: 0px;
	border-radius: 10px;
	padding: 0px 40px;
	background: #042254;
	color: #fff;
	border: none;
	line-height: 0;
}

/* Footer */
.form-footer {
	font-size: 14px;
	margin-top: 15px;
}

.form-footer a {
	font-weight: 500;
	color: #0582d8;
}

.loginPopup-modal .modal-body {
	padding: 0 20px 20px 20px;
}

.loginPopup-modal {
	background-color: #eff0f7;
	padding: 0px;
}

.loginPopup-modal .login-popup-form {
	background: #ffffff;
	border-radius: 14px;
	padding: 15px 25px;
	margin-bottom: 10px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loginPopup-modal .login-popup {
	border-radius: 0 0 10px 10px;
	padding: 0px 10px;
}

/* Close icon */
.loginPopup-modal .modal-header {
	padding: 15px !important;
}

.loginPopup-modal .modal-header .btn-close {
	transform: scale(0.8);
}

.login-popup-form .form-group {
	margin-bottom: 10px;
	position: relative;
}

.customer-reviews-section {
	width: 100%;
	padding: 60px 0;
	background: #ffffffd4;
}

.testimonial-wrap {
	width: 100%;
	max-width: 820px;
	text-align: center
}

/* stars */
/* .row.customer-form-row .col-lg-7 {margin: 0;padding: 0;}
.row.customer-form-row .col-lg-5 {margin: 0;padding: 0;} */
.testimonial-stars {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 24px
}

.star {
	font-size: 28px;
	color: #cb721b;
	filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.05))
}

.testimonial-card {
	position: relative;
	background: #eff0f7;
	height: 543px;
	border-radius: 28px;
	padding: 48px 54px 70px 36px;
	box-shadow: var(--shadow);
	text-align: left
}

.avatar {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	overflow: hidden;
	margin-left: 10px;
	box-shadow: 0 4px 10px rgba(20, 30, 40, 0.08)
}

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

.avatar-flex {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.quote-left {
	color: #000000;
	font-size: 200px;
	line-height: 1;
	position: absolute;
	left: 15px;
	top: 20px;
	font-family: "Playfair Display", serif;
}

.quote-right {
	color: #000000;
	font-size: 200px;
	font-family: "Playfair Display", serif;
	line-height: 1;
	position: absolute;
	right: 20px;
	bottom: 40px
}

.testimonial-card-content {
	padding-top: 10px;
	margin-left: 70px;
}

.name {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.6px;
	font-size: 18px;
	color: #182753;
}

.location {
	font-weight: 600;
	color: #222
}

.testimonial {
	margin-top: 30px;
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #555;
	font-weight: 400;
	line-height: 1.7;
	font-size: 18px;
	text-align: justify;
}

.avatar-text span {
	color: #555;
}

/* Text colors */
.main-header .nav-link {
	color: #10346d;
	font-size: 16px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
}

.main-header.sticky-active .nav-link:hover {
	color: #10346d;
}

.nav-menu {
	display: flex;
	align-items: center;
}

.user img {
	width: 20px;
}

.brand img {
	max-width: 213px;
	/* full size reference */
	width: 120px;
	/* default small size for header */
	height: auto;
	object-fit: contain;
}

.user_section {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
}

/* ===============================
   CONTACT FORM CARD (SCOPED)
================================ */

.contact-form-card {
	max-width: 720px;
	margin: auto;
	background: #ffffff;
	padding: 40px 45px;
	height: 543px;
	border-radius: 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
}

.contact-form-card::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -40%;
	width: 220px;
	height: 220px;
	background: rgba(255, 204, 0, 0.2);
	border-radius: 50%;
	transition: 0.4s ease;
}

/* HEADINGS */
.contact-form-card h3 {
	font-size: 24px;
	color: #182753;
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 600;
	border-bottom: 1px solid #ddd;
	padding-bottom: 7px;
	text-align: center;
}

.contact-form-card .form-subtitle {
	font-size: 14px;
	color: #6b6b6b;
	margin-bottom: 30px;
	font-weight: 600;
}

/* FORM GROUP */
.contact-form-card .form-group {
	margin-bottom: 18px;
}

/* LABEL */
.contact-form-card label {
	font-size: 15px;
	font-weight: 500;
	color: #555;
	display: block;
	margin-bottom: 5px;
	margin-top: 0px;
}

/* INPUT + SELECT + TEXTAREA */
.contact-form-card .form-control,
.contact-form-card .form-select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 13px;
	color: #aaa;
	transition: all 0.3s ease;
}

/* PLACEHOLDER */
.contact-form-card .form-control::placeholder {
	color: #aaa;
	font-size: 13px;
}

/* FOCUS STATES */
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
	outline: none;
	border-color: #4b3f72;
	box-shadow: 0 0 0 3px rgba(75, 63, 114, 0.15);
}

/* TEXTAREA FIX */
.contact-form-card textarea.form-control {
	resize: none;
}

/* BUTTON */
.contact-form-card .btn-submit {
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	background: #10346d;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

/* BUTTON HOVER */
.contact-form-card .btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(75, 63, 114, 0.4);
}

/* BUTTON FOCUS */
.contact-form-card .btn-submit:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(75, 63, 114, 0.25);
}


.login a {
	background-color: #4980d4;
	color: #fff;
	border-radius: 15px;
	margin-left: 10px;
	text-transform: uppercase;
	padding: 4px 15px;
	text-decoration: none;
}

.login a:hover {
	background-color: #182753;
	color: #fff;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	color: var(--text);
	font-size: 1.2rem;
}

/* NAVBAR */
.site-navbar {
	background: #fff;
	margin: 0;
	padding: 0;
}

.site-navbar .navbar-brand {
	color: var(--brand-blue);
	font-weight: 700;
}

.nav-link {
	color: #1a2330;
	font-weight: 500;
	font-size: 16px;
}

/* MEGA WRAP - hidden by default */
.mega-wrap {
	position: absolute;
	left: 0;
	right: 0;
	top: 90px;
	display: none;
	/* will show when .show applied */
	justify-content: center;
	padding: 18px;
	z-index: 999;
	font-size: 14px;
}

/* visible state */
.mega-wrap.show {
	display: flex;
	animation: megaFade .12s ease;
}

@keyframes megaFade {
	from {
		opacity: 0;
		transform: translateY(6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mega box */
.mega {
	width: 90%;
	max-width: 1200px;
	margin: a;
	background: #fff;
	color: #122;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(3, 17, 34, 0.25);
	overflow: hidden;
}

/* inside layout */
.mega-inner {
	display: flex;
	min-height: 260px;
}

.mega-left {
	width: 290px;
	border-right: 1px solid #eef2f5;
	padding: 15px;
	background: #fff;
}

.mega-mid {
	width: 290px;
	border-right: 1px solid #eef2f5;
	padding: 15px;
	background: #fff;
}

.mega-right {
	flex: 1;
	padding: 18px 24px;
	background: #fff;
}

.custom {
	top: 75px;
	font-size: 14px;
	border: none;
	box-shadow: 0 10px 30px rgba(3, 17, 34, 0.25);
}

.custom li a {
	padding: 10px 15px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
}

/* left list */
.left-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.left-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 3px 10px;
	border-radius: 15px;
	margin-bottom: 8px;
	cursor: pointer;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	color: #2c2c2c;
}

.left-item:hover {
	background: rgba(0, 43, 128, 0.04);
}

.left-item.active {
	background: #eff0f7;
	color: #555;
}

.left-item .icon {
	min-width: 40px;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: #eff0f7;
	color: var(--accent-blue);
	font-weight: 700;
	font-size: 16px;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.left-item.active .icon {
	background: rgba(255, 255, 255, 0.15);
	color: #555;
}

/* mid list */
.mid-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mid-item {
	padding: 5px 10px;
	border-radius: 15px;
	cursor: pointer;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #555;
	font-size: 14px;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.mid-item:hover {
	background: #eff0f7;
}

.mid-item.active {
	background: #eff0f7;
	box-shadow: inset 0 0 0 1px rgba(45, 129, 255, 0.04);
}

/* right columns */
.right-columns {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.link-col {
	min-width: 180px;
}

.col-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	color: #10346d;
	font-size: 16px;
}

.link-col a {
	font-family: "Plus Jakarta Sans", sans-serif;
	display: block;
	color: #555;
	margin-bottom: 8px;
	text-decoration: none;
	font-size: 14px;
	padding: 0;
}

.link-col a:hover {
	color: var(--accent-blue);
}


/* Hero */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: linear-gradient(1184deg, #7abef7 0%, #4080f5 28%, #7747d5 76%, #572ac2 100%);
	text-align: center;
	position: relative;
	padding: 100px;
	z-index: 1;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/home-banner.png") no-repeat right;
	background-size: contain;
	background-position: center;
	opacity: 0.2;
	/* image opacity only */
	z-index: -1;
	top: 50px;
}

.hero-pic {
	width: 100vh;
}

.hero-text {
	text-align: left;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.text-heading h3 {
	font-size: 18px;
	color: #ffc000;
	background-color: #182753;
	padding: 5px 10px;
	border-radius: 15px;
}

.hero-text h1 {
	font-size: 52px;
	color: #ffffffd4;
	font-family: "Josefin Sans", sans-serif;
	text-align: center;
}

.hero-text p {
	color: #ffffffd4;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	text-align: center;
	padding: 0 80px;
	margin: 0px 0 40px 0;
	font-weight: 400;
}

.hero-text p span {
	color: #cdc8c8;
	font-weight: 500;
}

.lead {
	color: var(--muted);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.row.liveworkshop-service {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.liveworkshop-service-box {
	padding: 15px 10px;
	background: #042254;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgb(13 110 253 / 44%);
	transition: all 0.4s ease;
}

.liveworkshop-service-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

.liveworkshop-service-box p {
	font-size: 16px;
	margin: 0;
	padding: 0;
	min-height: 90px;
	height: 90px;
}

.liveworkshop-service-box img {
	margin: 10px 0;
}

.icon-size {
	transition: transform 0.4s ease, color 0.4s ease;
	font-size: 30px;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: auto;
	line-height: 0px;
}

.liveworkshop-service-box:hover .icon-size {
	transform: scale(1.2);
}


.herotextflex {
	margin-top: 70px;
	padding: 0;
}

.cd-words-wrapper {
	display: inline-block;
	position: relative;
	text-align: left;
}

.cd-words-wrapper b {
	display: inline-block;
	position: absolute;
	white-space: nowrap;
	left: 0;
	top: 0;
}

.cd-words-wrapper b.is-visible {
	position: relative;
}

.no-js .cd-words-wrapper b {
	opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
	opacity: 1;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip span {
	display: inline-block;
	padding: 0;
	margin-top: 0px;
	margin-left: 10px;
}

.cd-headline.clip .cd-words-wrapper {
	overflow: hidden;
	vertical-align: middle;
}


.cd-headline.clip .cd-words-wrapper::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 5px;
	height: 60%;
	margin-left: 10px;
	background-color: #ffc000;
	transform: translateY(-50%);
}

.cd-headline.clip b {
	opacity: 0;
}

.cd-headline.clip b.is-visible {
	opacity: 1;
}


.clr-yellow {
	background-color: #be942e;
}

.clr-blue {
	background-color: #0081D6;
}

.clr-pink {
	background-color: #6F396A;
}

.clr-green {
	background-color: #12B76A;
}

.bx-clr-orange {
	background-color: #b79b12;
	font-size: 24px;
	border-radius: 15px;
	padding: 5px;
}

article.news-heading-text {
	margin-top: 60px;
	color: #042254;
}

.courses-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0 80px 0;
	background-image: #fff;
}

.live-work-shop-text p {
	padding: 0;
	color: #555;
	font-size: 16px;
	margin: 10px 0 30px 0;
	padding: 0 100px;
}

.course-card {
	box-shadow: 0 5px 20px rgb(0 0 0 / 59%);
	padding: 10px 20px;
	border-radius: 15px;
	margin-bottom: 20px;
	border-top: 5px solid #ffc000;
}


.col-sm-12.col-md-6.col-lg-4.wow.fadeInDown {
	margin-top: 30px;
}

.bx-clr-sky-blue {
	background-color: #2b96dd;
}

.bx-clr-blue {
	background-color: #2e4871;
}

.bx-clr-red {
	background-color: #c24833;
}

.bx-clr-purple {
	background-color: #6f396a;
}

.bx-clr-yellow {
	background-color: #cb721b;
}

.bx-clr-green {
	background-color: #12b76a;
}

.course-card h2 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
}

.course-card p {
	color: #fff;
	margin-top: 10px;
	padding: 0;
	font-size: 14px;
}

.card-link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 700;
}

.project-text {
	text-align: center;
	margin: 0px;
	padding: 0px;
}

.text-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #182753;
}

.courses-section .project-text .text-heading {
	margin: 0px;
	padding: 0px;
}

.live-work-shop-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
}

.new-article-heading {
	margin-bottom: 40px;
}

.sat-top-text span {
	color: #fff;
	padding: 8px;
	border-radius: 10px;
	font-family: "Noto Serif", serif;
	font-weight: 500;
	font-size: 14px;
	width: 50px;
	display: block;
	text-align: center;
}


.heading-sky-blue-icon span {
	background: #2481bf;
	padding: 10px;
	border-radius: 15px;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.heading-blue-icon {
	background: #10346d;
	padding: 10px;
	border-radius: 15px;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	text-align: center;
}


.heading-red-icon {
	background: #b12a12;
	padding: 10px;
	border-radius: 15px;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.heading-purple-icon {
	background: #610a59;
	padding: 10px;
	border-radius: 15px;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.heading-yellow-icon {
	background: #8b4d11;
	padding: 10px;
	border-radius: 15px;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.heading-lightyellow-icon {
	background: #218b25;
	padding: 10px;
	border-radius: 15px;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	text-align: center;
}


/* Main Card Style */
.live-work-shop-card {
	background: #ffffff;
	padding: 30px 25px;
	border-radius: 18px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	text-align: left;
	transition: all 0.35s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}


.live-work-shop-card::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -40%;
	width: 220px;
	height: 220px;
	background: rgba(255, 204, 0, 0.2);
	border-radius: 50%;
	transition: 0.4s ease;
}

.live-work-shop-card:hover::after {
	transform: scale(1.4);
	background: rgba(255, 204, 0, 0.25);
}


/* Hover Effect */
.live-work-shop-card:hover {
	transform: translateY(-10px);
	border-color: #cb721b;
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

/* Heading */
.live-work-shop-card h3 {
	font-size: 24px;
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #042254;
	line-height: 1.3;
}

/* Paragraph */
.live-work-shop-card p {
	font-size: 15px;
	color: #555;
	margin-bottom: 18px;
}

.workshop-info {
	list-style: none;
	padding: 0;
	margin: 0 0 18px 0;
}

.workshop-info li {
	font-size: 15px;
	color: #555;
	margin-bottom: 10px;
	position: relative;
}

/* Checkmark bullet (same style as .satprep-packages-card ul li::before) */
/* .workshop-info li::before {
  content: "✔";
  color: #cb721b;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1px;
} */

/* Highlight labels */
.workshop-info li strong {
	color: #cb721b;
	font-weight: 600;
}


/* Button Wrapper */
.explorer-more {
	margin-top: 25px;
}

/* Buttons */
/* Button Base Style */
.agenda {
	background-color: #fff;
	padding: 10px 20px;
	border: 1px solid #cb721b;
	color: #cb721b;
	font-weight: 600;
	border-radius: 10px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-right: 10px;
}

/* Hover */
.agenda:hover {
	background-color: #cb721b;
	color: #fff;
}

/* Read More Wrapper → Center Align */
.live-work-shop-readmore {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

/* Read More Button Style (same as agenda/register) */
.live-work-shop-readmore a {
	padding: 10px 20px;
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	Background: #0b163f;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 3px 15px -4px rgba(0, 0, 0, .7);
}

/* Hover */
.live-work-shop-readmore a:hover {
	background-color: #0381d8;
	color: #fff;
}


.wow {
	visibility: hidden;
}

.hero.wow.fadeIn {
	animation-name: fadeIn;
}

.testimonial-slider .rn-box-card {
	background: #fff;
	padding: 30px 25px;
	border-radius: 10px;
	box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.09);
	text-align: left;
	transition: all 0.35s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	color: #212529;


}


.quote-icon {
	position: relative;
	left: 0px;
	right: 0px;
	top: 25px;
	background: #fff;
	color: #0381d8;
	width: 55px;
	height: 55px;
	margin: auto;
	box-shadow: 0 0 6px 3px rgb(2 6 23 / 22%);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	font-size: 30px;
	line-height: 0;
}

.quote-icon .fa-quote-left {
	font-size: 30px;
}


/* .testimonial-slider .rn-box-card::before {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -39%;
    width: 220px;
    height: 220px;
    background: rgba(255, 204, 0, 0.2);
    border-radius: 50%;} */


.testimonial-slider .rn-box-card::after {
	content: "";
	position: absolute;
	bottom: -40%;
	right: -39%;
	width: 220px;
	height: 220px;
	background: rgb(4 0 255 / 20%));
	border-radius: 50%;
}


.testimonial-slider {
	margin-top: 0px;
}

.testimonial-slider .thumbnail {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonial-slider .thumbnail img {
	width: 90px;
	height: 90px;
	border-radius: 15px;
	object-fit: cover;
}

.testimonial-slider .thumbnail i {
	position: absolute;
	bottom: -10px;
	right: 30%;
	font-size: 20px;
	color: #f39c12;
}

.testimonial-slider .description {
	margin: 50px 0 15px 0;
	font-style: italic;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #212529;
}


.content .title {
	font-size: 24px;
}


.articles-section {
	padding: 80px 0;
	background: #f0f0f0;
}

.articles-box {
	background: #ffffff;
	padding: 20px 20px 20px 20px;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.35s ease;
	display: block;
	position: relative;
	overflow: hidden;
}

.articles-box img {
	width: 100%;
	border-radius: 15px;
	margin-bottom: 20px;
}

.articles-box h3 {
	font-size: 15px;
	font-weight: 400;
	color: #000;
	margin-bottom: 20px;
	letter-spacing: 0.3px;
}

.articles-box h2 {
	margin-top: 10px;
	margin-bottom: 20px;
	color: #555;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.articles-box-display {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 600;
}

/* Arrow default */
.articles-box-icon i {
	font-size: 20px;
	font-weight: 900;
	opacity: 1;
	transition: 0.35s ease;
	transform: translateX(0);
	margin-top: 5px;
}

/* Learnmore default hidden */
.articles-box-learmore .btn-main {

	padding: 10px 20px;
	border: 1px solid #0b163f;
	color: #0b163f;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 5px;
	box-shadow: none;
	border-radius: 10px;
}

/* Hover State — Reveal Learnmore / Hide Arrow */


.articles-box:hover .articles-box-learmore .learnmore {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Hover Box Style */
.articles-box:hover {
	background-color: #eff0f7;
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* default arrow (down) */
#subjectsToggle svg {
	transition: transform 0.25s ease;
}

/* when mega menu is open, rotate arrow up */
#subjectsToggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.navbar-nav .nav-link svg {
	transition: transform 0.25s ease;
}

/* Rotate arrow up when the menu is open */
.navbar-nav .nav-link[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.live-work-shop-show-time {
	display: flex;

}

.liveworkshop-service-box h2 {
	font-family: "Poppins", sans-serif;
	margin-top: 20px;
	font-weight: 600;
}

.user_section button.btn.btn-primary {
	background: #10346d;
	padding: 9px 20px;
	border: none;
	color: #fff;
	font-weight: 500;
	border-radius: 10px;
	font-size: 14px;
	cursor: pointer;
}

.user_section button.btn.btn-primary:hover {
	opacity: 0.9;
}

.user_section button.btn.btn-outline-primary {
	background-color: transparent;
	background-color: #fff;
	padding: 7px 20px;
	border: 1px solid #10346d;
	color: #10346d;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.user_section button.btn.btn-outline-primary:hover {
	background-color: #f1f1f1;
	color: #10346d;
}


.tab-content .tab-pane {
	padding: 40px 20px 30px 20px;
	border-radius: 15px;
	border: none;
	width: 95%;
	margin: auto;
	transition: background-color 0.3s ease;
}


.tab-section .nav-tabs .nav-item button.nav-link {
	font-size: 28px;
	transition: 0.5s;
	background-size: 200% auto;
	box-shadow: 0 0 20px #eee;
	border-radius: 10px;
	display: block;
}

/*******======Balvant Rana=======**************/
.tab-section {
	margin-top: 30px;
}

.tab-section .nav-tabs {
	align-items: center;
	justify-content: center;
	border: none;
}

.tab-section .tab-content {
	border-radius: 0 0 10px 15px;
}

.tab-section .nav-tabs .nav-item {
	display: block;
	padding: 20px 10px;
}

.card-light-blue>.nav-link {
	Border: 1px solid #2049a5;
	color: #2049a5;
}

.card-blue>.nav-link {
	Border: 1px solid #1d5265;
	color: #123846;
}

.card-red>.nav-link {
	Border: 1px solid #28c7b0;
	color: #169380;
}

.card-purple>.nav-link {
	Border: 1px solid #735358;
	color: #4c3136;
}

.card-yellow>.nav-link {
	Border: 1px solid #7eaa89;
	color: #53815f;
}

.card-light-blue .nav-link.active,
.card-light-blue .nav-link:hover {
	background-color: #0b163f;
	color: #fff;
}

.card-blue .nav-link.active,
.card-blue .nav-link:hover {
	background-color: #1d5265;
	color: #fff;
}

.card-red .nav-link.active,
.card-red .nav-link:hover {
	background-color: #28c7b0;
	color: #fff;
}

.card-purple .nav-link.active,
.card-purple .nav-link:hover {
	background-color: #735358;
	color: #fff;
}

.card-yellow .nav-link.active,
.card-yellow .nav-link:hover {
	background-color: #7eaa89;
	color: #fff;
}

.sat_bg {
	background: #0a163e;
}

.ap_bg {
	background: linear-gradient(135deg, #327891, #1d5265);
}

.act_bg {
	background: linear-gradient(135deg, #43c3b0, #2a9383);
}

.psat_bg {
	background: linear-gradient(135deg, #997e81, #745b5f);
}

.cuet_bg {
	background: linear-gradient(135deg, #8abd97, #598d66);
}

.tab-pane .btn {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.ap-bg h2 {
	color: #0b163f;
}

.act-bg h2 {
	color: #169380;
}

.psat-bg h2 {
	color: #4c3136;
}

.cuet-bg h2 {
	color: #53815f;
}

.card-header p {
	font-size: 18px;
}


.subject-col {
	padding: 40px 30px;
	border-radius: 22px;
	height: 100%;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	height: 200px;
	transition: all 0.3s ease;
}

.subject-col:hover {
	transform: translateY(-5px);
	transition: all 0.3s ease;
	box-shadow: 0px 5px 20px -5px #4c4b4beb;
}

.subject-col-text {
	position: absolute;
	bottom: 16px;
	right: 30px;
}

.subject-card h4 {
	font-size: 28px;
	font-weight: 600;
	margin: 0;
}

/* Links */
.subject-link {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 15px;
}

.subject-link:hover {
	text-decoration: underline;
	color: #fff;
}

/* --- Color Themes --- */


/* --- Tab Content Colors (only when active) --- */
.tab-content .tab-pane.active.tab-light-blue {
	background-color: #2481bf;
}

.tab-content .tab-pane.active.tab-blue {
	background-color: #10346d;
}

.tab-content .tab-pane.active.tab-red {
	background-color: hsl(177.77deg 96.91% 38.04%);
}

.tab-content .tab-pane.active.tab-purple {
	background-color: #610a59;
}

.tab-content .tab-pane.active.tab-yellow {
	background-color: #8b4d11;
}


.subject-col-top-heading h3 {
	font-size: 18px;
	font-weight: 700;
	color: #042254;
	margin-top: 15px;
	margin-left: 10px;
	padding: 0;
	text-align: left;
}

.subject-top-heading {
	position: relative;
	padding: 0px;
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
	transition: background-color 0.3s ease;
	width: 100%;
	margin: 0px
}


.subject-top-heading:hover::after {
	opacity: 0.9;
}

.subject-col-top-left i,
.reading-card>table>caption i {
	color: #fff;
	padding: 10px 12px;
	font-size: 32px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin-right: 15px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.reading-card .subject-link {
	color: #26335c;
	padding: 10px 15px;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: #fff;
}

.reading-card .subject-link:hover {
	box-shadow: 0px 0px 5px #bbb0b0cf;
	background: #f4f7ff;
	color: #192a60;
}

.subject-col-top-heading span i {
	padding: 3px;
	margin-top: 7px;
}

.subject-col-top-left {
	display: flex;
	align-items: center;
	justify-content: Left;
}

.subject-col-top-left h4 {
	margin: 0px;
	padding: 0px;
}


.subject-col-text ul {
	margin: 0;
	padding: 0;
	margin-top: 20px;
}

.subject-col-text ul li {
	margin: 0;
	border: 1px solid #ddd;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 11px;
	margin-bottom: 10px;
	color: #2E4871;
	font-size: 14px;
	font-weight: 600;
	width: 100%;
}

.subject-col-text ul li:hover {
	cursor: pointer;
	background-color: #f5f9ff;
}

.faq-section {
	background: #ffffff;
	padding: 60px 0;
}

.faq-gray-section {
	background: #eff0f7;
	padding: 60px 0;
}

.accordion-button::after {
	display: none !important;
}

/* Add custom + / - icons */
.faq-section .accordion-button::before {
	color: #2a2826;
	content: '+';
	font-size: 1.5rem;
	font-weight: 500;
	transition: transform 0.2s ease;
	text-align: right;
	position: absolute;
	right: 10px;

}

.faq-section .accordion-button:not(.collapsed)::before {
	color: #cb721b;
	content: '-';
	transform: rotate(180deg);
}

/* Accordion Container */
.accordion {}

/* Accordion Item */
.accordion-item {
	background: #dfe3f1;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
}

/* Accordion Header Button */
.accordion-button {
	padding: 15px;
	background: #f0f0f0;
	font-size: 16px;
	font-weight: 500;
	color: #212529;
	box-shadow: none;
	transition: all 0.3s ease;
}

/* Highlight effect when hovered or expanded */
.accordion-button:hover,
.accordion-button:not(.collapsed) {
	background: #f4f5f8;
	color: #212529;
}

/* Remove default button outline */
.accordion-button:focus {
	box-shadow: none;
	border: none;
}

/* Accordion Body */
.accordion-body {
	background: #fff;
	padding: 18px 20px;
	font-size: 1rem;
	color: #3e4660;
	line-height: 1.6;
}

/* Anchor styling */
.accordion-body a {
	color: #0381d8;
	text-decoration: none;
	font-size: 14px;
}

.accordion-body a:hover {
	text-decoration: underline;
}

/* Smooth animation */
.accordion-collapse {
	transition: height 0.3s ease;
}


.testimonial-section {
	padding: 60px 0;
	background: #f0f0f0;
}

.testimonial-section .testimonial-slider .quote-left {
	color: #d7d5d5;
	font-size: 155px;
	line-height: 1;
	position: absolute;
	left: 15px;
	top: -12px;
	font-family: "Playfair Display", serif;
}

.testiomonial-star-icon i {
	color: #cb721b;
	font-size: 13px;
	margin-bottom: 10px;
}

/* INNER PAGE CSS START HERE*/
section.innerpage-header {
	padding: 0px 0 40px 0;
}


section.innerpage-header .bradcrumb {
	margin-top: 60px;
	margin-bottom: 20px;
	border-bottom: 1px solid #354157;
	padding-bottom: 10px;
}

section.innerpage-header .bradcrumb a {
	padding-right: 10px;
	display: inline-block;
	color: #fff;
	font-size: 13px;
}

section.innerpage-header .bradcrumb a:hover {
	text-decoration: underline;
}

section.innerpage-header .bradcrumb a i {
	color: #fff;
	font-size: 16px;
	display: block;
	text-align: center;
	text-decoration: none;
	background: #0381d8;
	padding: 5px;
	border-radius: 5px;
	width: 30px;
	height: 30px;
}

section.innerpage-header .header-text h2 {
	margin-top: 0px;
	font-size: 48px;
	color: #fff;
}

section.innerpage-header .header-text h4 {
	margin-top: 0px;
	font-size: 28px;
	color: #fff;
}

section.innerpage-header .header-text p {
	text-shadow: 5px 5px 10px #000000;
	margin-top: 10px;
	line-height: 35px;
	text-align: left;
	font-size: 28px;
	font-weight: 200;
}

section.innerpage-header.sat_bg .header-text span {
	color: #0783d9;
}

section.innerpage-header .header-text span {
	text-shadow: 5px 5px 10px #00000077;
	font-size: 36px;
	font-weight: 700;
	position: relative;
}

section.innerpage-header .demo-session {
	margin-top: 40px;
}

section.innerpage-header .demo-session-btn a {
	box-shadow: 10px 0px 10px #0000006b;
	background: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	width: 260px;
	font-family: 'Poppins';
	text-align: center;
	margin-bottom: 20px;
	color: #042254;
	display: block;
}

section.innerpage-header .demo-session-btn:hover a {
	opacity: 0.9;
}


/*ACT INNER PAGE HEADER*/
section.innerpage-header.act-innerpage-header .header-text span {
	text-shadow: 5px 5px 10px #00000077;
	font-size: 36px;
	color: hsl(177.77deg 96.91% 38.04%);
	font-weight: 500;
	position: relative;
}

.sat-section.act-section .sat-section-service-box .icon-size {
	background-color: hsl(177.77deg 96.91% 38.04%);
}

.act-road-map-section .timeline::before {
	background-color: hsl(177.77deg 96.91% 38.04%);
}

.act-road-map-section .timeline-item.timeline-left::before {
	background: linear-gradient(360deg, hsl(188.48deg 100% 46.06%), hsl(177.77deg 90.47% 24.39%));
}

.act-road-map-section .timeline-item.timeline-right::before {
	background: linear-gradient(360deg, hsl(188.48deg 100% 46.06%), hsl(177.77deg 90.47% 24.39%));
}

.gradeperfect-services.act-gradeperfect-services ul li::before {
	color: hsl(177.77deg 96.91% 38.04%);
}

.act-coursesubject-section .coursesubject-heading .fi {
	background-color: hsl(177.77deg 96.91% 38.04%);
}


.gradeperfect-btn-area.act-gradeperfect-btn-area .gradeperfect-btn {
	margin-top: 60px;
}

.gradeperfect-btn-area.act-gradeperfect-btn-area .gradeperfect-btn a {
	background-color: #fff;
	padding: 12px 25px;
	border: 1px solid #cb721b;
	color: #cb721b;
	font-weight: 600;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gradeperfect-btn-area.act-gradeperfect-btn-area .gradeperfect-btn a:hover {
	background: #cb721b;
	color: #fff;
	transform: translateY(-3px);
}

.satprep-packages.act-packages .courses-head-icon {
	background-color: hsl(177.77deg 96.91% 38.04%);
}


/*SAT INNER PAGE HEADER*/
section.sat-internal-page-header {
	background-color: #e8f6ff;
}

section.sat-internal-page-header .bradcrumb {
	margin-top: 60px;
	margin-bottom: 20px;
	border-bottom: 1px solid #c5ced366;
	padding-bottom: 10px;
}

section.sat-internal-page-header .bradcrumb a {
	padding-right: 10px;
	display: inline-block;
	color: #555;
	font-size: 13px;
}

section.sat-internal-page-header .bradcrumb span {
	color: #000;
}

section.sat-internal-page-header .bradcrumb a:hover {
	text-decoration: underline;
}

section.sat-internal-page-header .bradcrumb a i.fa-house {
	color: #fff;
	font-size: 16px;
	background: #0381d8;
	padding: 5px;
	border-radius: 5px;
	width: 27px;
}

section.sat-internal-page-header .header-text h2 {
	margin-top: 0px;
	font-size: 48px;
	color: #555;
	font-weight: 600;
}

section.sat-internal-page-header .header-text p {
	color: #555;
	margin-top: 10px;
	line-height: 35px;
	text-align: left;
	font-size: 18px;
	font-weight: 200;
	text-shadow: none;
}

section.sat-internal-page-header .header-text span {
	font-size: 36px;
	color: #0381d8;
	font-weight: 600;
	position: relative;
	text-shadow: none;
}

section.sat-internal-page-header .demo-session {
	margin-top: 40px;
}

section.sat-internal-page-header .demo-session-btn a {
	box-shadow: 0 4px 15px rgb(0 0 0 / 18%);
	background: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	width: 260px;
	text-align: center;
	margin-bottom: 20px;
	color: #555;
	display: block;
}

.demo-session.buy-resources-btn .demo-session-btn a {
	box-shadow: 0 4px 15px rgb(0 0 0 / 18%);
	background: #eef7fd;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	width: 260px;
	text-align: center;
	margin-bottom: 20px;
	color: #555;
	display: block;
}

.demo-session.buy-resources-btn .demo-session-btn:hover a {
	background-color: #fff;
}

.mock-test-section-btn {
	padding: 10px 20px;
	border: 1px solid #cb721b;
	background-color: #fff;
	font-weight: 600;
	border-radius: 8px;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	margin: auto;
	color: #cb721b;
	margin-top: 10px;
}

.mock-test-section-btn:hover {
	background-color: #cb721b;
	color: #fff;
}

.btn-orenge {
	border: 1px solid #cb721b;
	background-color: #cb721b;
	color: #fff;
}

.btn-success,
.btn-orenge {
	width: 120px;
}

.btn-orenge:hover {
	background-color: #bb6410;
	color: #ffffff;
}

.mock-test .table-responsive table tr,
.mock-test .table-responsive table tr td {
	border-top: 1px solid #c3cbe7;
	border-bottom: 1px solid #c3cbe7;
	border-left: none;
	border-right: none;
}

section.sat-internal-page-header .demo-session-btn:hover a {
	opacity: 0.9;
}

.right-header-resources {
	width: 280px;
	padding: 20px 25px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	font-family: "Poppins", sans-serif;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
	transform: rotate(-2deg);
}

/* Pin effect */
.right-header-resources::before {
	content: "";
	width: 18px;
	height: 18px;
	background: #0381d8;
	border-radius: 50%;
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Folded bottom corner */
.right-header-resources::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 25px solid rgba(0, 0, 0, 0.1);
	border-left: 25px solid transparent;
}

/* List styling */
.right-header-resources ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.right-header-resources ul li {
	padding: 8px 0;
	font-size: 15px;
	color: #333;
	border-bottom: 1px dashed #c9b65f;
	cursor: pointer;
	transition: 0.3s ease;
}

.right-header-resources ul li:last-child {
	border-bottom: none;
}

.right-header-resources ul li:hover {
	color: #555;
	transform: translateX(5px);
}

.sat-left-heading-text {
	margin-right: 50px;
}

.sat-heading-text {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 30px 0px;
}

.sat-heading-text-icon i {
	font-size: 120px;
	color: rgb(85 85 85 / 24%);
	margin-right: 20px;
	margin-top: 20px;
	display: block;
	padding: 10px 20px 10px 0;
	border-radius: 100%;
}

.form-heading {
	border-bottom: 1px solid #0a163e;
}

.form-heading h3 {
	font-size: 24px;
	padding: 0;
	margin-bottom: 10px;
	color: #0a163e;
	text-align: center;
}

.sat_bg form.contact-form {}

.act_bg form.contact-form {}

form.contact-form {
	background: #d4eaf8;
	padding: 25px 20px 30px;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);

	box-shadow:
		0 25px 45px rgba(0, 0, 0, 0.15),
		inset 0 1px 1px rgba(255, 255, 255, 0.4);

	color: #ffffff;
}

.contact-form {
	margin-top: 0px;
}

.form-control:focus {
	box-shadow: none;
	border: none;
}

.contact-form .form-control {
	font-size: 13px;
	color: #000;
	border: 1px solid #91939d;
}

.contact-form .form-group {
	margin-top: 5px;
}

.contact-form .input-group input#zemail {
	padding: 12px 0;
}

.contact-form .form-group label {
	font-size: 14px;
	margin-bottom: 0px;
	color: #0a163e;
}

.contact-form .form-group select {
	color: #000;
	font-size: 13px;
	padding: 8px 10px;
	border: 1px solid #91939d;
}

.contact-form .form-group textarea {
	padding: 10px;
}

.contact-form .form-group button {
	background: #fff;
	padding: 10px 20px;
	margin-top: 10px;
	color: #000;
	font-weight: 400;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	border: 1px solid #91939d;
}

.contact-form .form-group button:hover {
	background: #0a163e;
	color: #fff;
}

.coursesubject-section {
	padding: 80px 0;
	background: #fff;
}

.contact-form select#ztitle {
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid #91939d;
	outline: none;
}

.contact-form select#zcountry {
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid #91939d;
	outline: none;
}

.coursesubject-row {
	margin: auto;
	margin-top: 40px;
}

.coursesubject-box {
	background: #fff;
	padding: 25px 0;
	width: 90%;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px 5px #00000014;
	border-radius: 10px;
	transition: all 0.3s ease;
	/* smooth animation */
}

.coursesubject-box:hover {
	transform: translateY(-5px);
	/* lift up slightly */
	box-shadow: 0px 8px 20px 0px #00000033;
	/* add a stronger shadow */
}

.coursesubject-heading {
	display: flex;
	align-items: center;
	width: 50%;
}

.coursesubject-heading .fi {
	background: #2b96dd;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 10px;
	width: 40px;
	line-height: 0px;
	height: 40px;
	color: #fff;
	font-size: 24px;
	transition: background 0.3s ease;
	/* smooth icon color change */
}

.coursesubject-heading h3 {
	margin-left: 10px;
	margin-top: 10px;
	color: #042254;
	font-size: 24px;
	font-weight: 600;
	transition: color 0.3s ease;
	/* smooth text color change */
}

.min-break td {
	border: none;
}


.calander-section {
	padding: 60px 0 100px 0;
	background: #d4eaf8;
}

.calander-img {
	margin: auto;
	margin-top: 40px;
	border: 1px solid #042254;
	border-radius: 10px;
}

.calander-img img {
	width: 100%;
}

.innerpage-text-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.innerpage-text-heading h2 {
	color: #0b163f;
	font-size: 2.2rem;
	font-weight: 700;
}

p.tagline {
	color: #f19910;
	font-size: 1.1rem;
	font-weight: 600;
}

p.lead {
	margin: 0 0 18px;
	color: var(--muted)
}

.reading-card {
	margin-top: 10px;
	text-align: center;

}

/* --- TABLE STYLE --- */
.reading-card table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	margin-bottom: 0px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #c3cbe7;
	text-align: center;
	margin-top: 10px;
	box-shadow: 0px 2px 11px #48454587;
}

/* Make caption look like a heading above the table */
.reading-card table caption {
	caption-side: top;
	/* Ensures caption stays above */
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 8px 8px 0 0;
	color: #fff;
	border: none;
}

/* Table Head */
.reading-card table thead th {
	font-size: 16px;
	background: #f2f2f2;
	color: #212529;
	padding: 12px 14px;
	font-weight: 600;
	border-bottom: 1px solid #c3cbe7;
	text-align: center;
}

/* Table Body */
.reading-card table tbody td {
	padding: 12px 14px;
	border-bottom: 1px solid #c3cbe7;
	color: #404244;
	font-weight: 600;
	font-size: 15px;
}


.reading-card table tbody,
td,
tfoot,
th,
thead,
tr {
	border-color: #c3cbe7;
	border-style: solid;
	border-width: 1px;
}

/* Alternate Row Background */
.reading-card table tbody tr:nth-child(odd) {
	background: #fafafa;
}

/* Last Row Border Fix */
.reading-card table tbody tr:last-child td {
	border-bottom: none;
}

/* Highlighted Section Row */
.section-row {
	background: #f9f9f9;
	font-weight: 600;
}

/* Break Box */
.break {
	background: #f7f7f7;
	border: 1px solid #dcdcdc;
	color: #333;
	padding: 10px 15px;
	font-weight: 600;
	text-align: center;
	border-radius: 8px;
}

.reading-writing-section {
	padding: 60px 0;
	background-color: #eff0f7;
}

.sat-section {
	padding: 20px 0 40px 0;
	background-color: #eff0f7;
}

section.road-map-section {
	padding: 60px 0;
	background: #fff;
}

.road-map-pic {
	width: 80%;
	margin: auto;
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Main service box */
.sat-section-service .sat-section-service-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 10px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sat-section-service-box:hover .icon-size {
	transform: scale(1.2);
	color: #fff;
}

.sat-section-service-box .icon-size {
	font-size: 30px;
	color: #fff;
	margin-bottom: 15px;
	transition: transform 0.4s ease, color 0.4s ease;
	background: #0582CA;
	border-radius: 10px;
}

.icon-size {
	transition: transform 0.4s ease, color 0.4s ease;
	font-size: 30px;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: auto;
	line-height: 0px;
}

.sat-section-service-box p {
	font-size: 16px;
	color: #666;
	margin: 0px;
	line-height: 26px;
	padding: 0 20px;
}

.choose-subscraption-section {
	background-color: #ffffffd4;
	padding: 40px 0;
}

.choose-subscraption-section .innerpage-text-heading p {
	margin-top: 20px;
	color: #182753;
}

section.calltoaction-section.explore_sat-heading-section {
	background: #f2f2f2;
}

section.calltoaction-section {
	background: #ffffffd4;
	padding: 30px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.calltoaction-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: auto;
	padding: 0 50px;
}

.calltoaction-heading span {
	font-size: 30px;
	color: #555;
	font-weight: 500;
}

.calltoaction-heading .btn {
	background-color: #fff;
	padding: 10px 40px;
	background: #cb721b;
	color: #fff;
	font-weight: 600;
	border-radius: 10px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-left: 100px;
}

/* Timeline */
.timeline {
	position: relative;
	padding: 40px 0;
}

/* center line */
.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 100%;
	background: #0582CA;
	border-radius: 4px;
	box-shadow: 0 0 20px rgba(124, 58, 237, 0.12);
}

.timeline-item {
	position: relative;
	width: 50%;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	min-height: 80px;
}

.timeline-item .card {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.03);
	padding: 14px 18px;
	border-radius: 12px;
	/* box-shadow: 0 6px 18px rgba(2,6,23,0.6); */
	width: calc(100% - 70px);
	backdrop-filter: blur(6px);
	z-index: 99;
	position: relative;
	border: 1px solid black;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Left items */
.timeline-item.timeline-left {
	left: 0;
	justify-content: flex-end;
	text-align: right;
}

.timeline-item.timeline-left .card {
	margin-right: 40px;
}

.timeline-item.timeline-left .card::after {
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	background: white;
	border: 1px solid black;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	height: 30px;
	width: 30px;
	position: absolute;
	top: 50%;
	margin-top: -15px;
	left: 100%;
	transform-origin: 0 0;
	transform: rotate(45deg);
}

.timeline-item.timeline-right .card::after {
	content: "";
	clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
	background: white;
	border: 1px solid black;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	height: 30px;
	width: 30px;
	position: absolute;
	top: 50%;
	margin-top: -24px;
	left: 0;
	transform-origin: 0 0;
	transform: rotate(45deg);
}

/* Right items */
.timeline-item.timeline-right {
	left: 50%;
	justify-content: flex-start;
	text-align: left;
}

.timeline-item.timeline-right .card {
	margin-left: 40px;
}

/* the number bubble sitting on the center line */
.timeline-item::after {
	content: attr(data-number);
	position: absolute;
	left: 100%;
	width: 40px;
	height: 40px;
	display: flex;
	transform: translateX(-50%);
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #042254;
	color: #fff;
	font-weight: 600;
	border: 6px solid #0582ca;
	/* box-shadow:0 6px 20px rgba(12,10,40,0.45), 0 0 0 6px rgba(124,58,237,0.06);
      border:4px solid rgba(255,255,255,0.08); */
	font-size: 18px;
	z-index: 3;
}

.timeline-item.timeline-right::after {
	left: 0%;
}

.timeline-item.timeline-left::after {
	right: 4%;
}

/* small horizontal connector from center to card */


.timeline-item .title {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 21px;
	color: #0b163f;
	text-align: left;
}

.timeline-item .desc {
	font-size: 15px;
	margin: 0;
	text-align: left;
	color: #3e4660;
	font-weight: 500;
}

/* spacing between items */
.timeline-list {
	position: relative;
	padding: 15px 0px;
}

.timeline-list .timeline-item {
	margin: 0
}

/* nav buttons */
.nav-btn {
	width: 36px;
	height: 36px;
	color: #0381d8;
	min-width: 36px;
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}

/* month title: allow it to shrink and show ellipsis instead of wrapping */
.month-title {
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1 1 auto;
	/* take remaining space but allow shrinking */
	padding: 0 8px;
	/* small horizontal padding so text doesn't touch buttons */
}

/* weekdays row */
.weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	margin-top: 10px;
	font-weight: 600;
	font-size: 13px;
	color: var(--muted, #666);
}

.weekdays div {
	text-align: center;
	padding: 6px 2px;
}

/* dates grid */
.dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	padding: 20px;
	width: 100%;
	background: #fff;
	border: 1px solid #ccc;
}

/* each cell: keep content centered and prevent collapsing on small screens */
.cell {
	position: relative;
	display: flex;
	align-items: flex-start;
	/* align date circle to top so multi-line content sits below */
	justify-content: center;
	padding: 6px 4px;
	min-height: 48px;
	padding: 8px;
	margin: 2px;
	background: #eff1f3;
	cursor: pointer;
	/* ensures comfortable tappable area */
}

/* date circle */
.date-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1;
	user-select: none;
	flex: 0 0 auto;
	/* keep circle from stretching */
}

/* example semantic styles */
.range-start .date-inner,
.range-mid .date-inner,
.range-end .date-inner {
	background: var(--primary-light, #e7f0ff);
}

.cell.exam .date-inner {
	background: var(--danger-light, #ffe7e7);
	font-weight: 700;
}

/* Responsive: stack on small screens */


.muted-pill {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--glass);
	color: var(--muted);
	font-size: 12px;
	border: 1px solid rgba(255, 255, 255, 0.02)
}

/* Equal layout and white box design */

/* Signup Layout */
section.signup-section {
	padding: 60px 0;
	width: 100%;
	background: #eff0f7;
}

.auth-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 120px;

}

.auth-card {
	width: 85%;
	max-width: 1200px;
	/* height:650px; */
	display: flex;
	background: #102438;
	border-radius: 12px;

	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.12),
		0 12px 20px rgba(0, 0, 0, 0.18),
		0 30px 60px rgba(0, 0, 0, 0.25);
}

/* LEFT PANEL */
.auth-left {
	flex: 1.1;
	position: relative;
	background: #1087da;
	padding: 0px;
	overflow: hidden;
}

/* MAIN DIAGONAL CUT */
.auth-left::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #0162a7;
	top: 10%;
	bottom: 0;
	transform: rotate(180deg);
	left: 0;
	height: 80%;
	width: 200px;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/* INNER TRIANGLE NOTCH */
.auth-left::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 160px;
	background: #fff;
	transform: translateY(-50%);
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	opacity: 0.9;
}


.auth-left h1 {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 30px;
	line-height: 1.3;
	font-weight: 600;
	margin-left: 90px;
	color: #fff;
}

.auth-left .shape-light {
	position: absolute;
	inset: 0;
	background: #eff0f7;
	clip-path: polygon(0 50%, 101% 0, 101% 101%);
	left: 200px;
	height: 100%;
	top: 0;
	bottom: 0;
	border: none !important;
}

.auth-left .overlay {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 3;
	color: #fff;
}


/* RIGHT PANEL */
.auth-right {
	flex: 1;
	background: #eff0f7;
	padding: 30px 30px 30px 10px;
	color: #fff;
	position: relative;
}

.auth-right-inner {
	background: #fff;
	padding: 20px 20px;
	border-radius: 15px;
}


/* Header */
.logo {
	color: #3aa6a0;
	font-size: 28px;
	font-weight: 700;
}

.form-header {
	margin-bottom: 30px;
}

.form-header h2 {
	text-align: center;
	margin-top: 0px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	color: #10346d;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}

.signin-text {
	font-size: 14px;
}

.signin-text a {
	color: #3aa6a0;
	text-decoration: none;
}

/* Inputs */
.form-label {
	font-size: 15px;
	color: #555;
}

.form-control,
.form-select {

	border-radius: 6px;
	height: 40px;
	font-size: 13px;
	color: #000000;
	border: 1px solid #042254;
}


.form-control:focus,
.form-select:focus {
	outline: none;
	box-shadow: 0 0 0 2px hsl(205deg 86% 46% / 14%);
}

.iti {
	position: relative;
	display: block;
}

.iti--separate-dial-code .iti__selected-flag {
	background-color: rgb(230 232 235);
	color: #555;
	border-radius: 10px 0 0 10px;
	border: 1px solid #adadad;
	margin: 0;
	height: 45px;
	margin-top: -1px;
	margin-left: -3px;
}

.hide-text {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

.iti__flag-box,
.iti__country-name {
	margin-right: 6px;
	color: #555;
}


/* Buttons */
.btn-teal {
	background: #10346d;
	color: #fff;
	border-radius: 6px;
	padding: 10px 30px;
	font-weight: 500;
}

.btn-teal:hover {
	background: #1087da;
}

.btn-outline-teal {
	border: 1px solid #3aa6a0;
	color: #3aa6a0;
}

.btn-outline-teal:hover {
	background: #3aa6a0;
	color: #fff;
}

.registernow-btn span {
	margin-top: 10px;
	display: block;
	font-size: 13px;
	color: #555;
	text-align: center;
	margin-bottom: 0;
}

.or-text {
	margin: 0px 0 25px 0;
	color: #555;
	text-align: center;
	position: relative;
	z-index: 1;
}

.or-text::after {
	content: "";
	position: relative;
	width: 100%;
	border-bottom: 1px solid #ddd;
	display: block;
	left: 0;
	right: 0;
	top: -10px;
	z-index: -2;
}

.or-text::before {
	content: "";
	position: relative;
	background: #ffffff66;
	width: 35px;
	height: 25px;
	display: block;
	left: 0;
	right: 0;
	margin: auto;
	top: 22px;
	z-index: -1;

}

.signup-login-btn {
	color: #1087da;
}

.signup-login-btn:hover {
	text-decoration: underline;
	;
}


.termcondition-text span {
	margin-top: 10px;
	display: block;
	font-size: 13px;
	color: #555;
}

.termcondition-text span a {
	text-decoration: underline;
}

.input-group .btn.otp-btn {
	border: 1px solid #adadad;
	background: #e6e8eb;
	color: #555;
	box-shadow: 0px 0px 5px 1px #dddddd8a;
	font-size: 14px;
	z-index: 1;
	position: relative;
}

.otp-btn:hover {
	background: #e0e0e0;
	color: #333;
}

.registernow-btn .btn {
	font-family: "Plus Jakarta Sans", sans-serif;
	display: block;
	width: 100%;
}

.google-act-btn {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.google-act-btn a {
	width: 250px;
	border: 1px solid #1087da;
	margin-top: 0px;
	padding: 10px 10px;
	border-radius: 5px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: #1087da;
	font-size: 14px;
}

.google-act-btn a i {
	margin-right: 10px;
}

.google-act-btn a:hover {
	background-color: #1087da;
	color: #fff;
}


.grade-program-subject-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	color: #555;
	margin-bottom: 20px;
	display: flex;
	border: 2px solid #dee2e6;
	cursor: pointer;
}

.grade-program-subject-box:hover {
	border: 2px solid #5555553d;
}

.grade-program-subject-icon {
	margin-left: 20px;
}

.grade-program-text {
	margin-left: 10px;
}

.grade-program-text h3 {
	margin-left: 10px;
	color: #042254;
	font-size: 18px;
	font-weight: 600;
}

.grade-program-text ul {
	display: flex;
	margin: 0px;
	padding: 0px;
}

.grade-program-text ul li {
	font-size: 14px;
	background: #eff0f7;
	padding: 0 10px;
	border-radius: 10px;
	margin-right: 10px;
}

.sat-section-service .sat-section-service-box h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #182753;
}

.pricing-table {
	display: flex;
}

.col-left {
	width: 75%;
	padding: 20px;
}

.col-right {
	width: 25%;
	padding: 0px;
	background: #f2f2f2;
	border-radius: 10px;
	margin-top: 20px;
}

.col-right .buy-btn {
	background-color: #0582ca;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}

.col-right .buy-btn:hover {
	background: transparent;
	color: #fff;
	background-color: #0465aa;
}

.price-left-box_outer {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.price-left-box {
	margin-top: 51px;
}

.price-list-top-heading {
	color: #555;
	font-size: 18px;
}

.price-left-box .buy-btn {
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}

.price-left-box .buy-btn:hover {
	background: transparent;
	color: #fff;
	background-color: #0465aa;
}

.price-tabbing {
	margin: 0px;
	padding: 0px;
	margin-top: 18px;
}

.price-tabbing li {
	margin: 0px;
	padding: 11px 0;
	box-shadow: none;
	border-radius: 0;
	border: none;
	background: none;
}

.price-tabbing li .accordion-button {
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	border: none;
}

.title {
	font-size: 22px;
	color: #555;
	font-weight: 600;
	text-align: center;
}

.price {
	text-align: center;
	font-size: 16px;
	color: #666;
	margin-top: 5px;
}

.buy-btn {
	border-radius: 30px;
	padding: 10px 25px;
	margin-top: 10px;
}

.small-text {
	text-align: center;
	font-size: 13px;
	margin-top: 5px;
	color: #6b6b6b;
}

.accordion-body li {
	list-style: none;
	padding: 10px 0;
	border-bottom: 1px solid #e6e6e6;
	display: flex;
	justify-content: space-between;
	font-size: 15px;
}

.price-tabbing li .check {
	color: #3cbc67;
	font-size: 18px;
	margin-right: 55px;
}

.price-tabbing li .cross {
	font-size: 12px;
	margin-right: 55px;
	color: #6b6b6b;
}

.col-right .check {
	color: #3cbc67;
	font-size: 18px;
	margin-right: 30px;
}

.right-small-list li {
	list-style: none;
	border-bottom: 1px solid #e0e0e0;
	padding: 12px 0;
	font-size: 16px;
	display: flex;
	justify-content: center;
}

.top-banner {
	background: #0582ca;
	color: white;
	text-align: center;
	padding: 6px;
	border-radius: 10px 10px 0 0;
	font-size: 14px;
}

/* Accordion plus/minus */
.pricing-table .col-left .accordion-button::before {
	color: #555;
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.2s ease;
	transform: none;
}

.pricing-table .col-left .accordion-button:not(.collapsed)::before {
	content: '-';
}

.pricing-table .col-left .accordion-button p {
	margin: 0px;
	padding: 0px;
	margin-left: 10px;
	line-height: 0;
	font-size: 15px;
}

/* Align SAT QBank title + price to right */
.title-box {
	text-align: right;
}

/* Modal */
.pricing-modal {
	border-radius: 16px;
	padding: 10px;
	font-family: 'Inter', sans-serif;
}

/* Plan Cards */
.plan-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	border-radius: 14px;
	padding: 15px 18px;
	margin-bottom: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.plan-card h6 {
	font-size: 16px;
	font-weight: 600;
	color: #555;
	margin: 0;
	font-weight: 600;
}

.plan-card p {
	margin: 0;
	font-size: 0.85rem;
	color: #6c757d;
}

/* Recommended Highlight */
.plan-card.recommended {
	border: 2px solid #28a745;
}

/* Price + Button */
.price-action {
	text-align: right;
}

.price {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
}

/* Buy Button */
.buy-btn-purple {
	background: #0582CA;
	color: #fff;
	border-radius: 5px;
	padding: 5px 16px;
	font-size: 0.85rem;
}

.buy-btn-purple:hover {
	background-color: #0465aa;
	color: #fff;
}

/* Buy Now Trigger Button */
.buy-btn {
	border-radius: 25px;
	padding: 8px 20px;
}

.pricing-table .modal .modal-title {
	color: #182753;
	font-size: 24px;
}

section.satmath-syllabus-section {
	background: #ffffffd4;
	padding: 60px 0;
}

section.sat-section-service-mock-test-section {
	background-color: #D4EAF8;
}

section.grade-program-section {
	background-color: #eff0f7;
	padding: 40px 0;
}

.sat-section-service-mock-test .col-lg-4 {
	margin-bottom: 20px;
}

.sat-section-service-mock-test .sat-section-service-box h2 {
	font-size: 22px;
	font-weight: 600;
}

.satmath-syllabus-table {
	background: #ffffff;
	color: #555;
	margin-top: 0px;
	padding: 25px;
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.satmath-syllabus-table table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	margin-bottom: 0px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	text-align: center;
	margin-top: 10px;
}

.satmath-syllabus-table table tr th {
	background: #f2f2f2;
	color: #333;
	padding: 10px 10px;
	font-weight: 600;
	border-bottom: 1px solid #ddd;
	text-align: center;
}

.satmath-syllabus-table table tr td {
	font-weight: 400px;
	padding: 10px;
	font-size: 14px;
	border-bottom: none;
}

.satmath-syllabus-table table th span {
	font-size: 13px;
}

.features-statistics {
	padding: 60px 0 80px 0;
	background: #d4eaf8;
}

.features-statistics h2 {
	font-size: 2.5rem;
}

/* Main service box */
.statistics-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 15px 20px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

/* Icon */
.statistics-box .icon-size {
	font-size: 32px;
	border: 8px solid #fff;
	color: #fff;
	transition: transform 0.4s ease, color 0.4s ease;
	background: #0884d9;
	border-radius: 100%;
	width: 90px;
	height: 90px;
	margin-top: -65px;
}

/* Heading */


/* Paragraph */
.statistics-box p {
	font-size: 15px;
	color: #3e4660;
	margin: 0px;
	line-height: 22px;
	font-weight: 500;
	font-family: var(--jakarta-plus);


}

.statics-title {
	font-size: 2.2rem !important;
	font-weight: 700;
	margin: 10px 0px;
	color: #0884d9;
}

/* Hover animation */
.statistics-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

/* Icon hover effect */


.gradeperfect-section {
	background: #f0f0f0;
	padding: 60px 0px;
}

.gradeperfect-services {

	padding-top: 45px;
}

/* List styling */
.gradeperfect-services .grade-card {
	width: 100%;
	height: 100%;
	padding: 2em 2em;
	border-radius: 15px;
	box-shadow: 0px 5px 10px -6px rgba(0, 0, 0, 0.6);
	cursor: pointer;
	transition: 0.5s ease;
	position: relative;
	z-index: 2;
	overflow: hidden;
	background: #fff;
	text-align: center;
}

.gradeperfect-services .grade-card:hover {
	transform: translateY(-8px);
	transition: 0.5s ease;
}

.gradeperfect-services .grade-card .icon {
	font-size: 32px;
	color: #fff;
	background: #0a163e;
	border-radius: 8px;
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	padding: 0px;
	margin: 0 auto 20px;
	;


}

.grade-card h3 {
	font-size: 1.2rem;
	text-align: center;
	color: #0a163e;
	font-weight: 700;
}

.grade-card p {
	font-size: 15px;
	color: #3e4660;
	margin: 0px;
	line-height: 22px;
	font-family: var(--jakarta-plus);
}

/*===========Prep packages =============*/
.sat-packages {
	background: #fff;
}

.package-card {

	border-radius: 10px;
	box-shadow: 0px 9px 14px -6px rgba(0, 0, 0, 0.6);
	overflow: hidden;
	transition: 0.3s ease;
	height: auto;
	position: relative;
}

.package-card:hover {
	transform: translateY(-8px);
	transition: 0.5s ease;
}

.package-header {
	padding: 20px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid #fff;
}

.package-header h5 {
	margin: 0;
	font-weight: 500;
	font-size: 24px;
}

.package-body {
	padding: 20px;
	min-height: 220px;
}

.package-body p {
	color: #212529;
	font-size: 16px;
	line-height: 22px;
}

.package-body ul {
	padding-left: 0px;
	margin-top: 0;
}

.package-body ul li {
	font-size: 14px;
	padding: 4px 0px;
	color: #ffffff;
	font-weight: 500;

}


.package-body ul.packeage-list li {
	font-size: 14px;

	color: #ffffff;
	font-weight: 400;
	Display: flex;
	align-items: Center;
	justify-content: left;
}

.package-body ul li .icon {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	font-size: 24px;
	height: 40px;
	width: 40px;
	display: block;
	margin: 0 auto;
	padding: 0;
	line-height: 40px;
	margin-bottom: 5px;
}

.package-body ul.packeage-list li>i {
	font-size: 18px;
	margin-right: 8px;
}

button.btn-main {
	border-radius: 4px;
	border: none;
	color: #fff;
	text-align: center;
	transition: all 0.5s;
	cursor: pointer;
	box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}


button.btn-main:after {
	content: '\e0ec';
	position: absolute;
	opacity: 0;
	font-family: uicons-thin-rounded !important;
	right: -20px;
	transition: 0.5s;
}

button.btn-main:hover {
	padding-right: 30px;
	padding-left: 10px;
	transition: 0.5s;
}

button:hover:after {
	opacity: 1;
	right: 4%;
}

.package-footer {
	display: flex;
	align-items: left;
	justify-content: left;
}

.package-footer .btn-main {
	color: #253159;
	border-radius: 8px;
	padding: 8px 22px;
	font-size: 18px;
	width: 100%;
	background: #fff;
}

.btn-main:hover {

	background: #25325a;
	color: #fff;
	border: 1px solid #ffffff57;
	transition: 0.5s;
}


.orange .package-header {
	background: linear-gradient(135deg, #ff9f43, #ff7a18);
}

.blue .package-header {
	background: linear-gradient(135deg, #4facfe, #0066ff);
}

.purple .package-header {
	background: linear-gradient(135deg, #9b5de5, #6a4cff);
}

.green .package-header {
	background: linear-gradient(135deg, #00b09b, #96c93d);
}

.darkblue .package-header {
	background: linear-gradient(135deg, #396afc, #2948ff);
}

.gray .package-header {
	background: linear-gradient(135deg, #667db6, #0082c8);
}

.icon {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 30px;
	line-height: 22px;
}

.pac_status {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	line-height: normal;
	padding: 4px 10px;
	border-radius: 5px;
	font-size: .875em;
}

/* Footer */
.footer-logo img {
	width: 110px;
}

ul.social-icons {
	display: flex;
	margin: 0px;
	padding: 0;
	margin-top: 15px;
}

ul.social-icons li a {
	display: block;
	padding: 3px;
	margin-right: 10px;
	text-align: center;
	color: #fff;
	border-radius: 5px;
	font-size: 24px;
	width: 35px;
	height: 35px;
	background-color: #666;
}

ul.social-icons li a:hover {
	background-color: #182753;
}

.footer-list ul li {
	padding: 5px 0;
	display: block;
	font-size: 14px;
}

.footer-list ul li a {
	color: #555;
}

.footer-list ul li a:hover {
	text-decoration: underline !important;
	color: #0381d8;
}

.footer-list h6 {
	color: #182753;
	font-weight: 500;
}

.footer-left-list h6 {
	color: #182753;
	font-weight: 500;
}

.footer-left-list p {
	text-align: justify;
	padding-right: 40px;
	font-size: 14px;
	color: #555;
}

.copy-right {
	font-size: 12px;
	color: #555;
}

/****===============Inner pages Css Create by Balvant==============================*****/
.question-bank-header {

	position: relative;
}

.question-bank-header .question-bank-section {
	padding: 50px 0px 50px;
}

.question-bank-header .question-bank-section .header-text p {
	font-size: 18px;
	font-weight: 400;
	text-align: Center;
}

.filter-title {
	font-weight: 600;
	color: var(--sat-blue);
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.filter-box {
	background: #ffffff;
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}

.filter-label {
	font-size: 15px;
	font-weight: 500;
	color: #042254;
	margin-bottom: 5px;
}


.filter-box .form-check {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.filter-box .form-check-input {
	width: 2em;
	border: 1px solid #042254;
	height: 2em;
}

.form-check .form-check-input {
	border: 1px solid #042254;
}

.special-note {
	padding: 16px 0;
}

.note-title {
	font-weight: 700;
	margin-bottom: 16px;
}

.note-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);

}

/* headings */
.note-col h4 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
	color: var(--sat-blue);
}

/* list reset */
.note-listing ul {
	margin: 0;
	padding: 0;
}

/* 🔥 MAIN FIX: li spacing */
.note-listing li {
	margin: 0;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 10px;
	line-height: 1.25;
	text-align: center;
	color: var(--sat-blue);
}

/* icon sizing */
.note-listing i {
	font-size: 15px;
	min-width: 18px;
	text-align: center;
	Display: block;
	margin: 10px 0px;
}

/* responsive */


.filter-select:focus {
	border-color: #4a90e2;
	box-shadow: none;
}

.apply-btn {
	height: 40px;
	border-radius: 10px;
	font-weight: 600;
	background: linear-gradient(135deg, #4a90e2, #2563eb);
	border: none;
}

.apply-btn:hover {
	background: linear-gradient(135deg, #2563eb, #1e40af);
}

.question-section {
	padding: 20px 0 40px 0;
	background: #e6edf0;
	background: #D4EAF8;
}

.select-all-container {
	display: flex;
	align-items: center;

	padding: 10px 15px;
	background-color: #f8f9fa;
	border-radius: 6px;
	justify-content: space-between;
}

.select-all-checkbox {
	margin-right: 0px;
	padding-left: 0px;
}

.selected-count {
	margin-left: auto;
	font-weight: 600;
	color: var(--sat-blue);
}

.bulk-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.bulk-action-btn {
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 500;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
}

.bulk-action-btn:hover {
	background-color: #e9ecef;
}



.results-info {
	background-color: var(--sat-light-blue);
	padding: 12px 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-weight: 500;
	border-left: 4px solid var(--sat-blue);
}

.questions-table-container {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.table thead th {
	background-color: var(--sat-blue);
	color: white;
	border: none;
	font-weight: 600;
	padding: 15px;
	text-align: center;
}

.table tbody tr {
	cursor: pointer;
	transition: all 0.2s;
}

.table tbody tr:hover {
	background-color: #f0f7ff;
}

.table tbody td {
	padding: 15px;
	vertical-align: middle;
	border-bottom: 1px solid #eee;
	text-align: center;
}


.badge {
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	/*display: flex;*/
	align-items: center;
	width: fit-content;
}

.badge-easy {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.badge-medium {
	background-color: #fff3e0;
	color: #ef6c00;
}

.badge-hard {
	background-color: #ffebee;
	color: #c62828;
}

.status-icon {
	font-size: 1.2rem;
	display: inline-block;
	text-align: center;
	color: #062672;
}

#reviw-popup-box .modal-body>.card>.card-body .status-icon {
	font-size: 0.8rem;
	margin-right: 5px;
	padding: .25rem 0px;
}


#reviw-popup-box .modal-body .text-muted-foreground {
	font-size: 14px;
	color: #3e3e3e;
}

#reviw-popup-box .modal-body .items-start {
	font-size: 14px;
	color: #000;
}

.status-correct {
	color: var(--sat-green);
}

.status-incorrect {
	color: var(--sat-red);
}

.status-unattempted {
	color: #aaa;
}

.action-btn {
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid #ddd;
	background-color: white;
	transition: all 0.2s;
	margin-right: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	position:relative;
padding-right:40px;
overflow:hidden;
}
.action-btn > i{position:absolute;
right:0px;
background: #cdcedd;
height: 100%;
top: 0px;
width: 30px;
display: flex;
align-items: center;
justify-content:center;
color: #1a237e;
}
.action-btn:hover:not(:disabled) {
	background-color: #f5f5f5;
}

.action-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-reattempt {
	color: var(--sat-blue);
	border-color: var(--sat-blue);
}

.btn-reattempt:hover:not(:disabled) {
	background-color: var(--sat-blue);
	color: white;
}

.btn-review {
	color: var(--dark-gray);
	border-color: var(--dark-gray);
}

.btn-review:hover:not(:disabled) {
	background-color: var(--dark-gray);
	color: white;
}

.btn-attempt {
	color: var(--sat-green);
	border-color: var(--sat-green);
	font-weight: 600;
}

.btn-attempt:hover:not(:disabled) {
	background-color: var(--sat-green);
	color: white;
}

.btn-locked .btn.disabled i {
	color: #b5b1b1;
	font-size: 20px;
}

.btn-locked .btn i {
	color: #000;
	font-size: 20px;
}

.marked-icon {
	color: var(--sat-orange);
}

.attempt-count {
	display: inline-block;
	background-image: url("../images/refresh.png");
	color: #062672;
	Background-size: cover;
	background-repeat: no-repeat;
	min-width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	font-size: 0.8rem;
	font-weight: 500;
}

.pagination .page-item .page-link {
	color: #1a1a1a;
	border: 1px solid #1a237e;
}

.pagination .page-item .page-link:hover {
	background: #1a237e;
	color: #fff
}

.question-bank-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 10px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.question-bank-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

.topic-card {
	height: 220px;
	padding: 24px 20px 24px 20px;
	border-radius: 22px;
	background: var(--bg);
	border-left: 6px solid var(--accent);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
	transition: 0.35s ease;
}

.topic-card h6 {
	font-weight: 600;
	color: var(--title);
	font-size: 22px;
	line-height: 30px;
}

.topic-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 55px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* 🔥 REAL COLOR SEPARATION (NOT PASTEL MUSH) */

.topic-grid>div>.topic-card {
	--bg: #fff;
	--accent: #1e3a8a;
	--title: #1e3a8a;
}

.source-btn {
	align-self: flex-start;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 12px;
	border: none;
	color: #fff;
	background: linear-gradient(135deg,
			var(--accent),
			color-mix(in srgb, var(--accent) 70%, #000));
	box-shadow: 0 10px 20px color-mix(in srgb, var(--accent) 35%, transparent);
	transition: all 0.3s ease;
}

/* Hover magic */
.source-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 55%, transparent);
	background: linear-gradient(135deg,
			color-mix(in srgb, var(--accent) 85%, #000),
			var(--accent));
}

/* Focus */
.source-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 30%, transparent);
}

.qb-meta-section {
	padding: 40px 0 30px;
	background: transparent;
}

/* Title Bar */
.qb-title-bar {
	display: flex;
	align-items: center;
	gap: 14px;
}

.qb-count {
	font-size: 28px;
	font-weight: 700;
	color: #2563eb;
	/* modern blue */
}

.qb-title {
	font-size: 25px;
	font-weight: 600;
	color: #062774;
	margin: 0;
}

/* Domain Section */
.qb-domain {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.qb-domain-badge {
	padding: 6px 14px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 999px;
	background: linear-gradient(135deg, #e0edff, #f4f8ff);
	color: #1d4ed8;
}

.qb-domain-name {
	font-size: 25px;
	font-weight: 600;
	color: #020617;
}

.explore-topics-section {
	padding: 60px 0;
}

/* Main box */
.explore-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px 36px;
	border-radius: 24px;
	background: linear-gradient(135deg,
			#eef5ff,
			#f8fbff);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Text content */
.explore-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
}

.explore-content p {
	margin: 0;
	font-size: 15px;
	color: #475569;
	max-width: 520px;
}

/* Button */
.explore-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	background: linear-gradient(135deg,
			#2563eb,
			#1e40af);
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
	transition: all 0.3s ease;
}

.explore-btn span {
	transition: transform 0.3s ease;
}

.explore-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
}

.explore-btn:hover span {
	transform: translateX(4px);
}



.view-box {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-align: center;
	margin: 15px 0px;
}

.view-box .view-label {
	margin-right: 8px;
}

.view-box a {
	color: #1a73e8;
	text-decoration: none;
}

.view-box a:hover {
	text-decoration: underline;
}

.view-box .active {
	color: #000;
	font-weight: 600;
	pointer-events: none;
}

.separator {
	color: #000;
	margin: 0 4px;
}

/*=======SAT Dates & Deadlines  ===========*/


#weekdays div {
	font-weight: bold;
	color: #042254;
	background: #d4eaf8;
}

.calender-row {
	display: flex;
	margin-top: 30px;
}

/* Left panel (purple) */
.calender-row .left {
	width: 40%;
	min-width: 300px;
	background: #0381d8;
	color: white;
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 15px 0 0 15px;
}

.calender-row .brand {
	text-align: left;
	margin-bottom: 38px;
	display: block;
}

.calender-row .brand h1 {
	margin: 12px 0 0;
	font-size: 30px;
	letter-spacing: 0.5px;
	color: #fff;
	text-align: left;
	font-weight: 600;
}


/* Global fix */

/* Container */
.calender-row .right {
	width: 60%;
	color: #333;
	display: flex;
	flex-direction: column;

}

/* Header / navigation */
.calender-row .right .header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #0381d8;
	padding: 20px;
	border-radius: 0px 10px 0px 0px;
}

/* month nav: keep nav buttons visible and month centered */
.calender-row .month-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}


.calender-row .today {
	background: #007bff;
	color: white;
}

.calender-row .registration {
	background: #28a745;
	color: white;
}

.calender-row .late {
	background: #ffc107;
	color: black;
}

.calender-row .test {
	background: #dc3545;
	color: white;
}

#eventBox {
	margin-top: 20px;


}

.calender-row .event-item {
	display: flex;

	margin-top: 15px;
	align-items: center;


}

.calender-row .task-time {
	background: #fff;
	font-size: 14px;
	color: #042254;
	padding: 6px 10px;
	border-radius: 5px 0px 0px 5px;
	font-weight: 500;

}

.calender-row .task-text {
	background: #d4eaf8;
	font-size: 14px;
	color: #042254;
	padding: 6px 10px;
	border-radius: 0px 5px 5px 0px;
	font-weight: 500;
}

.calender-row .task {
	background: #f7d4d4;
	color: #c70707;
	padding: 10px;
	border-radius: 5px;
	font-size: 18px;
}

.quotes-box {
	text-align: left;
	margin-top: 20px;
}

.quotes-box h5 {
	font-size: 26px;
	font-weight: 600;
}

.quotes-box p {
	font-size: 24px;
	padding: 0px 0px;
	text-align: left;
}

/*==========Blog Listing Page=====================*/
.blog-listing-section .btn-main {
	color: #f19910;
	border: 1px solid #f19910;
	background: transparent;
}

.blog-listing-section .filter-label {
	color: #212529;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	font-family: var(--jakarta-plus);
}

.btn-blog {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #25325a;
}

.btn-blog:hover {
	background: #25325a;
	color: #fff;
	border: 1px solid #ffffff57;
	transition: 0.5s;
}

.btn-blog>.fi {
	display: flex;
	line-height: 1;
	margin-top: 2px;
}

.inner_page .blog_date {
	display: none;
}

/*==========Blog Detail Page=====================*/
.blog-listing {
	padding-top: 30px;
	padding-bottom: 30px;
}

.gray-bg {
	background-color: #f5f5f5;
}

/* Blog 
---------------------*/
.blog-grid {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
}

.blog-grid .blog-img {
	position: relative;
}

.blog-grid .blog-img .date {
	position: absolute;
	background: #fc5356;
	color: #ffffff;
	padding: 8px 15px;
	left: 10px;
	top: 10px;
	border-radius: 4px;
}

.blog-grid .blog-img .date span {
	font-size: 22px;
	display: block;
	line-height: 22px;
	font-weight: 700;
}

.blog-grid .blog-img .date label {
	font-size: 14px;
	margin: 0;
}

.blog-grid .blog-info {
	padding: 20px;
}

.blog-grid .blog-info h5 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 10px;
}

.blog-grid .blog-info h5 a {
	color: #20247b;
}

.blog-grid .blog-info p {
	margin: 0;
}

.blog-grid .blog-info .btn-bar {
	margin-top: 20px;
}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.blog-aside .widget-body {
	padding: 15px;
}

.blog-aside .widget-title {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.blog-aside .widget-title h3 {
	font-size: 20px;
	font-weight: 700;
	color: #efa211;
	margin: 0;
}

.blog-aside .widget-author .media {
	margin-bottom: 15px;
}

.blog-aside .widget-author p {
	font-size: 16px;
	margin: 0;
}

.blog-aside .widget-author .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
}

.blog-aside .widget-author h6 {
	font-weight: 600;
	color: #20247b;
	font-size: 22px;
	margin: 0;
	padding-left: 20px;
}

.blog-aside .post-aside {
	margin-bottom: 15px;
}

.blog-aside .post-aside .post-aside-title h5 {
	margin: 0;
}

.blog-aside .post-aside .post-aside-title a {
	font-size: 18px;
	color: #20247b;
	font-weight: 600;
}

.blog-aside .post-aside .post-aside-meta {
	padding-bottom: 10px;
}

.blog-aside .post-aside .post-aside-meta a {
	color: #6F8BA4;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 10px;
}

.blog-aside .latest-post-aside+.latest-post-aside {
	border-top: 1px solid #eee;
	padding-top: 15px;
	margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
	width: 90px;
}

.blog-aside .latest-post-aside .lpa-right img {
	border-radius: 3px;
}

.blog-aside .latest-post-aside .lpa-left {
	padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
	margin: 0;
	font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title h4 {
	margin: 0;
	font-size: 18px;
}

.blog-aside .latest-post-aside .lpa-title a {
	color: #20247b;
	font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
	color: #6F8BA4;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 10px;
}

.tag-cloud a {
	padding: 4px 15px;
	font-size: 13px;
	color: #ffffff;
	background: #20247b;
	border-radius: 3px;
	margin-right: 4px;
	margin-bottom: 4px;
}

.tag-cloud a:hover {
	background: #fc5356;
}

.blog-single {
	padding-top: 30px;
	padding-bottom: 30px;
}

.article {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	padding: 15px;
	margin: 15px 0 30px;
}

.article .article-title {
	padding: 15px 0 20px;
}

.article p {
	font-size: 15px;
	color: #3e4660;
	margin: 0px;
	line-height: 22px;
	font-weight: 500;
	font-family: var(--jakarta-plus);
}

.article .article-title h6 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
}

.article .article-title h6 a {
	text-transform: uppercase;
	color: #fc5356;
	border-bottom: 1px solid #fc5356;
}

.article .article-title h2 {
	color: #20247b;
	font-weight: 600;
}

.article .article-title .media {
	padding-top: 15px;
	border-bottom: 1px dashed #ddd;
	padding-bottom: 20px;
}

.article .article-title .media .media-body {
	padding-left: 8px;
}

.article .article-title .media .media-body label {
	font-weight: 600;
	color: #fc5356;
	margin: 0;
}

.article .article-title .media .media-body span {
	display: block;
	font-size: 15px;
	color: #3e4660;
	font-weight: 600;
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
	color: #20247b;
	font-weight: 600;
	margin-bottom: 15px;
}

.article .article-content blockquote {
	max-width: 600px;
	padding: 15px 0 30px 0;
	margin: 0;
}

.article .article-content blockquote p {
	font-size: 20px;
	font-weight: 500;
	color: #efa211;
	margin: 0;
}

.article .article-content blockquote .blockquote-footer {
	color: #20247b;
	font-size: 16px;
}

.article .article-content blockquote .blockquote-footer cite {
	font-weight: 600;
}

.article .tag-cloud {
	padding-top: 10px;
}

.article-comment {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	padding: 20px;
}

.article-comment h4 {
	color: #20247b;
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 22px;
}

img {
	max-width: 100%;
}

img {
	vertical-align: middle;
	border-style: none;
}

/* Contact Us
---------------------*/
.contact-name {
	margin-bottom: 30px;
}

.contact-name h5 {
	font-size: 22px;
	color: #20247b;
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-name p {
	font-size: 18px;
	margin: 0;
}

.social-share a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	text-align: center;
	margin-right: 10px;
}

.social-share .dribbble {
	box-shadow: 0 8px 30px -4px rgba(234, 76, 137, 0.5);
	background-color: #ea4c89;
}

.social-share .behance {
	box-shadow: 0 8px 30px -4px rgba(0, 103, 255, 0.5);
	background-color: #0067ff;
}

.social-share .linkedin {
	box-shadow: 0 8px 30px -4px rgba(1, 119, 172, 0.5);
	background-color: #0177ac;
}


.contact-form .send {
	margin-top: 20px;
}

.section-title h2 {
	font-weight: 700;
	color: #20247b;
	font-size: 45px;
	margin: 0 0 15px;
	border-left: 5px solid #fc5356;
	padding-left: 15px;
}

.section-title {
	padding-bottom: 45px;
}

.contact-form .send {
	margin-top: 20px;
}

.px-btn {
	padding: 0 50px 0 20px;
	line-height: 60px;
	position: relative;
	display: inline-block;
	color: #20247b;
	background: none;
	border: none;
}

.px-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border-radius: 30px;
	background: transparent;
	border: 1px solid rgba(252, 83, 86, 0.6);
	border-right: 1px solid transparent;
	-moz-transition: ease all 0.35s;
	-o-transition: ease all 0.35s;
	-webkit-transition: ease all 0.35s;
	transition: ease all 0.35s;
	width: 60px;
	height: 60px;
}

.px-btn .arrow {
	width: 13px;
	height: 2px;
	background: currentColor;
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 25px;
}

.px-btn .arrow:after {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	position: absolute;
	top: -3px;
	right: 0;
	display: inline-block;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*============package detail page css=====================*/
.package-detail {}

.package-left-box {}

.package-left-box .package-img-box {
	border-radius: 10px;
	width: 100%;
	height: 350px;
	overflow: hidden;
	background: url("../images/package-bg.png") no-repeat #fff;
	background-size: cover;
	padding: 30px;
	background-position: center;
	align-items: center;
	display:flex;
	align-items:center;
	position:relative;
	justify-content:center;
	    border: 4px solid #0481d8;
}
.package-img-box > .sat-top-text{position:absolute; top:20px; left:20px;}
.package-left-box .package-img-box h3 {
	margin-top: 0px;
	font-size: 32px;
	color:#0a163e;
	font-weight: 700;
	display: flex;
	align-items: center;
	font-family: Poppins;
	text-align:center;
}

.right_detail_box{}
.right_detail_box .p_title{	
	display: flex;	
	align-items: center; 
	gap:5; 
	gap: 5px;	
	font-size: 35px;
	color:#0a163e;
	font-weight: 700;
}
.right_detail_box p{color: #000;width: 85%; font-size:16px;}
  .gst-price {
            font-weight: 600;
        }
.price-area{color: #000;}
.price-area .new-price {
            font-size:1.5rem;
			    color: #000;
				display:flex;
				align-items: center;
             font-weight: 600;
        }


.right_detail_box ul {
	text-align: left;
	padding: 15px 0px;
	margin: 0px;
	display: flex;

}

.right_detail_box li {
	display: inline-block;
	padding-right: 20px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
}

.right_detail_box .icon {
	font-size: 22px;
	display: block;
	text-align: center;
	margin-bottom: 0px;
}

.right_detail_box .p_footer{display:flex; gap:20px; align-items:center; border-top:1px solid #ccc; padding:20px 0px}

.features-box {
	padding: 60px 0px;
	font-size: 16px;
	color: #3e4660;
	background: #e8f6ff;
}

.features-box h4 {
	color: #0b153d;
	font-size: 22px;
	font-weight: 500;
}

.features-box .terms-list li {
	display: inline-block;
	align-items: center;
	font-size: 16px;
	color: #000;
	font-weight: 400;
	margin-right: 15px;
}
.features-box  li {
	display: inline-block;
	align-items: center;
	font-size: 16px;
	color: #000;
	line-height:22px;
	font-weight: 400;
	margin-right: 15px;
}
.features-box .sub-list {
	list-style-type: lower-roman;
	padding-left: 25px;
	margin-top: 8px;
}

.related_product{padding: 80px 0px;}
/*============Cart Page Css=================*/

.cart_detail{}
.cart_detail h1{	
font-size:45px;
    color: #0a163e;
    font-weight: 700;
	}
.cart_detail .cart-item img {
     max-width: 100px;
     height: auto;
 }

 .cart_detail .quantity-input {
     width: 50px;
 }

 .cart_detail .cart-summary {
     background-color: #f8f9fa;
     border-radius: 10px;
 }

.cart_detail .btn-primary{color:#fff;}

/*=============Checkout Page Css======================*/
.checkout_page{padding:80px 0px;}
.checkout_page h1{	
font-size:45px;
    color: #0a163e;
    font-weight: 700;
	}

.checkout_page .btn-primary{color:#fff;}


.edit-btn {
    width: 35px;
    height: 35px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 25px;
    margin-top: -50px
}

.card-radio-input {
    display: none
}

.card-radio-input:checked+.card-radio {
    border-color: #3b76e1!important
}


.font-size-16 {
    font-size: 16px!important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.edit-btn {
    width: 35px;
    height: 35px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 25px;
    margin-top: -50px;
}

/*==============AP MCQ FRQ Page css=================*/
.ap_mcq_frq{}
.ap_mcq_frq .toggle-wrapper {
    display: inline-flex;
    background:#eaeaf5;
    padding: 6px;
    border-radius: 50px;
	margin:20px auto 0px auto;
	width:fit-content;
	 overflow: hidden;
	    position: relative;
}

.ap_mcq_frq .toggle-btn {
    border: none;
	   position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 10px 30px;
    font-weight: 500;
    color:#0a163e;
    transition: color 0.3s ease;
}

.ap_mcq_frq .toggle-btn.active {
    color: #ffffff;
	 
}

.ap_mcq_frq .toggle-content {
    display: none;
    margin-top: 15px;
}


/* sliding indicator */
.ap_mcq_frq .toggle-slider {
    position: absolute;
    top: 5px;
    left: 0px;
	transform: translateX(6px);
    height: calc(100% - 10px);
    width: 50%;
    background: #0a163e;
    color: #ffffff;
    border-radius: 50px;
    transition: transform 0.35s ease;
    z-index: 1;
}

/* move right */
.ap_mcq_frq .toggle-wrapper.right .toggle-slider {
    transform: translateX(100%);
}



.upload-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a237e;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;

}

.upload-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.upload-btn .icon-box{
    background:rgb(227 221 221 / 15%);
    padding:6px;
    border-radius:5px;
    display: flex;
    align-items: center;
	color:#000;
    justify-content: center;
}

.upload-btn i{
    font-size:15px;
    color: #000;
}

.upload-btn .text{
    margin-right: 4px;
}

/*===================time Quiz css==========================*/
.vs-quiz-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    position:relative;
    transition:.3s;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

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

/* lock badge */

.vs-quiz-lock{
    position:absolute;
    top:15px;
    right:15px;
    background:#214dc5;
    color:#fff;
    font-size:12px;
    padding:6px 12px;
    border-radius:5px;
    display:flex;
    align-items:center;
    gap:6px;
}

/* unlocked state */

.vs-quiz-lock.unlocked{
    background:#27ae60;
}

/* title */

.vs-quiz-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
    color:#2c3e50;
	margin-right: 80px;
}

/* description */

.vs-quiz-desc{
    font-size:14px;
    color:#6b7280;
    margin-bottom:20px;
}

/* info section */

.vs-quiz-info{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.vs-info-box{
    width:48%;
    background:#dae0ed;
    border-radius:10px;
    padding:12px;
    text-align:center;
}

.vs-info-icon{
    font-size:20px;
    color:#5c6bc0;
    margin-bottom:5px;
}

.vs-info-title{
    font-size:12px;
    color:#888;
}

.vs-info-value{
    font-size: 15px;
    font-weight: 600;
    color: #1c357e;

}
.start-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#ff8a00,#ff3d00);
    cursor:pointer;
    transition:.3s;
}

.start-btn:hover{
    transform:scale(1.05);
}

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

	/* .mega-wrap { position: static; display:block; padding:0px; } */
	.mega-wrap {
		position: static;
		padding: 0px;
	}

	.mega {
		width: 100%;
		border-radius: 15px;
	}

	.mega-inner {
		flex-direction: column;
	}

	.mega-left,
	.mega-mid,
	.mega-right {
		width: 100%;
		border-right: none;
		padding: 12px;
		border-bottom: 1px solid #eef4fb;
	}

	.mega-right {
		border-bottom: none;
	}

	.left {
		display: none
	}

	body {
		align-items: flex-start
	}

	.right {
		padding: 20px
	}
}

@media (max-width: 768px) {
	.timeline::before {
		left: 40px;
		transform: none
	}

	.timeline-item {
		width: 100%;
		padding-left: 56px;
		padding-right: 16px;
		min-height: 80px
	}

	.timeline-item.timeline-left,
	.timeline-item.timeline-right {
		left: 0;
		justify-content: flex-start;
		text-align: left
	}

	.timeline-item .card {
		margin: 0 0 0 36px;
		width: auto;
	}

	.timeline-item.timeline-left .card {
		margin-right: 0;
	}

	.timeline-item::after {
		left: 20px;
		transform: translateY(-50%);
		top: 70px;
		width: 35px;
		height: 35px;
	}

	.timeline-item::before {
		left: 20px;
		margin-left: 0;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		font-size: 14px;
	}

	.timeline-item.timeline-right::before {
		top: 74px;
		z-index: 0;
		left: 10px;
	}

	.timeline-item.timeline-left::before {
		margin-left: 0;
		top: 74px;
		z-index: 0;
		left: 10px;
	}

	.main-nav {
		display: none;
	}

	.menu-toggle {
		display: inline-block;
		margin-left: auto;
	}

	.main-nav.open {
		display: flex;
		position: absolute;
		right: 1rem;
		top: 64px;
		background: var(--card);
		padding: .6rem;
		border-radius: 15px;
		flex-direction: column;
		gap: .5rem;
	}

	.cards {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 3rem 0;
	}

	.hero-text p {
		padding: 0;
	}

	.live-work-shop-text p {
		padding: 0px 20px;
		font-size: 14px;
	}

	.live-work-shop-section {
		padding: 40px 0 40px 0;
	}

	.rn-box-card {
		width: 310px;
	}

	.testimonial-section {
		padding: 40px 0 40px 0;
	}

	.row.liveworkshop-service {
		margin-top: 15px;
	}

	.liveworkshop-service-box {
		background: linear-gradient(90deg, #4980d4 0%, #182753 100%);
		margin-bottom: 20px;
	}

	.hero-text h1 {
		font-size: 30px;
	}

	.courses-section {
		padding: 40px 0;
	}

	.subject-col-top-heading i {
		padding: 8px 8px;
	}

	.subject-col-top-heading h3 {
		font-size: 18px;
	}

	.liveworkshop-service-box p {
		min-height: auto;
		height: auto;
	}

	.nav-menu {
		display: block;
		align-items: center;
	}

	.user_section {
		padding: 20px 0;
		margin-bottom: 10px;
	}

	li.nav-item a {
		padding: 15px 0px;
		margin-top: 0px;
		border-bottom: 1px solid #ddd;
	}

	li.nav-item .link-col a {
		border: none;
	}

	li.nav-item .custom li {
		padding: 0 10px;
	}

	li.nav-item .custom li a {
		border: none;
	}

	.text-heading h3 {
		font-size: 24px;
		color: #ffc000;
		background-color: #182753;
		padding: 6px 10px;
		border-radius: 15px;
	}

	.navbar .navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar button.navbar-toggler {
		background: #4980d4;
		color: #fff;
		padding: 6px;
	}

	.navbar button.navbar-toggler i.fa-solid.fa-bars {
		color: #fff;
		font-size: 20px;
	}

	.testimonial-slider .rn-box-card {
		margin: 0 auto;
		width: 100%;
		margin-top: 20px;
	}

	.articles-section {
		padding: 40px 0 40px 0;
	}

	.articles-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.articles-box a.learnmore {
		bottom: 15px;
	}

	.live-work-shop-card {
		margin-bottom: 20px;
	}

	.accordion {
		margin-top: 20px;
		display: block;
	}

	.accordion-body p {
		font-size: 14px;
	}

	.accordion button.accordion-button.collapsed {
		font-size: 14px;
		box-shadow: none;
		background: none;
	}

	.hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: url(../images/home-banner.png) no-repeat right;
		background-size: cover;
		background-position: center center;
		opacity: 0.2;
		z-index: -1;
	}

	.tab-section .nav-tabs .nav-item button.nav-link {
		padding: 5px 13px;
		margin: 0px;
		height: auto;
		font-size: 16px;
	}

	.accordion h2.accordion-header .accordion-button {
		padding-right: 30px;
		padding-left: 10px;
	}

	.accordion-button::before {
		right: 10px;
	}

	.accordion-item {
		width: auto;
	}

	.footer-left-list p {
		padding-right: 0;
	}

	.live-work-shop-card h3 br {
		display: none;
	}

	.live-work-shop-card h3 {
		font-size: 18px;
	}

	.live-work-shop-card p {
		font-size: 14px;
	}

	.testimonial-slider .description {
		margin: 0px 0 30px 0;
		font-style: italic;
	}

	.reading-card {
		overflow-x: auto;
	}

	.coursesubject-row {
		width: 100%;
	}

	.coursesubject-box {
		padding: 25px 0;
		width: 100%;
		margin-bottom: 20px;
	}

	.reading-card table {
		width: 100%;
		border-collapse: revert-layer;
		background: #fff;
		margin-bottom: 0;
		border-radius: 10px;
		border: 1px solid #e5e5e5;
		text-align: center;
		margin-top: 10px;
		min-width: 500px;
		/* prevents squishing on small screens */
	}

	.calltoaction-heading {
		display: block;
		width: 100%;
	}

	.calltoaction-heading span {
		font-size: 24px;
	}

	.calltoaction-heading .btn {
		padding: 8px 20px;
		font-size: 14px;
		display: block;
		margin-top: 20px;
	}

	.sat-section .col-md-6.col-lg-3 {
		margin-bottom: 20px;
	}

	.gradeperfect-services {
		padding: 0px;
		max-width: inherit;
	}

	.gradeperfect-btn a {
		display: inline-block;
		width: 100%;
	}

	.gradeperfect-btn-area {
		margin-top: 20px;
	}

	.coursesubject-section {
		padding: 40px 0;
	}

	.calander-section {
		padding: 40px 0;
	}

	.right {
		width: 100%;
		border-radius: 15px;
	}

	.month-title {
		font-size: 14px;
	}

	.date-inner {
		width: 26px;
		height: 26px;
		font-size: 11px;
	}

	.nav-btn {
		width: 30px;
		height: 30px;
		font-size: 15px;
	}

	.month-nav {
		gap: 6px;
	}

	.month-title {
		font-size: 15px;
		padding: 0 6px;
	}

	.nav-btn {
		width: 32px;
		height: 32px;
		min-width: 32px;
		min-height: 32px;
		font-size: 16px;
	}

	.weekdays {
		gap: 3px;
		font-size: 11px;
	}

	.weekdays div {
		padding: 4px 2px;
	}

	.dates {
		gap: 4px;
	}

	.cell {
		padding: 4px 2px;
		min-height: 40px;
	}

	.header-text h2 {
		margin-top: 0px;
		font-size: 42px;
	}

	.demo-session {
		margin-top: 10px;
		display: flex;
	}

	.demo-session-btn a {
		padding: 6px 15px;
		width: unset;
		margin-right: 10px;
		font-size: 14px;
		margin-top: 0;
	}

	.header-text span {
		font-size: 30px;
	}

	section.road-map-section {
		padding: 40px 0;
	}
	.contact-form .send {
		margin-bottom: 20px;
	}	
	
	.note-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
		.explore-box {
		flex-direction: column;
		text-align: center;
	}

	.explore-content p {
		max-width: 100%;
	}
	
}

@media screen and (min-device-width:360px) and (max-device-width:400px) {
	.demo-session-btn a {
		padding: 6px 10px;
		margin-right: 10px;
		font-size: 13px;
		margin-top: 0;
	}
}



