/*
Theme Name: IISE Kolkata
Author: Your Name
Description: A testing theme for WordPress with Bootstrap and jQuery
Version: 1.0
Text Domain: safety
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, responsive, bootstrap
*/

/* Basic reset */


/* =========================
GLOBAL COLORS
========================= */
:root{
    --primary: #053b1d;
    --primary-dark: #1F6B43;
    --primary-light: #EAF8EF;

    --secondary: #1F2937;

    --heading: #14261C;
    --text: #4B5563;

    --background: #FFFFFF;
    --section: #F7FAF8;

    --border: #DDE7DF;
}

/* =========================
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: #14261c;
}

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;
}
.container{
	max-width: 1300px !important;	
}





/* -----------------------------------------
FOOTER
------------------------------------------ */

/* ===== FOOTER – REDESIGN ===== */
.wb-footer {
    background: #0b3d2e;
    color: #fff;
    padding: 50px 0 20px;
}
.footer-logo img {
    max-height: 60px;
    width: auto;
}
.footer-menu h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}
.footer-menu h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #1e7d4c;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact info – improved */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-info li i {
    color: #1e7d4c;
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}
.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.2s;
}
.contact-info a:hover {
    color: #fff;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
	margin: 5px;
}
.social-icon:hover {
    background: #1e7d4c;
    color: #fff;
    transform: translateY(-3px);
    border-color: #1e7d4c;
    box-shadow: 0 6px 15px rgba(30,125,76,0.3);
}
.border-white-10 {
    border-color: rgba(255,255,255,0.1) !important;
}
.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

@media (max-width: 768px) {
    .footer-top .col-md-3,
    .footer-top .col-md-2,
    .footer-top .col-md-5 {
        margin-bottom: 25px;
    }
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 8px;
    }
}


/* -----------------------------------------
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::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: #1e7d32;
}

.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
================================================ */

/* 🔥 NAYA ADDITION - Card ko flex container banayein */
.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;
	
	/* 🔥 NAYA - Flexbox for equal height */
	display: flex;
	flex-direction: column;
	height: 100%; /* Important - sab cards equal height mein */
}

.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;
	
	/* 🔥 NAYA - Content ko flex container banayein */
	display: flex;
	flex-direction: column;
	flex: 1; /* Bache hue space ko occupy karega */
}

/* 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: #09531a;
}

/* 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;
	
	/* 🔥 NAYA - Excerpt flexible ho jayega */
	flex: 1;
}

/* Read More Button - 🔥 MODIFIED */
.wb-readmore-btn {
	display: inline-block;
	padding: 9px 20px;
	background: #09531a;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	
	/* 🔥 NAYA - Button ko hamesha bottom par push karega */
	margin-top: auto;
	align-self: flex-start; /* Left align - aap chahe toh center ya right kar sakte hain */
}

.wb-readmore-btn:hover {
	background:#28a745;
	transform: translateX(3px);
}

/* 🔥 NAYA ADDITION - Blog Grid ko stretch karne ke liye */
.wb-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch; /* 🔥 Sab cards ko same height mein stretch karega */
}

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

/* ================================================
🔥 RESPONSIVE - Mobile/Tablet ke liye
================================================ */ 
@media (max-width: 992px) {
	.wb-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* home hero section  */

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

/* Sticky main heading */
.hero-heading {
	position: absolute;
	top: 73%;
/* 	left: 6%; */
	z-index: 5;
/* 	max-width: 1500px; */
	background-color: rgb(0 249 89 / 25%);
	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;
	}
}

/* ===============================
HERO STATS - WHITE DESIGN
================================ */

.hero-stats {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 15px;
}

/* Col ko flex center banayein */
.hero-stats .col-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stat Card - Clean White */
.stat-card {
    background: #ffffffdb;
    border-radius: 16px;
    padding: 18px 12px 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	height: 140px;
	width: 250px;
	margin-bottom: 50px;
}

/* Card Hover */
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(9, 83, 26, 0.12);
    border-color: rgba(9, 83, 26, 0.1);
}

/* Green Top Border Line */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #09531a, #28a745, #09531a, transparent);
    border-radius: 0 0 10px 10px;
    opacity: 0.6;
}

.stat-card:hover::before {
    opacity: 1;
    height: 4px;
}

/* Icon - Small Green Circle */
.stat-icon {
    width: 44px;
    height: 44px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 18px;
    color: #09531a;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: #09531a;
    color: #ffffff;
    transform: scale(1.05);
}

/* Number - Green Gradient */
.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #09531a;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-family: 'Poppins', sans-serif;
}

.stat-number .counter {
    display: inline-block;
    min-width: 40px;
    background: linear-gradient(135deg, #09531a, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number .stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
    -webkit-text-fill-color: #28a745;
}

/* Label */
.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    margin-top: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Divider Line - Green */
.stat-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #09531a, #28a745);
    border-radius: 10px;
    margin: 4px auto;
}

/* Description - Small */
.stat-desc {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-stats {
        bottom: -30px;
    }

    .stat-card {
        padding: 14px 10px;
        min-height: 120px;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-number .stat-suffix {
        font-size: 20px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 4px;
    }

    .stat-desc {
        font-size: 11px;
    }

    .stat-line {
        width: 25px;
        height: 2px;
        margin: 3px auto;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        bottom: -20px;
        padding: 0 8px;
    }

    .stat-card {
        padding: 10px 6px;
        min-height: 90px;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-number .stat-suffix {
        font-size: 14px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-bottom: 2px;
    }

    .stat-line {
        width: 18px;
        height: 2px;
        margin: 2px auto;
    }

    .stat-desc {
        display: none;
    }

    .stat-card::before {
        left: 15%;
        width: 70%;
        height: 3px;
    }

    .hero-stats .col-4 {
        padding: 0 4px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 8px 4px;
        min-height: 72px;
        border-radius: 8px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-number .stat-suffix {
        font-size: 11px;
    }

    .stat-label {
        font-size: 8px;
        letter-spacing: 0.3px;
    }

    .stat-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
        margin-bottom: 1px;
    }

    .stat-line {
        width: 14px;
        height: 1.5px;
        margin: 1px auto;
    }

    .stat-card::before {
        left: 10%;
        width: 80%;
        height: 2px;
    }
}

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

.hero-btn:hover {
	background: #28a745;
	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;
}

@media(min-width: 1024px){
	
	.hr-why-image img {

	height: 500px;
	width: 400px;
	float:inline-end;
}
}

/* 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:#09531a;
	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: #1e7d32;
	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: #14261c;
	margin-bottom: 18px;
}

.hr-about-content h3 {
	font-size: 28px;
	font-weight: 700;
	color: #14261c;
	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: #14261c;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 12px;
	cursor: pointer;
}

.mentor-badge:hover{
	background-color: #145c24;
	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: #1e7d32;
	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 - GOOGLE REVIEW STYLE
================================ */
.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;
    align-items: stretch;
}

/* CARD - Google Review Style */
.testimonial-card {
    background: #ffffff;
    padding: 28px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* FEATURED - Thoda highlight */
.testimonial-card.featured {
    border-top: 4px solid #09531a;
}

/* ===== GOOGLE REVIEW HEADER ===== */
.google-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-review-header .google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.google-review-header .reviewer-info {
    flex: 1;
}

.google-review-header .reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    line-height: 1.3;
}

.google-review-header .reviewer-name span {
    font-weight: 400;
    color: #5f6368;
    font-size: 13px;
}

.google-review-header .review-date {
    font-size: 12px;
    color: #80868b;
    white-space: nowrap;
}

/* ===== GOOGLE STARS ===== */
.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.google-stars .stars {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 1px;
}

.google-stars .rating-text {
    font-size: 13px;
    color: #5f6368;
    margin-left: 4px;
}

/* ===== REVIEW TEXT ===== */
.testimonial-text {
    color: #3c4043;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    font-weight: 400;
}

/* ===== GOOGLE REVIEW FOOTER ===== */
.google-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f3f4;
}

.google-review-footer .google-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #5f6368;
    font-weight: 500;
}

.google-review-footer .google-logo svg {
    width: 18px;
    height: 18px;
}

.google-review-footer .google-logo span {
    color: #1a73e8;
}

.google-review-footer .review-location {
    font-size: 12px;
    color: #80868b;
}

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

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 22px 20px 24px;
    }
    
    .google-review-header .review-date {
        font-size: 11px;
    }
}

/* faq sectiin code  */

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

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

.faq-header h2 {
	color: #14261c;
}

/* 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: #14261c;
	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: #1e7d32;
	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: #1e7d32;
}

.faq-item.active .faq-question::after {
	content: "–";
	background: #1e7d32;
	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: #09531a;
	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: #1e7d32;
	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('http://localhost/pro-safety/wp-content/uploads/2026/07/kee_safety_llc_cover-scaled.webp'); */
	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: rgb(14 66 37);
}

/* 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: #1e7d32;
    background-color: #ffffff;
    border: 1px solid #104427;
    border-radius: 30px;
}

.breadcrumb a {
	color: #09531a;
	text-decoration: none;
	transition: 0.3s;
	font-weight: 700;
}

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

.breadcrumb-sep {
	opacity: 0.6;
}

.breadcrumb .current {
	color: #145c24;
}

/* =====================================
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('http://localhost/pro-safety/wp-content/uploads/2026/07/kee_safety_llc_cover-scaled.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: #1e7d32;
	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: 30px 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: #1e7d32;
	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:350px;
	/*     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:#145c24;
}

.lf-hoverwhite-card:hover .lf-hoverwhite-overlay p{
	color:#145c24;
}


/* ===============================
HOVERWHITE SECTION - HOVER EFFECT
================================ */

/* Card Overlay - Default Green */
.lf-hoverwhite-overlay .bg-success {
    transition: all 0.4s ease;
    padding: 8px 12px;
}

/* Hover Effect - White Background with 0 Padding */
.lf-hoverwhite-card:hover .lf-hoverwhite-overlay .bg-success {
    background: #ffffff !important;
    padding: 0 !important;
}

/* Text Color Change on Hover */
.lf-hoverwhite-card:hover .lf-hoverwhite-overlay .bg-success h3,
.lf-hoverwhite-card:hover .lf-hoverwhite-overlay .bg-success p {
    color: #09531a !important;
}

/* Optional - Border/Shadow on Hover */
.lf-hoverwhite-card:hover .lf-hoverwhite-overlay .bg-success {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
/* 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:142px;
    right:30px;
    width:46px;
    height:46px;
    border-radius:50%;
    border:none;
    background: #35b119;
    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: #1e7d32;
}

/* ===============================
   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:15px;
	}
	.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:#145c24;
	}
	.course-btn{
		background:#09531a;
		color:#fff;
		padding:10px 18px;
		border-radius:6px;
		text-decoration:none;
		font-weight:600;
	}
	.course-btn:hover{
		background: #1e7d32;
		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:#145c24;
		margin-bottom:10px;
	}


	.career-opportunities{
		padding:60px 0;
		color:#fff;
		background-color: transparent;
	}
	.career-grid{
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(280px,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;
	}




.psa-form-card {
    max-width: 420px;
    margin: 40px auto;
    background: #cfe8d3;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.psa-form-tabs {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 18px;
}
.psa-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    color: #14261c;
    transition: 0.25s;
}
.psa-tab.active {
    background: #14261c;
    color: #fff;
}
.psa-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.psa-form input,
.psa-form select,
.psa-form textarea {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    background: #fff;
    color: #14261c;
    box-sizing: border-box;
}
.psa-form input::placeholder,
.psa-form textarea::placeholder {
    color: #8a9a91;
}
.psa-form input:focus,
.psa-form select:focus,
.psa-form textarea:focus {
    outline: 2px solid #1e7d32;
}
.psa-phone-field {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 0 16px;
}
.psa-phone-field .psa-flag {
    font-size: 15px;
    color: #14261c;
    white-space: nowrap;
    margin-right: 6px;
}
.psa-phone-field input {
    border: none;
    padding: 14px 0;
}
.psa-phone-field input:focus {
    outline: none;
}
.psa-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.psa-form textarea {
    min-height: 90px;
    resize: vertical;
}
.psa-submit-btn {
    background: #14261c;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.25s;
}
.psa-submit-btn:hover {
    background: #1e7d32;
}
#psa-form-message {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
#psa-form-message.success { color: #1e7d32; }
#psa-form-message.error { color: #c0392b; }

@media (max-width: 480px) {
    .psa-form-card { margin: 20px 15px; padding: 16px; }
    .psa-tab { font-size: 14px; padding: 10px 6px; }
}




/* home page cta  */

/*==================================
 CAREER CTA SECTION
==================================*/

.career-cta{
    padding:70px 20px;
    background:var(--section);
}

.career-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    padding:27px 38px;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    box-shadow:0 20px 60px rgba(31,107,67,.15);
}

/*==========================
 LEFT SIDE
==========================*/

.career-left{
    flex:1;
    color:#fff;
}

.career-tag{
    display:inline-block;
    padding:7px 16px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.18);
    border-radius:40px;
    font-size:13px;
    margin-bottom:18px;
    color:#fff;
}
.career-left h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:#fff;
    margin-bottom:16px;
}

.career-left p{
    font-size:16px;
    line-height:1.7;
    color:rgba(255,255,255,.90);
    max-width:520px;
    margin-bottom:28px;
}

/*==========================
 BUTTONS
==========================*/

.career-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#fff;
    color:var(--primary);
    padding:13px 24px;
    border-radius:10px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:var(--primary-light);
    color:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.7);
    color:#fff;
    padding:13px 24px;
    border-radius:10px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/*==========================
 FORM
==========================*/

.career-form{
    width:390px;
    background:rgba(255,255,255,.96);
    border-radius:18px;
    padding:28px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.career-form h3{
    font-size:24px;
    color:var(--heading);
    margin-bottom:18px;
    font-weight:700;
}

.career-form input,
.career-form select{
    width:100%;
    height:48px;
    border:1px solid var(--border);
    border-radius:10px;
    padding:0 15px;
    margin-bottom:12px;
    font-size:14px;
    color:var(--heading);
    background:#fff;
    transition:.3s;
    outline:none;
}

.career-form input:focus,
.career-form select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(46,139,87,.12);
}

.career-form button{
    width:100%;
    height:48px;
    border:none;
    border-radius:10px;
    background:var(--primary);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.career-form button:hover{
    background:var(--primary-dark);
}

.career-form small{
    display:block;
    margin-top:14px;
    text-align:center;
    font-size:12px;
    color:var(--text);
}

/*==========================
 TABLET
==========================*/

@media(max-width:991px){
.career-container{
    flex-direction:column;
    text-align:center;
    padding:20px;
    gap:35px;
}

.career-left p{
    margin-left:auto;
    margin-right:auto;
}

.career-buttons{
    justify-content:center;
}

.career-form{
    width:100%;
    max-width:480px;
}

}

/*==========================
 MOBILE
==========================*/

@media(max-width:767px){
.career-cta{
    padding:50px 15px;
}

.career-container{
    padding:22px;
    gap:30px;
    border-radius:18px;
}

.career-tag{
    font-size:12px;
}

.career-left h2{
    font-size:30px;
    line-height:1.25;
}

.career-left p{
    font-size:15px;
}

.career-buttons{
    flex-direction:column;
    width:100%;
}

.btn-primary,
.btn-outline{
    width:100%;
    text-align:center;
    padding:12px 18px;
}

.career-form{
    width:100%;
    padding:22px;
}

.career-form h3{
    font-size:20px;
}

.career-form input,
.career-form select,
.career-form button{
    height:46px;
    font-size:14px;
}

}

@media(max-width:480px){
.career-left h2{
    font-size:26px;
}

.career-container{
    padding:10px;
}
}


/*=========================================
  COMPANY / PLACEMENT SLIDER
=========================================*/

.company-section{
    padding:25px 0;
    background:var(--background);
    position:relative;

}

.company-title{
    text-align:center;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    color:var(--text);
    margin-bottom:10px;
    text-transform:uppercase;
}

/*=========================
 Slider
=========================*/

.company-slider{
    position:relative;
    overflow:hidden;
    padding:10px 0;
}

/* Left Fade */

.company-slider::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
    background:linear-gradient(
        to right,
        var(--background) 0%,
        rgba(255,255,255,0) 100%
    );
}

/* Right Fade */

.company-slider::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
    background:linear-gradient(
        to left,
        var(--background) 0%,
        rgba(255,255,255,0) 100%
    );
}

/*=========================
 Track
=========================*/

.company-track{
    display:flex;
    align-items:center;
    width:max-content;
    gap:18px;
    animation:companyScroll 28s linear infinite;
}

.company-slider:hover .company-track{
    animation-play-state:paused;
}

/*=========================
 Card
=========================*/

.company-card{
    min-width:220px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    font-size:22px;
    font-weight:700;
    color:var(--secondary);
    white-space:nowrap;
    transition:all .3s ease;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

/* Hover */

.company-card:hover{
    border-color:var(--primary);
    color:var(--primary);
    transform:scale(1.03);
    box-shadow:0 12px 28px rgba(46,139,87,.15);
}

/*=========================
 Animation
=========================*/

@keyframes companyScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/*=========================
 Tablet
=========================*/

@media(max-width:991px){
.company-section{
    padding:55px 0;
}

.company-title{
    font-size:14px;
    letter-spacing:2px;
}

.company-card{
    min-width:180px;
    height:62px;
    font-size:18px;
    border-radius:14px;
}

.company-slider::before,
.company-slider::after{
    width:70px;
}
}

/*=========================
 Mobile
=========================*/

@media(max-width:767px){
.company-section{
    padding:45px 0;
}

.company-title{
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:22px;
    padding:0 15px;
}

.company-track{
    gap:12px;
    animation-duration:20s;
}

.company-card{
    min-width:145px;
    height:52px;
    font-size:15px;
    border-radius:10px;
}

.company-slider::before,
.company-slider::after{
    width:40px;
}
}

/*=========================
 Small Mobile
=========================*/

@media(max-width:480px){
.company-card{
    min-width:130px;
    height:48px;
    font-size:14px;
}
.company-slider::before,
.company-slider::after{
    width:25px;
}

}


/* ----- Homepage Courses (Green) ----- */
.psa-home-courses {
    --green-dark: #0d3b2e;
    --green-mid: #1b6b4a;
    --green-light: #2f9e66;
    --mint-bg: #eef8f1;
    --cream: #fbfbf7;
    --ink: #16241d;
    --ink-dim: #5b6b62;
    --border: #dbe8e0;

    background: var(--cream);
    padding: 60px 0 70px;
    font-family: 'Inter', system-ui, sans-serif;
}

.psa-home-courses .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.psa-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.psa-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-mid);
    background: var(--mint-bg);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 8px;
}
.psa-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 6px;
}
.psa-section-header p {
    font-size: 18px;
    color: var(--ink-dim);
    margin: 0;
}

/* Grid */
.psa-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Card */
.psa-course-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
/*     padding: 24px 20px 26px; */
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.psa-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 59, 46, 0.08);
}

/* Badge */
.psa-course-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--green-light);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

/* Thumbnail */
.psa-course-thumb {
/*     margin-bottom: 16px; */
    border-radius: 12px;
    overflow: hidden;
    background: var(--mint-bg);
}
.psa-course-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.psa-course-thumb a:hover img {
    transform: scale(1.03);
}

/* Title */
.psa-course-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}
.psa-course-title a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.psa-course-title a:hover {
    color: var(--green-light);
}

/* Meta List */
.psa-course-meta {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex: 1;
}
.psa-course-meta li {
    justify-content: space-between;
	font-size: 13px;
	font-weight: normal;
}

.psa-course-meta li svg{
	height: 15px;
	width: 15px;
	margin: 5px;
	color: green;
}

.footer-course-price{
	display: flex;
	justify-content: space-between;
    align-items: center;
    border-top: 1px solid #c0c0c0;
	padding-top: 7px;
}

.footer-course-price h4 p{
	font-weight: bold;
	color: green;
	margin: 0px;
    font-size: 24px;
	margin: 5px;
}

.footer-course-price h4{
	margin-bottom: 0px;
	align-items: center;
	margin-bottom: 0px;
	display: flex;
}

.psa-course-meta li:last-child {
    border-bottom: none;
}
.psa-course-meta .meta-label {
    color: var(--ink-dim);
    font-weight: 500;
}
.psa-course-meta .meta-value {
    color: var(--ink);
    text-align: right;
}

/* Apply Button */
.psa-apply-btn {
    display: inline-block;
    background: var(--green-dark);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 9px 20px;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}
.psa-apply-btn:hover {
    background: var(--green-light);
    transform: scale(1.02);
    color: #fff;
}

/* View All */
.psa-view-all {
    text-align: center;
}
.psa-view-all-link {
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}
.psa-view-all-link:hover {
    border-bottom-color: var(--green-light);
}

/* No courses message */
.psa-no-courses {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--ink-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .psa-section-header h2 { font-size: 28px; }
    .psa-course-grid { gap: 20px; }
}
@media (max-width: 480px) {
    .psa-course-card { padding: 18px 14px; }
    .psa-course-title { font-size: 18px; }
}



.psa-enroll-section {
	background: #0d0d0d;
	padding: 70px 0;
	margin-top: 50px;
}
.psa-enroll-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

/* ---- Left Content ---- */
.psa-enroll-info {
	color: #fff;
}
.psa-enroll-tag {
	display: inline-block;
	background: #09531a;
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.psa-enroll-info h2 {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 18px;
	line-height: 1.3;
}
.psa-enroll-info p {
	color: rgba(255,255,255,0.7);
	font-size: 15.5px;
	line-height: 1.7;
	margin: 0 0 26px;
}
.psa-enroll-points {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.psa-enroll-points li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #fff;
	background: rgba(255,255,255,0.04);
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.08);
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.psa-enroll-points li:hover {
	background: rgba(40,167,69,0.12);
	border-color: #28a745;
	transform: translateX(6px);
}
.psa-point-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #09531a;
	color: #fff;
	font-size: 13px;
	flex-shrink: 0;
}
.psa-enroll-contact {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 20px;
}

/* ---- Right Form Wrap ---- */
.psa-enroll-form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	max-width: 420px;
}

.psa-enroll-form-wrap:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 60px rgba(40,167,69,0.25);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
	.psa-enroll-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.psa-enroll-info h2 {
		font-size: 26px;
	}
}




/* ===== LINK HOVER UNDERLINE ANIMATION (Global) ===== */
a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e7d4c;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover::after {
    width: 100%;
}

/* Exclude specific elements from underline animation */
a:has(img)::after,
a.wb-top-query::after,
a.hr-btn::after,
a.psa-submit-btn::after,
a.social-icon::after,
.wb-footer a::after,
.whatsapp-float::after,
.no-underline-animation::after {
    content: none !important;
}


/* ===============================
BLOCKQUOTE & LISTS - WORDPRESS DEFAULT
================================ */

/* Blockquote Style */
blockquote,
.wp-block-quote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f7fbff;
    border-left: 5px solid #09531a;
    border-radius: 0 8px 8px 0;
}

blockquote p,
.wp-block-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 10px;
}

blockquote cite,
.wp-block-quote cite {
    display: block;
    font-size: 14px;
    color: #6b7280;
    font-style: normal;
}

blockquote cite::before,
.wp-block-quote cite::before {
    content: "— ";
}

/* Large Quote Style (WordPress Gutenberg) */
.wp-block-quote.is-style-large {
    font-size: 20px;
    padding: 30px 40px;
    background: #e8f5e9;
}

/* Lists Style */
ul,
ol,
.wp-block-list {
    padding-left: 20px;
    margin: 20px 0;
}

ul li,
ol li,
.wp-block-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #34495e;
}

/* Nested Lists */
ul ul,
ol ul,
ul ol,
ol ol {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Custom Marker (Optional - to make it look nicer) */
ul li::marker {
    color: #09531a;
}

ol li::marker {
    color: #09531a;
    font-weight: 600;
}
