/* =========================
GLOBAL COLORS
========================= */
:root {
	--primary-blue:#81be33;
	--accent-orange: #1ec2f1;
	--dark-text: #1F2933;
	--light-text: #6B7280;
	--white: #FFFFFF;
	--footer-bg: #1ec2f1;
}

/* =========================
BODY TEXT
========================= */
/* =========================================
TYPOGRAPHY SYSTEM
========================================= */

/* Base */
body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
		'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
		'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	color: var(--dark-text);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0.6em;
	color: #0b3c5d;
}

h1 { font-size: 42px;  font-weight: 700;}
h2 { font-size: 34px;  font-weight: 600;}
h3 { font-size: 26px;  font-weight: 550;}
h4 { font-size: 22px;  font-weight: 500;}
h5 { font-size: 18px;  font-weight: 400;}
h6 { font-size: 16px;  font-weight: 400;}

/* Paragraph */
p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 1em;
	color: var(--dark-text);
}

/* Links */
a {
	text-decoration: none;
	color: inherit;
}

/* Small text */
small {
	font-size: 13px;
	color: var(--muted-text);
}

/* Strong */
strong {
	font-weight: 600;
}

/* Buttons / CTA text */
button,
.btn,
.wb-readmore-btn {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	letter-spacing: 0.3px;
}

/* =========================================
RESPONSIVE TYPOGRAPHY
========================================= */

/* Tablet */
@media (max-width: 992px) {
	h1 { font-size: 36px; }
	h2 { font-size: 30px; }
	h3 { font-size: 24px; }
}

/* Mobile */
@media (max-width: 600px) {
	body {
		font-size: 15px;
	}

	h1 { font-size: 30px; }
	h2 { font-size: 26px; }
	h3 { font-size: 22px; }
	h4 { font-size: 20px; }

	p {
		line-height: 1.65;
	}
}


::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}
::-webkit-scrollbar-thumb {
	background: var(--footer-bg);
	border-radius: 10px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--accent-orange);
	border-radius: 5px;
}


/* Apply only on content images */
.main-content img,
section img,
.article img,
.card img {
	transition: 
		transform 0.6s cubic-bezier(.22,.61,.36,1),
		box-shadow 0.6s ease;
	transform-style: preserve-3d;
}

/* Hover effect */
.main-content img:hover,
section img:hover,
.article img:hover,
.card img:hover {
	transform: 
		rotateX(6deg)
		rotateY(-6deg)
		scale(1.05);
	box-shadow: 
		0 25px 50px rgba(15, 23, 42, 0.35);
}

@media (max-width: 768px) {
	img:hover {
		transform: none;
		box-shadow: none;
	}
}



/* Menu links */
.wb-menu li a {
	color: white;
}

@media(max-width: 992px){
	.wb-menu li a{
		color: white !important;
	}
	.wb-menu li a:hover {
		color: var(--accent-orange) !important;
	}
}

.wb-menu li a:hover {
	color: var(--accent-orange);
}

/* Active / current menu */
.wb-menu li.current-menu-item > a,
.wb-menu li.current-menu-parent > a {
	color: var(--accent-orange);
}

/* Hamburger */
.hamburger span {
	background-color: var(--footer-bg);
}

.hamburger.active span {
	background-color: white;
}


/* =========================
FOOTER COLORS
========================= */
.wb-footer {
	background-color: #050300;
	color: #CBD5E1;
}

/* Footer links */
.footer-links li a {
	color: #E2E8F0;
}

.footer-links li a:hover {
	color: var(--accent-orange);
}

/* Footer bottom text */
.footer-bottom p {
	color: #94A3B8;
}

/* Social icons hover */
.social-icons a img {
	filter: brightness(0) invert(1);
	opacity: 0.85;
}

.social-icons a:hover img {
	opacity: 1;
}






/* -----------------------------------------
FOOTER
------------------------------------------ */
.wb-footer {
	padding: 50px 20px 30px;
}


.footer-menu li {
	position: relative;
	padding-left: 18px; /* space for icon */
	transition: transform 0.3s ease;
}

/* Icon before each menu item */
.footer-menu li::before {
	content: "››";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	letter-spacing: -4px;   /* 👈 gap kam */
	opacity: 0.8;
	color: inherit;
	transition: color 0.3s ease;
	font-weight: bold;
}



.footer-menu li:hover::before{
	color: var(--accent-orange);
}

.footer-menu ul{
	list-style: none !important;
}

/* Footer menu link */
.footer-menu li a {
	text-decoration: none;
	transition: transform 0.1s ease;
}

/* Hover effect – move right smoothly */
.footer-menu li:hover {
	transform: translateX(6px);
}



.wb-footer-container {
	/*     max-width: 1200px; */
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.menu-col h4 {
	font-size: 17px;
	margin-bottom: 10px;
}

.footer-menu {
	list-style: none;
	padding: 0;
}

.footer-menu li a {
	text-decoration: none;
	font-size: 15px;
	display: block;
	margin-bottom: 6px;
}

.wb-footer-social a {
	display: inline-block;
	font-size: 20px;
	margin: 0 10px;
	color: #6a0dad;
	transition: 0.3s;
}

.wb-footer-social a:hover {
	color: #b75cff;
}

.wb-footer-copy {
	margin-top: 25px;
	text-align: center;
	font-size: 14px;
	color: #5d3a8a;
}



/* -----------------------------------------
HEADER BASE
------------------------------------------ */
.wb-header {
	background-color: var(--white);
	border-bottom: 1px solid #DBEAFE;
	padding: 15px 0;
/* 	position: sticky; */
	top: 0;
	z-index: 999;
}

.wb-header-inner {
	/*     max-width: 1200px; */
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* submenu arrow setup  */

.wb-menu li.menu-item-has-children > a {
	position: relative;
	/*     padding-right: px; */
}

.wb-menu li.menu-item-has-children > a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	display: inline-block;
	margin-left: 8px;
	margin-bottom: 2px;
	transition: transform 0.3s ease;
}

/* Hover (desktop) */
.wb-menu li.menu-item-has-children:hover > a::after,

/* Active page inside submenu */
.wb-menu li.menu-item-has-children.current-menu-parent > a::after,
.wb-menu li.menu-item-has-children.current-menu-ancestor > a::after,

/* Mobile open */
.wb-menu li.menu-item-has-children.open > a::after {
	transform: rotate(-135deg);
}

@media (max-width: 768px) {

	.wb-menu li.menu-item-has-children > a {
		padding-right: 40px; /* space for arrow */
	}

	.wb-menu li.menu-item-has-children > a::after {
		position: absolute;
		right: 0;
		top: 50%;
	}

	@media (max-width: 768px) {

		/* Disable hover effect on mobile */
		.wb-menu li.menu-item-has-children:hover > a::after {
			transform: rotate(45deg);
		}

		/* Rotate ONLY when clicked (open state) */
		.wb-menu li.menu-item-has-children.open > a::after,
		.wb-menu li.menu-item-has-children.current-menu-parent > a::after,
		.wb-menu li.menu-item-has-children.current-menu-ancestor > a::after {
			transform: translateY(-50%) rotate(-135deg);
		}
	}


}


/* -----------------------------------------
MAIN MENU
------------------------------------------ */
nav ul,
nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wb-menu {
	display: flex;
	gap: 25px;

}

.wb-menu li a {
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
	padding: 8px 0;
	display: block;
	transition: 0.3s;
	color: #1f80ff;
}

.wb-menu li a:hover,
.wb-menu .current-menu-item > a {
}



/* -----------------------------------------
SUBMENU
------------------------------------------ */
.wb-menu li {
	position: relative;
}

.wb-menu li ul {
	position: absolute;
	left: 0;
	top: 40px;
	min-width: 180px;
	background: #fff;
	border-radius: 6px;
	padding: 12px 0;
	border: 1px solid #eee;
	box-shadow: 0 10px 25px rgba(80, 0, 140, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: 0.3s;
	z-index: 999;
}

.wb-menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.wb-menu li ul li {
	padding: 8px 15px;
	white-space: nowrap;
}

.wb-menu li ul li a {
	font-size: 14px;
	color: var(--bg-footer) !important;
	padding: 5px !important;
}

.wb-menu li ul li a:hover {
	background: var(--accent-orange) !important;
	color: #fff !important;
}

.wb-menu li ul {
	background: var(--white);
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.wb-menu li ul li a {
	color: var(--dark-text);
}

.wb-menu li ul li a:hover {
	background: var(--primary-blue);
	color: #fff;
}

/* -----------------------------------------
HAMBURGER
------------------------------------------ */
.hamburger {
	width: 30px;
	cursor: pointer;
	display: none;
	position: relative;
	z-index: 10000;
}

.hamburger span {
	width: 100%;
	height: 3px;
	display: block;
	margin: 6px 0;
	transition: 0.4s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}


/* -----------------------------------------
MOBILE MENU
------------------------------------------ */


@media(max-width: 768px) {

	.main-nav {
		/* hidden by default */
		position: fixed;
		top: 0;
		right: -300px;
		width: 260px;
		height: 100vh;
		padding-top: 80px;
		transition: 0.4s;
		box-shadow: -4px 0 20px rgba(0,0,0,0.1);
		z-index: 9998;
		background: var(--footer-bg);

	}

	.main-nav.active {
		right: 0;
	}

	.hamburger {
		display: block;
		
	}

	.wb-menu {
		flex-direction: column;
		gap: 0;
	}

	.wb-menu li {
		padding: 5px 18px;
		color: var(--bg-footer) !important;
	}

	/* Mobile submenu */
	.wb-menu li ul {
		position: static;
		border: none;
		box-shadow: none;
		display: none;
		padding-left: 15px;
		transform: none;
		visibility: visible;
		opacity: 1;
	}

	.wb-menu li.open > ul {
		display: block;
	}
}


/* blog page css  */

/* ================================================
BLOG PAGE WRAPPER
================================================ */
.wb-blog-wrap {
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px;
}

/* Page Heading */
.wb-blog-title {
	font-size: 35px;
	font-weight: 700;
	color: #4a2d72;
	text-align: center;
	margin-bottom: 40px;
}


/* ================================================
BLOG GRID
================================================ */
.wb-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

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

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

/* ================================================
BLOG CARD
================================================ */
.wb-blog-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(60, 31, 101, 0.08);
	transition: all 0.35s ease;
}

.wb-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(60, 31, 101, 0.18);
}

/* Featured Image */
.wb-blog-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* Content Box */
.wb-blog-content {
	padding: 20px 22px;
}

/* Blog Title */
.wb-blog-content h2 {
	font-size: 20px;
	font-weight: 600;
	color: #2f234f;
	margin-bottom: 10px;
	line-height: 1.4;
}

.wb-blog-content h2 a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

.wb-blog-content h2 a:hover {
	color: #f97316;
}

/* Meta */
.wb-blog-meta {
	font-size: 13px;
	color: #7a6b9a;
	margin-bottom: 12px;
}

/* Excerpt */
.wb-blog-excerpt {
	font-size: 15px;
	color: #4b3f6b;
	margin-bottom: 20px;
	line-height: 1.6;
}

/* Read More Button */
.wb-readmore-btn {
	display: inline-block;
	padding: 9px 20px;
	background: #1ca5e9;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.wb-readmore-btn:hover {
	background: #1ec2f1;
	transform: translateX(3px);#ea580c
}

/* View All Blog CTA */
.wb-blog-cta a {
	color: #ffffff;
	text-decoration: none;
}

.wb-blog-cta a:hover {
	color: #ffffff;
	text-decoration: none;
}

/* ================================================
PAGINATION
================================================ */ 

.wb-pagination {
	text-align: center;
	margin-top: 50px;
}

.wb-pagination a,
.wb-pagination span {
	display: inline-block;
	padding: 10px 16px;
	margin: 4px;
	border-radius: 6px;
	background: #f2edff;
	color: #3c1f65;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.wb-pagination a:hover {
	background: #f97316;
	color: #ffffff;
}

.wb-pagination .current {
	background: #5b2df8;
	color: #ffffff;
}


/* home hero section  */

.hero-slider {
	position: relative;
	height: 87vh;
	overflow: hidden;
	background: #000;
}

/* Sticky main heading */
.hero-heading {
	position: absolute;
	top: 73%;
/* 	left: 6%; */
	z-index: 5;
/* 	max-width: 1500px; */
background-color: rgba(14, 71, 158, 0.8);
	padding: 15px 2px;
}

.hero-heading .col-xl-4 p,.hero-heading .col-xl-4 b{
/* 	background-color: wheat; */
	color: white !important;
}

@media(max-width: 767px){
	.hero-heading .col-xl-4 p{
		display: none;
	}
	
	.hero-heading{
		top: 80% !important;
	}
	
	.slide-content{
		left: 20px !important;
	}
}

/* Slides */
.slides {
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease;
}

.slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

/* Slide content */
.slide-content {
	position: absolute;
	top: 25%;
	left: 20%;
	z-index: 3;
	color: #fff;
	animation: slideUp 1s ease forwards;
}

.slide-content p {
	font-size: 18px;
	margin-bottom: 20px;
	color: white;
}

@media(max-width: 767px){
	.slide-content h2{
		font-size: 30px !important;
		line-height: 30px !important;
	}

	.slide-content{
		top: 25% !important;
	}

	.hero-btn{

		padding: 6px 13px !important;
		border-radius: 6px !important;
		font-weight: 300 !important;
		
	}
	
	.slide-content br{
		display: none;
	}
}

.hero-btn {
	display: inline-block;
	background: #1f80ff;
	color: #fff;
	padding: 12px 26px;
	border-radius: 6px;
	font-weight: 500;
	transition: 0.3s;
}

.hero-btn:hover {
	background: #1ec2f1;
	text-decoration: none;
	color: white;
}

/* Animation */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {

	.hero-heading {
		top: 18%;
	}

	.hero-heading h1 {
		font-size: 28px;
	}

	.slide-content {
		top: 50%;
	}
}

.hero-slider h2{
	font-size: 60px;
	font-weight: bold;
	line-height: 60px;
	color: white;
}


/* home second section  */

/* ===============================
HR WHY SECTION
================================ */
.hr-why-section {
	padding: 70px 20px;
}

.hr-why-grid {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

/* IMAGE */
.hr-why-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 60, 120, 0.15);
	object-fit: cover;
}

/* CONTENT */


.hr-why-content .subtitle {
	font-size: 18px;
	color: #1e6f9f;
	font-weight: 500;
	margin-bottom: 25px;
}

/* POINT LIST */
.hr-points {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.hr-points li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 14px;
	font-size: 16px;
	color: #34495e;
	line-height: 1.6;
}

.hr-points li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #81be33; /* orange accent */
	font-weight: 700;
}

/* BUTTON */
.hr-btn {
	display: inline-block;
	background: #1ec2f1;
	color: #fff;
	padding: 14px 26px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease;
}

.hr-btn:hover {
	background: #1f80ff;
	transform: translateY(-2px);
	color: white;
	text-decoration:none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.hr-why-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.hr-why-content h2 {
		font-size: 30px;
	}
}


/* 4 section of home  */

/* ===============================
HR ABOUT SECTION
================================ */
.hr-about-section {
	padding: 80px 20px;
	background: #ffffff;
}

.hr-about-row {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 80px;
}

.hr-about-row.reverse {
	grid-template-columns: 0.9fr 1.1fr;
}

/* CONTENT */
.hr-about-content h2 {
	font-size: 34px;
	font-weight: 700;
	color: #0b3c5d;
	margin-bottom: 18px;
}

.hr-about-content h3 {
	font-size: 28px;
	font-weight: 700;
	color: #0b3c5d;
	margin-bottom: 18px;
}

.hr-about-content p {
	font-size: 16px;
	line-height: 1.75;
	color: #4a5f73;
	margin-bottom: 16px;
}

/* IMAGE */
.hr-about-image img {
	width: 100%;
	border-radius: 22px;
	object-fit: cover;
	box-shadow: 0 18px 45px rgba(11, 60, 93, 0.18);
}

/* RESPONSIVE */
@media (max-width: 900px) {

	.hr-about-row,
	.hr-about-row.reverse {
		grid-template-columns: 1fr;
		gap: 35px;
		margin-bottom: 60px;
	}

	.hr-about-content h2 {
		font-size: 28px;
	}

	.hr-about-content h3 {
		font-size: 24px;
	}
}



/* ===============================
MEET YOUR MENTOR
================================ */
.mentor-section {
	padding: 80px 20px;
	background-color: rgba(129, 190, 51, 0.1);

}

.mentor-wrap {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 10px;
	align-items: center;
	background-color: white;
	padding: 10px;
}

/* IMAGE */
.mentor-image {
	position: relative;
}

.mentor-image img {
	width:400px;
	height: 400px;
	border-radius:  0px 50% 50% 0px ;
	object-fit: cover;
	box-shadow: 0 25px 60px rgba(11, 60, 93, 0.25);
}

/* CONTENT */
.mentor-content {
	background: #ffffff;
	padding: 45px;
/* 	border-radius: 24px; */
/* 	box-shadow: 0 18px 45px rgba(11, 60, 93, 0.12); */
}

/* BADGE */
.mentor-badge {
	display: inline-block;
	background: #e6f2ff;
	color: #0b3c5d;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 12px;
	cursor: pointer;
}

.mentor-badge:hover{
	background-color: #0e479e;
	color: white;
}

/* LIST */
.mentor-highlights {
	list-style: none;
	padding: 0;
	margin: 25px 0 35px;
}

.mentor-highlights li {
	margin-bottom: 10px;
	color: #34495e;
}

/* BUTTON */
.mentor-btn {
	display: inline-block;
	background: var(--footer-bg);
	color: #ffffff;
	padding: 14px 26px;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease;
}

.mentor-btn:hover {
	background: #1f80ff;
	transform: translateY(-2px);
	color:white;
	text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.mentor-wrap {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mentor-content {
		padding: 35px;
	}
}


/* ===============================
WHY CHOOSE HR SECTION
================================ */
.why-choose-hr {
	background: rgba(28, 165, 233, 0.6); /* teal-blue background */
	padding: 80px 20px;

}

.why-choose-content {
	max-width: 1100px;
	margin: auto;
}

/* TEXT SPACING ONLY (NO TYPOGRAPHY OVERRIDE) */
.why-choose-content p {
	margin-bottom: 18px;
}

/* LIST */
.why-choose-list {
	margin: 25px 0 40px;
	padding-left: 20px;
}

.why-choose-list li {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* BADGES */
.why-choose-badges {
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 30px;
}



/* RESPONSIVE */
@media (max-width: 768px) {

	.why-choose-hr {
		padding: 60px 20px;
	}

	.why-choose-badges {
		gap: 25px;
	}

	.why-choose-badges img {
		max-height: 55px;
	}
}


/* ===============================
TESTIMONIALS
================================ */
.hr-testimonials {
	padding: 80px 20px;
	background: #f7fbff;
}

.testimonial-head {
	max-width: 700px;
	margin: 0 auto 50px;
	text-align: center;
}

.testimonial-head p {
	margin-top: 10px;
	color: #4a5f73;
}

/* GRID */
.testimonial-grid {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* CARD */
.testimonial-card {
	background: #ffffff;
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(11, 60, 93, 0.12);
	transition: 0.3s ease;
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-6px);
}

/* FEATURED (CENTER) */
.testimonial-card.featured {
	border-top: 4px solid #1ec2f1;
}

/* STARS */
.testimonial-stars {
	color: #f97316;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
	color: #34495e;
	margin-bottom: 25px;
	line-height: 1.6;
}

/* USER */
.testimonial-user {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-user img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #e6f2ff;
}

.testimonial-user span {
	color: #6b7c8f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}



/* faq sectiin code  */

/* =========================
FAQ SECTION – ADVANCED
========================= */

.faq-header {
	margin-bottom: 40px;
	text-align: center;
}

.faq-header h2 {
	color: #0b3c5d;
}

/* Container */
.faq-container {
	background: #ffffff;
	padding: 25px;
	border-radius: 16px;
	box-shadow: 0 20px 45px rgba(11, 60, 93, 0.12);
}

/* Item */
.faq-item {
	border-bottom: 1px solid #e6eef6;
}

.faq-item:last-child {
	border-bottom: none;
}

/* Question */
.faq-question {
	padding: 20px 70px 20px 20px;
	cursor: pointer;
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: #0b3c5d;
	transition: background 0.3s ease, color 0.3s ease;
	border-radius: 12px;
}

.faq-question:hover {
	background: #f1f7fc;
}

/* Plus Icon */
.faq-question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	background: #eaf4ff;
	color: #1f80ff;
	font-size: 26px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.3s ease;
}

/* Active State */
.faq-item.active .faq-question {
	background-color: rgba(129, 190, 51, 0.1);
	color: #1f80ff;
}

.faq-item.active .faq-question::after {
	content: "–";
	background: #1f80ff;
	color: #ffffff;
}

/* Answer */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: max-height 0.5s ease, padding 0.3s ease;
	background: #f8fafc;
	color: #445b6f;
}

.faq-item.active .faq-answer {
	max-height: 600px;
	padding: 20px;
}

/* Mobile Fix */
@media (max-width: 768px) {
	.faq-question {
		padding: 18px 60px 18px 15px;
		font-size: 16px;
	}

	.faq-question::after {
		right: 15px;
		width: 34px;
		height: 34px;
		font-size: 22px;
	}
}


/* blog section  */
.wb-blog-cta {
	text-align: center;
	margin-top: 40px;
}

.wb-view-all-btn {
	display: inline-block;
	padding: 14px 22px;
	background: #1ec2f1;
	color: #fff;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.wb-view-all-btn:hover {
	background: #1f80ff;
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(249, 115, 22, 0.35);
}


/* header section code  */
/* =====================================
PAGE HEADER / INNER BANNER
===================================== */
.page-header {
	position: relative;
	width: 100%;
	min-height: 280px;
	background-image: url('https://iisekolkata.com/wp-content/uploads/2025/12/2-1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

/* Dark overlay for text clarity */
.page-header-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(15, 23, 42, 0.75),
		rgba(15, 23, 42, 0.50)
	);
}



/* Inner content */
.page-header-inner {
	position: relative;
	z-index: 2;
	max-width: 700px;
}

/* Page title */
.page-title {
	color: #ffffff;
	margin-bottom: 12px;
}

/* Breadcrumb */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #1f80ff;
	background-color: #cce6ff34;
	border: 1px solid #cce6ff83;
	border-radius: 0px;
}

.breadcrumb a {
	color: #1ec2f1;
	text-decoration: none;
	transition: 0.3s;
}

.breadcrumb a:hover {
	color: #1f80ff;
}

.breadcrumb-sep {
	opacity: 0.6;
}

.breadcrumb .current {
	color: white;
	font-weight: 500;
}

/* =====================================
RESPONSIVE
===================================== */
@media (max-width: 768px) {
	.page-header {
		min-height: 220px;
	}

	.page-header-inner {
		max-width: 100%;
	}
}



/* about page design  */

.about-intro {
	padding: 80px 0;
	background: #f8fafc;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
}

@media (max-width: 600px) {
	.about-grid,
	.why-grid,
	.mission-grid,
	.pr-grid{
		display: flex !important;
		flex-wrap: wrap !important;
	}
}

.about-content h2 {
	color: #0F172A;
	margin-bottom: 15px;
}

.about-content p {
	color: #475569;
	margin-bottom: 15px;
}

.about-image img {
	width: 100%;
	border-radius: 16px;
}


.about-why {
	padding: 80px 0;
	background: #ffffff;
}

.section-head {
	margin-bottom: 50px;
}

.section-head h2 {
	color: #0F172A;
}

.section-head p {
	color: #64748b;
}

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

.why-card {
	background: #f1f5f9;
	padding: 35px;
	border-radius: 14px;
	transition: 0.3s;
}

.why-card:hover {
	transform: translateY(-6px);
	background: #e2e8f0;
}

.why-card h3 {
	color: #0F172A;
	margin-bottom: 10px;
}

.why-card p {
	color: #475569;
}


.about-mission {
	padding: 80px 0;
	background: linear-gradient(
		to right,
		rgba(15, 23, 42, 0.95),
		rgba(15, 23, 42, 0.75)
	);
}

.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: center;
}

.mission-image img {
	width: 100%;
	border-radius: 16px;
}

.mission-content h2 {
	color: #ffffff;
	margin-bottom: 15px;
}

.mission-content p {
	color: #cbd5f5;
	margin-bottom: 15px;
}


/* contact page design  */

.contact-hero {
	position: relative;
	min-height: 350px;
	background: url('https://test.iisekolkata.com/wp-content/uploads/2025/12/i-7.webp') center/cover no-repeat;
	display: flex;
	align-items: center;
}

.contact-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.85),
		rgba(0, 0, 0, 0.85)
	);
}



.contact-hero-content {
	position: relative;
	color: #fff !important;
	max-width: 700px;
}

.contact-cta {
	margin-top: 25px;
	display: flex;
	gap: 15px;
}

.btn-call,
.btn-whatsapp {
	padding: 12px 26px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

.btn-call {
	background: #2563eb;
	color: #fff;
}

.btn-call:hover {
	background: #1d4ed8;
}

.btn-whatsapp {
	background: #22c55e;
	color: #fff;
}

.btn-whatsapp:hover {
	background: #16a34a;
}

/* contact 2nd section code  */

.contact-info {
	padding: 80px 0;
	background: #f8fafc;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 40px;
}

.contact-details h2 {
	color: #0F172A;
	margin-bottom: 25px;
}

.contact-box {
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.contact-box h4 {
	margin-bottom: 8px;
	color: #0F172A;
}

.contact-box a {
	color: #2563eb;
	text-decoration: none;
}

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

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	border-radius: 14px;
}

/* 3 section code  */

.contact-final {
	padding: 70px 0;
	color: #fff;
}

.contact-final p {

	margin: 15px 0 25px;
}

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

	.contact-cta {
		flex-direction: column;
	}
}


/* animation css  */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}


/* animation demo  */
/* ===============================
DEMO SECTION
================================ */
.pd-animation-demo {
	padding: 90px 0;
	/*     background: #0F172A; */
}

.pd-demo-head {
	text-align: center;
	max-width: 650px;
	margin: 0 auto 60px;
}

.pd-demo-head h2 {
	/*     color: #fff; */
}

.pd-demo-head p {
	/*     color: #cbd5e1; */
}

/* Grid */
.pd-demo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

/* Card */
.pd-demo-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 18px;
	transition: 0.4s ease;
}

.pd-demo-card h4 {
	margin-top: 18px;
	color: #0F172A;
}

.pd-demo-card span {
	color: #475569;
	font-size: 14px;
}

/* Image Wrapper (Base) */
.pd-image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
}

/* Image */
.pd-image-wrap img {
	width: 100%;
	display: block;
	transition: transform 0.8s ease;
}

/* ===============================
EFFECT 1 – LIFT + LIGHT SWEEP
================================ */
.lift-sweep .pd-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255,255,255,0.35),
		transparent 70%
	);
	transform: translateX(-120%);
	transition: transform 0.9s ease;
}

.lift-sweep:hover {
	transform: translateY(-10px);
	box-shadow: 0 35px 80px rgba(15, 23, 42, 0.3);
}

.lift-sweep:hover img {
	transform: scale(1.08);
}

.lift-sweep:hover .pd-image-wrap::after {
	transform: translateX(120%);
}

/* ===============================
EFFECT 2 – 3D TILT
================================ */
.tilt-effect {
	perspective: 1000px;
}

.tilt-effect:hover img {
	transform: rotateX(6deg) rotateY(-6deg) scale(1.06);
}

/* ===============================
EFFECT 3 – GRADIENT OVERLAY
================================ */
.overlay-effect .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(15,23,42,0.9),
		transparent
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	color: #fff;
	opacity: 0;
	transition: 0.5s ease;
}

.overlay-effect:hover .overlay {
	opacity: 1;
}

/* ===============================
RESPONSIVE
================================ */
@media (max-width: 992px) {
	.pd-demo-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.pd-demo-grid {
		grid-template-columns: 1fr;
	}
}





/* image animatin code css  */

.pd-image-wrap .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(15, 23, 42, 0.9),
		transparent
	);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	color: #fff;
	opacity: 0;
	transition: 0.5s ease;
}

.pd-image-wrap:hover .overlay {
	opacity: 1;
}

/* 2 nd  */
.pd-image-wrap {
	perspective: 1000px;
}

.pd-image-wrap img {
	transition: transform 0.6s ease;
}

.pd-image-wrap:hover img {
	transform: rotateX(6deg) rotateY(-6deg) scale(1.05);
}



/* 3  */

.pd-image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.pd-image-wrap img {
	width: 100%;
	display: block;
	transition: transform 0.8s ease;
}

/* Light sweep */
.pd-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255, 255, 255, 0.35),
		transparent 70%
	);
	transform: translateX(-120%);
	transition: transform 0.9s ease;
}

.pd-image-wrap:hover {
	transform: translateY(-10px);
	box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25);
}

.pd-image-wrap:hover img {
	transform: scale(1.08);
}

.pd-image-wrap:hover::after {
	transform: translateX(120%);
}



/* ats tranning page design  */

/* Hover to White Image Section */
.lf-hoverwhite-section{
	padding:60px 0;
	background-color: #e8eeee;
}

.lf-hoverwhite-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
	gap:24px;
}

.lf-hoverwhite-card{
	position:relative;
	height:500px;
	/*     border-radius:18px; */
	overflow:hidden;
	background-size:cover;
	background-position:center;
	cursor:pointer;
	transition:transform .4s ease, box-shadow .4s ease;
}

.lf-hoverwhite-card::before{
	content:'';
	position:absolute;
	inset:0;
	background:rgba(11,94,215,0.55);
	transition:opacity .4s ease;
}

.lf-hoverwhite-overlay{
	position:absolute;
	inset:0;
	z-index:2;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	padding:24px;
	color:#fff;
	transition:all .4s ease;
}

.lf-hoverwhite-overlay h3{
	font-size:20px;
	margin-bottom:6px;
	color:#fff;

}

.lf-hoverwhite-overlay p{
	font-size:14px;
	opacity:.9;
	color:#fff;

}

.lf-hoverwhite-overlay img {
	opacity: 0;
	height: 150px;
	width: 150px;
	transition: opacity 0.4s ease;
	border-radius: 50%;
	box-shadow:0 22px 45px rgba(0,0,0,.18);
	padding: 15px;
	margin-bottom: 25px;
	

	
}

.lf-hoverwhite-card:hover .lf-hoverwhite-overlay img {
	opacity: 1;
}


/* HOVER EFFECT */
.lf-hoverwhite-card:hover{
	/*     transform:translateY(-6px); */
	box-shadow:0 22px 45px rgba(0,0,0,.18);
}

.lf-hoverwhite-card:hover::before{
	opacity:0;
}

.lf-hoverwhite-card:hover .lf-hoverwhite-overlay{
	background:#fff;
	color:#1F2933;
	justify-content: center;
		text-align: center;
	align-items:center;
}

.lf-hoverwhite-card:hover .lf-hoverwhite-overlay h3{
	color:#1a3c8d;
}

.lf-hoverwhite-card:hover .lf-hoverwhite-overlay p{
	color:#1a3c8d;
}

/* single page code css  */



.single-layout{
	display:grid;
	grid-template-columns: 1fr 340px;
	gap: 10px;
}

.single-post{
	background:#fff;
	/*     padding: 15px; */
	border-radius: 18px;
	/*     box-shadow:0 25px 60px rgba(15,23,42,.08); */
}

.post-title{
	margin-bottom:10px;
}

.post-meta{
	color:#64748b;
	margin-bottom:25px;
}

.post-thumbnail img{
	width:100%;
	/*     border-radius:16px; */
	margin-bottom:30px;
	box-shadow:0 20px 40px rgba(15,23,42,.2);
}

/* TOC */
.toc-box{
	background:#f1f5f9;
	padding:25px;
	border-radius:16px;
	margin-bottom:40px;
}

.toc-box h4{
	margin-bottom:15px;
}

.toc-box a{
	display:block;
	margin:6px 0;
	color:#334155;
	text-decoration:none;
}

.toc-box a:hover{
	color:#5b2df8;
}

/* SIDEBAR */
.single-sidebar{
	position:sticky;
	top:120px;
	height:fit-content;
}

.sidebar-box{
	background:#fff;
	padding:10px;
	border-radius:18px;
	box-shadow:0 20px 45px rgba(15,23,42,.08);
	margin-bottom:35px;
}

.latest-post{
	display:block;
	padding:10px 0;
	border-bottom:1px solid #e5e7eb;
	color:#334155;
	text-decoration:none;
}

.latest-post:last-child{
	border:none;
}

.latest-post:hover{
	color:#5b2df8;
}

/* ===============================
   BACK TO TOP BUTTON
================================ */
#backToTop{
    position:fixed;
    bottom:30px;
    right:30px;
    width:46px;
    height:46px;
    border-radius:50%;
    border:none;
    background:var(--footer-bg);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s ease;
    z-index:9999;
	outline: none;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#backToTop:hover{
    background: #1f80ff;
}

/* ===============================
   WHATSAPP FLOAT
================================ */
.whatsapp-float{
    position:fixed;
    right:30px;
    bottom:90px;
    width:47px;
    height:47px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s ease;
}

.whatsapp-float svg{
    width:28px;
    height:28px;
}

.whatsapp-float:hover{
    transform:scale(1.08);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

/* Mobile spacing fix */
@media(max-width:768px){
    #backToTop{
        right:20px;
        bottom:20px;
    }

    .whatsapp-float{
        right:20px;
        bottom:80px;
    }
}



/* courses section code  */

	.courses-hero{
		color:#fff;
		padding:70px 20px;
		text-align:center;
	}
	.courses-hero h2{
		font-size:40px;
		margin-bottom:10px;
	}
	.courses-hero p{
		font-size:18px;
		opacity:.9;
	}

	.courses-section{
		padding:60px 0;
	}
	.courses-grid{
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
		gap:25px;
	}
	.course-card{
		background:#fff;
		border-radius:16px;
		overflow:hidden;
		box-shadow:0 15px 40px rgba(0,0,0,.08);
		display:flex;
		flex-direction:column;
		transition:.3s;
	}
	.course-card:hover{
		transform:translateY(-6px);
	}
	.course-card img{
		width:100%;
		height:200px;
		object-fit:cover;
	}
	.course-content{
		padding:20px;
		flex:1;
	}
	.course-content h3{
		font-size:20px;
		margin-bottom:10px;
	}
	.course-content p{
		font-size:15px;
		color:#555;
	}
	.course-meta{
		margin-top:15px;
		font-size:14px;
		color:#777;
	}
	.course-footer{
		padding:20px;
		border-top:1px solid #eee;
		display:flex;
		justify-content:space-between;
		align-items:center;
	}
	.course-price{
		font-size:22px;
		font-weight:700;
		color:#0e479e;
	}
	.course-btn{
		background:#1ec2f1;
		color:#fff;
		padding:10px 18px;
		border-radius:6px;
		text-decoration:none;
		font-weight:600;
	}
	.course-btn:hover{
		background: #1f80ff;
		text-decoration:none;
		color:#fff;
		
	}


	.courses-highlights{
		padding:60px 0;
		background:#f7f9fc;
	}
	.highlight-grid{
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
		gap:25px;
	}
	.highlight-box{
		background:#fff;
		padding:25px;
		border-radius:14px;
		box-shadow:0 10px 30px rgba(0,0,0,.06);
	}
	.highlight-box h4{
		color:#0e479e;
		margin-bottom:10px;
	}


	.career-opportunities{
		padding:60px 0;
		color:#fff;
		background-color: transparent;
	}
	.career-grid{
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
		gap:20px;
	}
	.career-box{
		background:white;
		padding:20px;
		border-radius:10px;
		text-align:center;
		font-weight:600;
		color: black;
	}


	.who-should-join{
		padding:60px 0;
	}
	.join-grid{
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
		gap:15px;
		margin-top:30px;
	}
	.join-item{
		background:#fff;
		padding:15px 20px;
		border-left:4px solid #faaf24;                           
		box-shadow:0 6px 20px rgba(0,0,0,.05);
		font-weight:500;
	}


@media(max-width: 767px){
	.wb-header-inner .logo img{
		height: 50px !important;
		width: 170px !important;
	}
}



	.wb-header-inner .logo img{
		height: 70px !important;
		width: 190px !important;
	}

