/*
 * Custom Elementor Widgets CSS - Astra Child Theme
 */

/* ==========================================
   1. Nawe Hero Widget
   ========================================== */
.nawe-hero-container {
	position: relative;
	padding: 100px 20px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.nawe-hero-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
	margin: 0 auto;
}

.nawe-hero-badge {
	display: inline-flex;
	align-items: center;
	background: #E0E7FF;
	padding: 5px 15px;
	border-radius: 50px;
	color: #4F46E5;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
}

.nawe-hero-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	color: #000;
	margin-bottom: 20px;
}

.nawe-hero-description {
	font-size: 18px;
	color: #4B5563;
	line-height: 1.6;
	margin-bottom: 30px;
}

.nawe-hero-button {
	display: inline-block;
	background: #4F46E5;
	color: #fff;
	padding: 15px 35px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 15px;
	transition: 0.3s;
}

.nawe-hero-button:hover {
	background: #4338CA;
	color: #fff;
}

.nawe-hero-subtext {
	font-size: 14px;
	color: #6B7280;
}

/* Floating Images */
.nawe-floating-image {
	position: absolute;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	z-index: 5;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nawe-floating-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-top-left {
	top: 10%;
	left: 0%;
	transform: translateX(-20%);
}

.img-top-right {
	top: 10%;
	right: 0%;
	transform: translateX(20%);
}

.img-bottom-left {
	bottom: 20%;
	left: 5%;
	transform: translateX(-30%);
}

.img-bottom-right {
	bottom: 20%;
	right: 5%;
	transform: translateX(30%);
}

/* Logos Section */
.nawe-logos-section {
	margin-top: 80px;
}

.nawe-logos-title {
	font-size: 16px;
	font-weight: 700;
	color: #111;
	margin-bottom: 30px;
}

.nawe-logos-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.nawe-logo-item img {
	max-height: 40px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.7;
	transition: 0.3s;
}

.nawe-logo-item img:hover {
	filter: grayscale(0);
	opacity: 1;
}

@media (max-width: 768px) {
	.nawe-hero-title {
		font-size: 32px;
	}

	.nawe-floating-image {
		width: 100px;
		height: 100px;
		position: static;
		display: inline-block;
		margin: 10px;
		transform: none;
	}

	.nawe-hero-container {
		padding: 50px 20px;
	}
}

/* ==========================================
   2. Expert Hero Widget
   ========================================== */
.expert-hero-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 0px 80px;
	gap: 50px;
	overflow: hidden;
	position: relative;
}

.expert-hero-bg-grid {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-image: linear-gradient(#f0f0f0 1px, transparent 1px), linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.3;
	z-index: 1;
}

.expert-hero-left {
	flex: 1;
	z-index: 10;
}

.expert-hero-right {
	flex: 1;
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: flex-end;
}

.expert-badge {
	display: inline-block;
	padding: 6px 16px;
	background: #fdf2ff;
	border: 1px solid #f3e8ff;
	border-radius: 50px;
	color: #9333ea;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 25px;
}

.expert-title {
	margin-bottom: 20px;
}

.expert-title strong {
	font-weight: 700;
}

.expert-title-flex {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.expert-avatars-group {
	display: inline-flex;
	align-items: center;
}

.expert-avatar-item {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-left: -12px;
	overflow: hidden;
	background: #eee;
}

.expert-avatar-item:first-child {
	margin-left: 0;
}

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

.expert-arrow-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #7c3aed;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
}

.expert-description {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 35px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.expert-cta-btn {
	display: inline-block;
	background: #01598c;
	color: #fff;
	padding: 16px 36px;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
	text-decoration: none !important;
	border: 1px solid #01598c;
}

.expert-cta-btn:hover {
	background: transparent;
	color: #01598c;
	transform: translateY(-2px);
}

/* Right Side Meta */
.expert-main-img-container {
	position: relative;
	width: 100%;
	max-width: 500px;
	border-radius: 30px;
	background: #f8fafc;
	overflow: visible;
}

.expert-main-img-container img {
	width: 100%;
	height: auto;
	border-radius: 30px;
	display: block;
}

.expert-floating-card {
	position: absolute;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	padding: 15px 25px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 20;
}

.expert-floating-icon {
	width: 35px;
	height: 35px;
	background: #ffedd5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Animations */
.expert-anim-reveal-text {
	animation: expertRevealText 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
	opacity: 0;
	transform: translateY(30px);
}

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

.expert-anim-reveal-word strong,
.expert-anim-reveal-word span {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	animation: expertRevealText 0.8s ease forwards;
}

.expert-anim-fade-up {
	animation: expertRevealText 1s ease-out forwards;
}

/* Typing text styles */
.expert-typing-text {
	color: #01598c;
	font-weight: 700;
}

.expert-typing-cursor {
	color: #01598c;
	animation: expertCursorBlink 0.8s infinite;
}

@keyframes expertCursorBlink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

@media (max-width: 900px) {
	.expert-hero-wrapper {
		flex-direction: column;
		text-align: center;
		padding: 40px 20px;
	}

	.expert-title {
		font-size: 42px;
	}

	.expert-description {
		margin: 0 auto 30px;
	}

	.expert-floating-card {
		left: 50%;
		transform: translate(-50%, -50%);
		top: auto;
		bottom: -20px;
	}

	.expert-hero-bg-grid {
		width: 100%;
		bottom: 0;
		top: auto;
		height: 50%;
	}
}

/* ==========================================
   3. Nawe About Widget
   ========================================== */
.nawe-about-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}

.nawe-about-left {
	flex: 1;
	position: relative;
	padding-bottom: 80px;
}

.nawe-about-right {
	flex: 1;
}

/* Left Media Styles */
.nawe-about-img-main {
	width: 85%;
	position: relative;
	z-index: 2;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nawe-about-img-main img {
	width: 100%;
	height: auto;
	display: block;
}

.nawe-about-img-secondary {
	position: absolute;
	bottom: 0px;
	right: 30px;
	width: 45%;
	z-index: 10;
	border: 10px solid #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.nawe-about-img-secondary img {
	width: 100%;
	height: auto;
	display: block;
}

.nawe-about-badge {
	position: absolute;
	top: -5%;
	left: -30px;
	z-index: 15;
	width: 130px;
	animation: naweRotate 20s linear infinite;
	background-color: #FFFFFF80;
	padding: 10px 10px 10px 10px;
	border-radius: 100% 100% 100% 100%;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

@keyframes naweRotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.nawe-about-dots {
	position: absolute;
	bottom: 50px;
	left: -20px;
	z-index: 1;
	width: 80px;
	height: 120px;
	background-image: radial-gradient(#d1d5db 2px, transparent 2px);
	background-size: 15px 15px;
}

/* Right Content Styles */
.nawe-about-subtitle {
	display: inline-block;
	padding: 5px 15px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	text-transform: uppercase;
}

.nawe-about-title {
	margin-bottom: 25px;
}

.nawe-about-desc {
	color: #555;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 35px;
}

/* List Features */
.nawe-about-features {
	margin-bottom: 40px;
}

.nawe-feature-item {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}

.nawe-feature-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: #f97316;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.nawe-feature-info h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111;
}

.nawe-feature-info p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

/* Button */
.nawe-about-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #5066de;
	color: #fff;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
}

.nawe-about-btn:hover {
	background: #4338ca;
	transform: translateY(-2px);
	color: #fff;
}

@media (max-width: 991px) {
	.nawe-about-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.nawe-about-left {
		width: 100%;
		padding-bottom: 60px;
		max-width: 500px;
		margin: 0 auto;
	}

	.nawe-about-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nawe-about-img-main {
		width: 100%;
	}

	.nawe-about-img-secondary {
		right: 0;
		width: 50%;
		border-width: 5px;
	}

	.nawe-about-badge {
		width: 100px;
		left: 0;
		top: 0;
	}
}

/* ==========================================
   4. Nawe Serve Widget
   ========================================== */


.nawe-serve-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
	gap: 30px;
}

.nawe-serve-title-area {
	flex: 1;
}

.nawe-serve-header-badge {
	display: inline-block;
	padding: 5px 15px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	text-transform: uppercase;
}

.nawe-serve-header-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.1;
	margin: 0;
}

.nawe-serve-nav {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.nawe-serve-nav-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
	color: #666;
}

.nawe-serve-nav-btn:hover {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

/* Swiper Cards */
.nawe-serve-swiper {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.nawe-serve-card {
	background: #f8f8f8;
	border-radius: 20px;
	padding: 30px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: 0.3s;
	box-sizing: border-box;
	border: 1px solid #efefef;
	overflow: hidden;
	gap: 30px;
	height: 100%;
}

.nawe-serve-card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.nawe-serve-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.nawe-serve-card-arrow {
	font-size: 24px;
	color: #ccc;
}

.nawe-serve-card-content {
	margin-top: 20px;
}

.nawe-serve-card-title {
	font-size: 24px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.3;
	margin-bottom: 15px;
}

.nawe-serve-card-brief {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}

.nawe-serve-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.nawe-serve-card-number {
	font-size: 120px;
	font-weight: 400;
	color: #01598c;
	line-height: 0.8;
	opacity: 0.9;
	position: relative;
	bottom: -45px;
}

a.nawe-serve-card-explore {
	text-decoration: none !important;
}

.nawe-serve-card-explore {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1a1a1a;
	text-decoration: none;
	border-bottom: 1px solid #1a1a1a;
	padding-bottom: 2px;
	display: flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 768px) {
	.nawe-serve-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.nawe-serve-header-title {
		font-size: 32px;
	}

	.nawe-serve-card {
		padding: 30px;
		height: 350px;
	}

	.nawe-serve-card-number {
		font-size: 60px;
	}
}

/* ==========================================
   5. Nawe Title Header Widget
   ========================================== */
.nawe-title-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding: 20px 0;
}

.nawe-title-left {
	flex: 1;
}

.nawe-title-main {
	margin: 0;
	color: #1a1a1a;
	line-height: 1.2;
}

.nawe-title-right {
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.nawe-title-wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

/* ==========================================
   6. Nawe Logo Carousel Widget
   ========================================== */


.nawe-logo-swiper {
	width: 100%;
	padding: 20px 0;
	overflow: hidden;
}

.nawe-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #f0f0f0;
	height: 120px;
	transition: 0.3s;
}

.nawe-logo-item:hover {
	border-color: #01598c;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.nawe-logo-item img {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.6;
	transition: 0.3s;
}

.nawe-logo-item:hover img {
	filter: grayscale(0);
	opacity: 1;
}

.nawe-logo-carousel-container .nawe-serve-nav {
	display: flex;
	gap: 15px;
}

/* ==========================================
   7. Nawe About 2 Column Widget
   ========================================== */

/* Image Grid */
.nawe-about-2col-images {
	position: relative;
	margin-bottom: 80px;
}

.nawe-about-2col-dots {
	position: absolute;
	top: -40px;
	left: -40px;
	z-index: 0;
	opacity: 0.5;
}

.nawe-about-2col-img-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.nawe-about-2col-column {
	flex: 1;
}

.nawe-about-2col-img img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: block;
}

/* Staggered Heights & Placements */
.col-left {
	padding-top: 100px;
}

.col-center-left {
	padding-top: 20px;
}

.col-center-right {
	padding-top: 100px;
}

.col-right {
	padding-top: 40px;
}

/* Content Section */
.nawe-about-2col-content {
	display: flex;
	gap: 60px;
}

.nawe-about-2col-box {
	flex: 1;
}

.nawe-about-2col-subtitle {
	color: #01598c;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 15px;
	text-transform: uppercase;
}



@media (max-width: 991px) {
	.nawe-about-2col-content {
		flex-direction: column;
		gap: 40px;
	}

}

@media (max-width: 767px) {
	.nawe-about-2col-img-wrapper {
		flex-wrap: wrap;
	}

	.nawe-about-2col-column {
		flex: 0 0 calc(50% - 10px);
		padding-top: 0 !important;
		margin-bottom: 20px;
	}

	.nawe-about-2col-dots {
		display: none;
	}
}

/* ==========================================
   8. Nawe Side Feature Widget
   ========================================== */
.nawe-sfeature-container {
	display: flex;
	align-items: center;
	gap: 80px;
}

/* Left Side: Image + Overlay Box */
.nawe-sfeature-left {
	flex: 1;
	position: relative;
}

.nawe-sfeature-image-outer {
	position: relative;
	padding-bottom: 60px;
	/* Space for the overlay box */
}

.nawe-sfeature-image-outer img {
	width: 100%;
	border-radius: 12px;
	display: block;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nawe-sfeature-overlay {
	position: absolute;
	bottom: 0;
	right: -30px;
	background: #01598c;
	padding: 30px 40px;
	border-radius: 8px;
	max-width: 290px;
}

.nawe-sfeature-overlay-title {
	color: #fff;
	font-size: 24px;
	line-height: 1.3;
	margin: 0;
	font-weight: 600;
}


/* Right Side: Content */
.nawe-sfeature-right {
	flex: 1;
}


.nawe-sfeature-lead {
	font-size: 20px;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
}

.nawe-sfeature-content {
	color: #666;
	line-height: 1.7;
	margin-bottom: 40px;
}

/* CTA Area */
.nawe-sfeature-cta {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nawe-sfeature-phone {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #1a1a1a;
	font-weight: 700;
	font-size: 18px;
	transition: 0.3s;
}

.nawe-sfeature-phone:hover {
	color: #01598c;
}

.nawe-phone-icon {
	width: 45px;
	height: 45px;
	background: #f8f9fa;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #01598c;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 991px) {
	.nawe-sfeature-container {
		flex-direction: column;
		gap: 0px;
	}

	.nawe-sfeature-overlay {
		right: 0;
		bottom: -20px;
	}

	.nawe-sfeature-title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.nawe-sfeature-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.nawe-sfeature-overlay {
		position: static;
		max-width: 100%;
		z-index: 2;
	}

	.nawe-sfeature-overlay {
		border-radius: 0 0 12px 12px;
		margin-top: -10px;
	}

	.nawe-cl-container .course-card-body {
		padding: 20px 15px;
	}
}

/* ==========================================
   9. Nawe Accordion Widget
   ========================================== */

.nawe-accordion-item {
	border-bottom: 1px solid #000000;
}

.nawe-accordion-header {
	padding: 25px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
}

.nawe-accordion-label {
	font-size: 24px;
	font-weight: 500;
	color: #1a1a1a;
}

.nawe-accordion-icon {
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	color: #333;
}

.nawe-accordion-item.active .nawe-accordion-icon {
	transform: rotate(45deg);
}

/* Content Area */
.nawe-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.6s cubic-bezier(0, 1, 0, 1);
}

.nawe-accordion-item.active .nawe-accordion-content {
	max-height: 2000px;
	transition: max-height 1s ease-in-out;
}

.nawe-accordion-content-inner {
	padding: 40px 0 60px;
}

.nawe-accordion-program-badge {
	display: inline-block;
	background: #0066ff;
	color: #fff;
	padding: 5px 15px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.nawe-accordion-main-title {
	font-size: 44px;
	font-weight: 800;
	color: #000;
	line-height: 1.1;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.nawe-accordion-lead {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
	max-width: 800px;
}

.nawe-accordion-meta {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}

.nawe-meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #000;
}

.nawe-meta-icon {
	color: #01598c;
	display: flex;
	align-items: center;
	font-size: 18px;
}

.nawe-meta-icon i {
	font-size: 18px;
}

.nawe-meta-text {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
}

.nawe-meta-title {
	font-weight: 800;
	text-transform: uppercase;
}

/* Grid Layout */
.nawe-accordion-grid {
	display: flex;
	gap: 60px;
	align-items: center;
}

.nawe-accordion-highlights {
	flex: 1.5;
}

.nawe-highlights-label {
	font-size: 12px;
	font-weight: 800;
	color: #000;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.nawe-highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nawe-highlights-list li {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 16px;
	color: #1a1a1a;
}

.nawe-check {
	width: 22px;
	height: 22px;
	border: 1px solid #01598c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #01598c;
	flex-shrink: 0;
}

/* Outcome Box */
.nawe-accordion-outcome {
	flex: 1;
}

.nawe-outcome-box {
	background: #01598c;
	padding: 30px;
	border-radius: 20px;
	color: #fff;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	width: max-content;
	margin-left: auto;
	max-width: 450px;
}

.nawe-meta-icon svg {
	width: 16px;
	height: 16px;
	fill: #01598c;
}

.nawe-outcome-badge {
	font-size: 10px;
	font-weight: 700;
	color: #ddd;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.nawe-outcome-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
}

.nawe-outcome-btn {
	display: block;
	background: #fff;
	color: #000;
	text-align: center;
	padding: 15px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.nawe-outcome-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.nawe-accordion-lead {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
	max-width: 800px;
}

.nawe-accordion-lead p {
	margin-bottom: 15px;
}

.nawe-accordion-lead p:last-child {
	margin-bottom: 0;
}

.nawe-accordion-footer-text {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #f0f0f0;
	color: #444;
	line-height: 1.7;
}

.nawe-accordion-footer-text p {
	margin-bottom: 15px;
}

.nawe-accordion-footer-text p:last-child {
	margin-bottom: 0;
}

.nawe-accordion-highlights ul.nawe-highlights-list {
	padding: 0;
}

/* Responsive */
@media (max-width: 991px) {
	.nawe-accordion-grid {
		flex-direction: column;
		gap: 40px;
	}

	.nawe-accordion-main-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nawe-accordion-label {
		font-size: 18px;
	}

	.nawe-accordion-meta {
		flex-direction: column;
		gap: 15px;
	}
}

/* ==========================================
   10. Nawe Why Choose Us Widget
   ========================================== */
.nawe-why-choose-container {
	display: flex;
	align-items: stretch;
	gap: 80px;
}

.nawe-wc-left {
	flex: 1;
}

.nawe-wc-badge {
	margin-bottom: 25px;
}

.nawe-wc-title {

	margin-bottom: 50px;
}

.nawe-wc-title .highlight {
	color: #01598c;
}

.nawe-wc-title span {
	color: #01598c;
}

.nawe-wc-features {
	display: flex;
	flex-direction: column;
}

.nawe-wc-feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.nawe-wc-feature-icon {
	width: 40px;
	height: 40px;
	background: #f0f7ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #01598c;
	flex-shrink: 0;
	font-size: 16px;
}

.nawe-wc-feature-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 5px;
}

.nawe-wc-feature-desc {
	font-size: 15px;
	color: #666;
	margin: 0;
}

/* Right Side */
.nawe-wc-right {
	flex: 1;
}

.nawe-wc-image-wrapper {
	position: relative;
	/* Space for testimonial */
}

.nawe-wc-image-wrapper img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nawe-wc-testimonial {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 30px 30px;
	border-radius: 24px;
	width: 85%;
}

.nawe-wc-testimonial p.nawe-wc-testi-author {
	margin-bottom: 0;
}

.nawe-wc-testi-text {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	margin: 0 0 15px;
	font-style: italic;
}

.nawe-wc-testi-author {
	font-size: 13px;
	font-weight: 700;
	color: #01598c;
	margin: 0;
	letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
	.nawe-why-choose-container {
		flex-direction: column;
		padding: 0px;
	}


}

@media (max-width: 767px) {
	.nawe-wc-testimonial {
		width: 100%;
		position: static;
		transform: none;
		margin-top: -30px;
		padding: 25px;
	}
}

/* ==========================================
   11. Nawe Serve Grid Widget
   ========================================== */
.nawe-serve-grid-container {
	width: 100%;
}

.nawe-serve-grid {
	display: grid;
	gap: 30px;
	width: 100%;
}

/* Desktop Columns */
.nawe-serve-grid-cols-1 .nawe-serve-grid {
	grid-template-columns: repeat(1, 1fr);
}

.nawe-serve-grid-cols-2 .nawe-serve-grid {
	grid-template-columns: repeat(2, 1fr);
}

.nawe-serve-grid-cols-3 .nawe-serve-grid {
	grid-template-columns: repeat(3, 1fr);
}

.nawe-serve-grid-cols-4 .nawe-serve-grid {
	grid-template-columns: repeat(4, 1fr);
}

.nawe-serve-grid-cols-5 .nawe-serve-grid {
	grid-template-columns: repeat(5, 1fr);
}

/* Tablet Columns */
@media (max-width: 1024px) {
	.nawe-serve-grid-cols-tablet-1 .nawe-serve-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.nawe-serve-grid-cols-tablet-2 .nawe-serve-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nawe-serve-grid-cols-tablet-3 .nawe-serve-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.nawe-serve-grid-cols-tablet-4 .nawe-serve-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.nawe-serve-grid-cols-tablet-5 .nawe-serve-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* Mobile Columns */
@media (max-width: 767px) {
	.nawe-serve-grid-cols-mobile-1 .nawe-serve-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.nawe-serve-grid-cols-mobile-2 .nawe-serve-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================
   12. Nawe Program Listing Widget
   ========================================== */
.nawe-pl-container {
	width: 100%;
	position: relative;
	padding: 20px 0;
}

.nawe-pl-header {
	margin-bottom: 60px;
}

.nawe-pl-header-title {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	color: #000;
	margin: 0;
	letter-spacing: -2px;
}

.nawe-pl-grid {
	display: grid;
	gap: 30px;
	width: 100%;
}

/* Grid Columns Logic */
.nawe-pl-cols1 .nawe-pl-grid {
	grid-template-columns: repeat(1, 1fr);
}

.nawe-pl-cols2 .nawe-pl-grid {
	grid-template-columns: repeat(2, 1fr);
}

.nawe-pl-cols3 .nawe-pl-grid {
	grid-template-columns: repeat(3, 1fr);
}

.nawe-pl-cols4 .nawe-pl-grid {
	grid-template-columns: repeat(4, 1fr);
}

.nawe-pl-cols5 .nawe-pl-grid {
	grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
	.nawe-pl-cols-tablet1 .nawe-pl-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.nawe-pl-cols-tablet2 .nawe-pl-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nawe-pl-cols-tablet3 .nawe-pl-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.nawe-pl-cols-mobile1 .nawe-pl-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.nawe-pl-cols-mobile2 .nawe-pl-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Card Design Enhancement */
.nawe-pl-card {
	background: #ffffff !important;
	border: 1px solid #f2f2f2 !important;
	border-radius: 20px !important;
	padding: 40px 35px !important;
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	transition: all 0.4s ease;
	position: relative;
}

.nawe-pl-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06) !important;
}

.nawe-pl-card-top {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	margin-bottom: 45px !important;
}

.nawe-pl-icon-box {
	width: 70px !important;
	height: 70px !important;
	background: #ffffff !important;
	border-radius: 20px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
	color: #10b981 !important;
	/* Vivid Green */
	font-size: 30px !important;
	padding: 10px;
}

.nawe-pl-status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 800;
	color: #000;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.layout-slider .swiper.nawe-cl-swiper {
	overflow: hidden !important;
}


.nawe-pl-status-dot {
	width: 10px;
	height: 10px;
	background: #10b981;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.nawe-pl-card-body {
	margin-bottom: 30px;
}

.nawe-pl-card-subtitle {
	font-size: 13px !important;
	font-weight: 800 !important;
	color: #0066ff !important;
	letter-spacing: 1.2px;
	margin-bottom: 25px !important;
	text-transform: uppercase;
}

.nawe-pl-card-desc {
	font-size: 19px !important;
	color: #555 !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.nawe-pl-features {
	list-style: none !important;
	padding: 0 !important;
	margin: 30px 0 50px !important;
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 15px 35px !important;
}

.nawe-pl-features li {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #1a1a1a !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nawe-pl-feature-icon {
	color: #0066ff !important;
	display: flex !important;
}

.nawe-pl-btn {
	margin-top: auto !important;
	background: #000000 !important;
	color: #ffffff !important;
	padding: 24px 30px !important;
	border-radius: 50px !important;
	text-align: center !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	text-decoration: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 12px !important;
	transition: all 0.3s ease !important;
}

.nawe-pl-btn:hover {
	background: #1a1a1a !important;
	transform: scale(1.02);
}

@media (max-width: 991px) {
	.nawe-pl-card {
		padding: 45px 30px !important;
	}

	.nawe-pl-card-title {
		font-size: 32px !important;
	}

	.nawe-pl-header-title {
		font-size: 42px;
	}
}

/* ==========================================
   14. Nawe Course Listing Widget Refined
   ========================================== */

.nawe-cl-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.nawe-cl-header-title {
	font-size: 56px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.1;
	margin: 0;
	letter-spacing: -1.5px;
}

.nawe-cl-nav {
	display: flex;
	gap: 15px;
}

.nawe-cl-nav-btn {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #334155;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nawe-cl-nav-btn:hover {
	background: #01598c;
	color: #fff;
	border-color: #01598c;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(1, 89, 140, 0.3);
}

/* Grid Layout */
.nawe-cl-grid-wrapper {
	width: 100%;
}

.nawe-cl-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
	/* Default to 3 columns */
}

.nawe-pl-cols1 .nawe-cl-grid {
	grid-template-columns: 1fr !important;
}

.nawe-pl-cols2 .nawe-cl-grid {
	grid-template-columns: repeat(2, 1fr) !important;
}

.nawe-pl-cols3 .nawe-cl-grid {
	grid-template-columns: repeat(3, 1fr) !important;
}

.nawe-pl-cols4 .nawe-cl-grid {
	grid-template-columns: repeat(4, 1fr) !important;
}

.nawe-pl-cols5 .nawe-cl-grid {
	grid-template-columns: repeat(5, 1fr) !important;
}

/* Premium Card Design (Screenshot 4 Match) */
.nawe-cl-container .course-card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid #f1f5f9;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nawe-cl-container .course-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nawe-cl-container .course-card-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nawe-cl-container .course-card:hover .course-card-image img {
	transform: scale(1.05);
}

.nawe-cl-container .course-card-body {
	padding: 32px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.nawe-cl-container .course-card-cat {
	color: #01598c;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 16px;
	display: block;
}

.nawe-cl-container .course-card-body h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 14px;
	line-height: 1.3;
	color: #1a1a1a;
}

.nawe-cl-container .course-card-body h3 a {
	color: inherit;
	text-decoration: none;
}

.nawe-cl-container .course-card-body p {
	font-size: 16px;
	color: #64748b;
	margin-bottom: 30px;
	line-height: 1.6;
	flex-grow: 1;
}

.nawe-cl-container .expert-cta-btn {
	display: inline-block;
	background: #01598c;
	color: #fff;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.3s ease;
	border: 1px solid #01598c;
	width: fit-content;
	text-align: center;
}

.nawe-cl-container .expert-cta-btn:hover {
	background: transparent;
	color: #01598c;
}

/* Swiper specific */
.nawe-cl-swiper {
	width: 100%;
	overflow: visible !important;
	padding-bottom: 40px;
}

@media (max-width: 1024px) {
	.nawe-cl-header-title {
		font-size: 42px;
	}
}

@media (max-width: 991px) {

	.nawe-pl-cols3,
	.nawe-pl-cols4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nawe-cl-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.nawe-cl-header-title {
		font-size: 32px;
	}

	.nawe-cl-grid {
		grid-template-columns: 1fr !important;
	}

	.nawe-cl-nav {
		margin-top: 10px;
	}
}