/* =========================
GLOBAL COLORS
========================= */
:root {
	--primary-blue: #0B5ED7;
	--accent-orange: #F57C00;
	--dark-text: #1F2933;
	--light-text: #6B7280;
	--white: #FFFFFF;
	--footer-bg: #0F172A;
}

/* =========================
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: var(--accent-orange);
}


/* =========================
FOOTER COLORS
========================= */
.wb-footer {
	background-color: var(--footer-bg);
	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: #0b345d;
}

.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: #ea580c;
	transform: translateX(3px);
}

/* 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: 70vh;
	overflow: hidden;
	background: #000;
}

/* Sticky main heading */
.hero-heading {
	position: absolute;
	top: 25%;
	left: 6%;
	z-index: 5;
	max-width: 600px;
}

.hero-heading h1 {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

/* 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: 35%;
	left: 6%;
	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: #ff7a18;
	color: #fff;
	padding: 12px 26px;
	border-radius: 6px;
	font-weight: 500;
	transition: 0.3s;
}

.hero-btn:hover {
	background: #e86500;
}

/* 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;
	background: #f7fbff;
}

.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: #f97316; /* orange accent */
	font-weight: 700;
}

/* BUTTON */
.hr-btn {
	display: inline-block;
	background: #f97316;
	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: #e85d04;
	transform: translateY(-2px);
}

/* 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;
	}
}



/* 3rd section code home */

.swiper-slide {
	background-size: cover
}

.mySwiper2 {
	height: 580px;
	width: 455px;
	border-radius: 5px;
	position: absolute;
	margin-top: 10px
		object-fit: contain;
}

.mySwiper {
	height: 200px;
	width: 58%;
	padding: 10px 0;
	margin-right: 0
}

.mySwiper .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: .4
}

.proper-1 {
	background-color: #eed1c4;
	height: 185px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center
}

.proper-2,
.proper-3 {
	display: flex;
	justify-content: center;
	height: 185px;
	text-align: center
}

.proper-2 {
	background-color: #e9d6b4;
	align-items: center
}

.proper-3 {
	background-color: #5a433831;
	align-items: center
}

.proper,
.proper-4 {
	display: flex;
	justify-content: center
}

.proper-4 {
	background-color: #e69f7f;
	height: 185px;
	text-align: center;
	align-items: center
}

.proper {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	align-items: center
}

.details-btn {
	position: absolute;
	left: -100px;
	bottom: 20px;
	padding: 5px 10px;
	background-color: #faaf24;
	border: none;
	font-weight: 700;
	border-radius: 5px;
	transition: left .5s ease-in-out
}

.proper:hover .details-btn {
	left: 20px
}

.proper:hover {
	background-color: #d3632f;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 4px 4px 8px rgb(255 255 0 / .5), 4px 4px 15px rgb(211 99 47 / .7)
}

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / .5);
	justify-content: center;
	align-items: center;
	z-index: 5
}

.popup-content {
	background-color: #fff;
	padding: 20px;
	width: 500px;
	border-radius: 5px;
	text-align: center
}

.close-btn {
	margin-top: 10px;
	padding: 8px 15px;
	background-color: #d3632f;
	border: none;
	border-radius: 5px
}



/* ===============================
MEET YOUR MENTOR
================================ */
.mentor-section {
	padding: 80px 20px;
	background: var(--footer-bg);
}

.mentor-wrap {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}

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

.mentor-image img {
	width: 100%;
	border-radius: 24px;
	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;
}

/* 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: #e85d04;
	transform: translateY(-2px);
}

/* 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;
	overflow: hidden;
	font-family: Arial, sans-serif;
}

.container {
	max-width: 1200px;
	margin: auto;
}

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

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

/* SLIDER */
.testimonial-slider {
	position: relative;
	display: flex;
	align-items: center;
}

/* TRACK */
.testimonial-track {
	overflow: hidden;
	width: 100%;
}

/* GRID */
.testimonial-grid {
	display: flex;
	gap: 30px;
}

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

.testimonial-card:hover {
	transform: translateY(-6px);
	border-bottom: 4px solid #f97316;
}

/* .testimonial-card.featured {
	border-top: 4px solid #f97316;
} */

/* 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;
}

/* BUTTONS */
.ts-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: #f97316;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	z-index: 10;
	outline: none;
	border: none;
}

.ts-btn.prev {
	left: -10px;
}

.ts-btn.next {
	right: -10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.testimonial-card {
		min-width: 100%;
	}
}





.company-swiper {
	padding: 70px 20px;
	background: #fff;
	overflow: hidden;
}

.company-swiper-header {
	text-align: center;
	margin-bottom: 35px;
}

.company-swiper-wrapper {
	max-width: 1200px;
	margin: auto;
	position: relative;
	display: flex;
	align-items: center;
}

.company-swiper-track {
	overflow: hidden;
	width: 100%;
}

.company-swiper-inner {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
	cursor: grab;
}

.company-logo {
	min-width: calc(100% / 6 - 25px);
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7fbff;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.company-logo img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: 0.3s ease;
}

.company-logo:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* NAV */
.cs-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
/* 	background: #1ca5e9; */
/* 	color: #fff; */
	font-size: 22px;
	cursor: pointer;
	z-index: 5;
}

.cs-prev { left: -15px; }
.cs-next { right: -15px; }

/* DOTS */
.company-swiper-dots {
	display: flex;
	justify-content: center;
	margin-top: 25px;
	gap: 10px;
}

.company-swiper-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cfdbea;
	cursor: pointer;
}

.company-swiper-dots span.active {
	background: #1ca5e9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.company-logo { min-width: calc(100% / 3 - 20px); }
}

@media (max-width: 500px) {
	.company-logo { min-width: 100%; }
}



/* 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: #f97316;
	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: #fef5ec;
	color: #f97316;
}

.faq-item.active .faq-question::after {
	content: "–";
	background: #f97316;
	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: #f97316;
	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: #ea580c;
	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://ratechsystems.com/wp-content/uploads/2025/12/Recruitment-Hiring-2.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.95),
		rgba(15, 23, 42, 0.70)
	);
}



/* 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: #f97316;
	background-color: #cce6ff34;
	border: 1px solid #cce6ff83;
	border-radius: 0px;
}

.breadcrumb a {
	color: white;
	text-decoration: none;
	transition: 0.3s;
}

.breadcrumb a:hover {
	color: #f97316;
}

.breadcrumb-sep {
	opacity: 0.6;
}

.breadcrumb .current {
	color: #f97316;
	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://ratechsystems.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;
	}
}





/* personality development  */

.pd-hero-alt {
	padding: 90px 0;
	background: #f8fafc;
}

.pd-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
}

.pd-hero-text h1 {
	color: #0F172A;
	margin: 18px 0;
}

.pd-hero-text p {
	color: #475569;
	max-width: 520px;
	margin-bottom: 30px;
}

/* Small label */
.pd-tag {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
}

/* Image card */
.pd-hero-image img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}



/* 2nd section css code  */

.pd-importance {
	padding: 80px 0;
	background: #f8fafc;
}

.pd-importance h2 {
	color: #0F172A;
	margin-bottom: 15px;
}

.pd-intro {
	max-width: 800px;
	color: #475569;
	margin-bottom: 35px;
}

.pd-points {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 15px;
}

.pd-points div {
	background: #ffffff;
	padding: 15px 18px;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}


/* 3rd section code  */


.pd-modules {
	padding: 80px 0;
	background: #ffffff;
}

.pd-modules h2 {
	color: #0F172A;
	margin-bottom: 40px;
}

.pd-module-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.pd-module-card {
	padding: 25px;
	border-radius: 14px;
	background: #f8fafc;
	border-left: 5px solid #2563eb;
	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.pd-module-card h3 {
	margin-bottom: 12px;
	color: #0F172A;
}

.pd-module-card ul {
	padding-left: 18px;
}




/* 4rd section code  */

.pd-audience {
	padding: 80px 0;
	background: #f1f5f9;
}

.pd-audience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.pd-audience h2 {
	color: #0F172A;
	margin-bottom: 15px;
}

/* 4th section code  */

.pd-final-cta {
	padding: 80px 0;
	/*     background: #0F172A; */
	/*     color: #fff; */
	border-top: 2px solid var(--orange);
}

.pd-final-cta p {
	max-width: 700px;
	margin: 15px auto 30px;
	/*     color: #cbd5f5; */
}


@media (max-width: 768px) {
	.pd-hero {
		min-height: 360px;
	}
}


@media (max-width: 900px) {
	.pd-hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pd-hero-text p {
		margin-left: auto;
		margin-right: auto;
	}
}




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

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


/* tab code  */
.pd-tabs {
	padding: 80px 0;
	background: #ffffff;
}

.pd-tab-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	margin-bottom: 30px;
}

.pd-tab-buttons button {
	padding: 10px 22px;
	/*     border-radius: 30px; */
	/*     border: 1px solid #e2e8f0; */
	background: var(--footer-bg);
	cursor: pointer; 
	/*     transition: 0.3s;  */
	outline: none;
	border: none;
	color: white;
}

.pd-tab-buttons button.active,
.pd-tab-buttons button:hover {
	background: var(--orange);
	color: #fff;
}

.pd-tab-content {
	display: none;
	background: #f8fafc;
	padding: 25px;
	border-radius: 14px;
}

.pd-tab-content.active {
	display: block;
}


.pd-module-card:hover,
.pd-points div:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}



/* 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;

}

/* 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;
}

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

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


/* ai tranning programm  */


/* 2  */

.ai-section {
	padding: 80px 0;
	background: #f8fafc;
}

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

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

.ai-card {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(15,23,42,0.08);
	transition: 0.4s;
}

.ai-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(15,23,42,0.18);
}


/* permanent staffing section  */

.pr-overview {
	padding: 90px 0;
	background: #f8fafc;
}

.pr-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.pr-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(15,23,42,0.18);
	transition: 0.6s;
}

.pr-image img:hover {
	transform: perspective(1000px) rotateY(-6deg) scale(1.04);
}

/* 2nd section  */

.pr-benefits {
	padding: 80px 0;
	background: #ffffff;
}

.pr-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.pr-card {
	padding: 35px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 15px 45px rgba(15,23,42,0.08);
	transition: 0.4s;
}

.pr-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 65px rgba(15,23,42,0.2);
}

/* 3rd ssection  */

.pr-solutions {
	padding: 80px 0;
}

.solution-box {
	max-width: 900px;
	margin-top: 30px;
	padding: 35px;
	border-radius: 18px;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(8px);
}

/* 4rth section  */

.pr-process {
	padding: 80px 0;
	background: #f8fafc;
}

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

.process-card {
	padding: 35px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 15px 40px rgba(15,23,42,0.08);
	position: relative;
	transition: 0.4s;
}

.process-card span {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 48px;
	font-weight: 700;
	color: rgba(15,23,42,0.1);
}

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



/* 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;
}

/* CTA */
.sidebar-cta{
	padding:35px;
	border-radius:20px;
	background:linear-gradient(135deg,#0f172a,#1e293b);
	color: white !important;
	text-align:center;
}

.sidebar-cta p{
	margin:15px 0 25px;
	color: white !important;
}


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

/* ===============================
   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;
}

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

#backToTop:hover{
    background:var(--orange);
}

/* ===============================
   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;
    }
}

