 @charset "utf-8";
/* CSS Document */

:root {
	--shrm-primary: #040457;
	--shrm-secondary: #1A43BF;
	--shrm-accent: #33ccff;
	--shrm-dark: #1a1a2e;
	--shrm-light: #f8f9fa;
	--shrm-gray: #4d5a68;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #333;
	overflow-x: hidden;
	background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.text-gradient {
	background: linear-gradient(90deg, #fff, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bg-gradient {
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	color: #fff;
	padding: 4px;
	font-size: 12px;
}

.btn-gradient {
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.btn-gradient:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--shrm-secondary), var(--shrm-primary));
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease;
}

.btn-gradient:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

.btn-gradient:hover:before {
	opacity: 1;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--shrm-primary);
	color: var(--shrm-primary);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-outline:hover {
	background: var(--shrm-primary);
	color: white;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

/* Header Styles - Transparent */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	transition: all 0.4s ease;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.navbar img {
	width: 100px;
}

.navbar-brand {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--shrm-primary);
	text-decoration: none;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-item {
	margin: 0 0.5rem;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
	position: relative;
}

.header-scrolled .nav-link {
	color: var(--shrm-dark);
}

.nav-link:hover {
	color: var(--shrm-accent);
}

.header-scrolled .nav-link:hover {
	color: var(--shrm-primary);
}

.nav-link:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--shrm-primary), var(--shrm-secondary));
	transition: width 0.3s ease;
}

.nav-link:hover:before {
	width: 100%;
}

.mobile-nav-toggle {
	display: none;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	color: white;
	cursor: pointer;
}

.header-scrolled .mobile-nav-toggle {
	color: var(--shrm-dark);
}

/* Hero Section - Keep original with background image */
/* Hero Section - Split Layout */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--shrm-primary) 0%, var(--shrm-secondary) 50%, transparent 50%), url("../images/Memberhip-MainBanner-01.jpg") center / cover no-repeat;
	;

}

.hero-container {
	display: grid;


	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 100px 0 50px;
}

.hero-content {
	color: white;
	padding-left: 2rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-tagline {
	font-size: 1.3rem;
	color: var(--shrm-accent);
	font-weight: 300;
}

.hero-price {
	margin-bottom: 2rem;
}

.hero-price .amount {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--shrm-accent);
}

.hero-price .period {
	display: block;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 0.5rem;
}

.btn-hero {
	background: white;
	color: var(--shrm-primary);
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	border: none;
}

.btn-hero:hover {
	transform: translateY(-5px);
	background: var(--shrm-accent);
	color: white;
}

/* HR Tools Section */
.hr-tools-section {
	padding: 60px 0;
	background: #ffffff;
}

.hr-tools-container {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.hr-tools-left {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hr-tools-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hr-tools-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	text-transform: uppercase;
	line-height: 1.2;
}

.hr-tools-desc {
	color: var(--shrm-gray);
	margin-bottom: 30px;
	line-height: 1.6;
}

.hr-tools-image {
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hr-tools-image img {
	width: 100%;
	height: auto;
	display: block;
}


/* Benefits Tool Section */
.tool-cardb {
	background: white;
	border-radius: 15px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.tool-cardb:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-iconb {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--shrm-primary);
	color: white;
	border-radius: 50%;
	margin-right: 15px;
	flex-shrink: 0;
}

.tool-contentb {
	flex: 1;
}

.tool-titleb {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.tool-descriptionb {
	color: var(--shrm-gray);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Benefits Section - Blue Background */
.benefits {
	padding: 50px 0;
	position: relative;
	overflow: hidden;
	background: var(--shrm-primary);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-heading {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.benefits .section-heading {
	color: white;
}

.section-heading:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--shrm-primary), var(--shrm-secondary));
	border-radius: 2px;
}

.benefits .section-heading:after {
	background: linear-gradient(90deg, white, var(--shrm-accent));
}

.section-headingt {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;

	line-height: 40px;
}

.section-subheading {
	font-size: 1.1rem;
	color: var(--shrm-gray);
	max-width: 700px;
	margin: 0 auto;
}

.benefits .section-subheading {
	color: rgba(255, 255, 255, 0.9);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	transition: all 0.5s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.benefit-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.15);
}

.benefit-card:before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	border-radius: 50%;
	opacity: 0;
	transition: all 0.5s ease;
}

.benefit-card:hover:before {
	transform: scale(10);
	opacity: 0.05;
}

.benefit-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
	color: white;
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
	background: white;
	color: var(--shrm-primary);
	transform: rotateY(360deg);
}

.benefit-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
	color: white;
}

.benefit-text {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

/* Tools Section */
.tools {
	padding: 60px 0;
	background: #f9f9f9;
	position: relative;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.tool-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.5s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tool-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tool-header {
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	color: white;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
}

.tool-header:before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	transform: rotate(30deg);
	pointer-events: none;
}

.tool-icon {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.tool-title {
	font-size: 1.4rem;
	font-weight: 700;
}

.tool-body {
	padding: 1.5rem;
	flex: 1;
}

.tool-features {
	list-style-type: none;
	padding: 0;
	margin: 0;
}


.tool-feature {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.tool-feature i {
	color: var(--shrm-primary);
	margin-right: 0.75rem;
}

/* Network Section */
.network {
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.network-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066cc' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


.network-row {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.network-col {
	flex: 1 0 calc(33.333% - 30px);
	margin: 15px;
	min-width: 280px;
}

.network-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.5s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.network-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.network-image {
	height: 200px;
	width: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.network-card:hover .network-image {
	transform: scale(1.1);
}

.network-content {
	padding: 1.5rem;
	flex: 1;
}

.network-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.network-text {
	color: var(--shrm-gray);
	margin-bottom: 1.5rem;
}

.network-stats {
	display: flex;
	justify-content: space-around;
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.network-stat {
	text-align: center;
}

.network-stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--shrm-primary);
}

.network-stat-label {
	font-size: 0.8rem;
	color: var(--shrm-gray);
}

/* Testimonials Section */
.testimonials {
	padding: 100px 0;
	background: #f9f9f9;
	position: relative;
	overflow: hidden;
}

.testimonials-slider {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.5s ease;
	width: calc(33.333% - 2rem);
	min-width: 280px;
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
	position: relative;
	padding-top: 1.5rem;
}

.testimonial-content:before {
	content: """;
 position: absolute;
	top: -20px;
	left: -10px;
	font-size: 5rem;
	color: var(--shrm-primary);
	opacity: 0.2;
	font-family: 'Georgia', serif;
}

.testimonial-text {
	font-style: italic;
	color: var(--shrm-gray);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 1rem;
	border: 3px solid var(--shrm-primary);
}

.testimonial-name {
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.testimonial-position {
	font-size: 0.8rem;
	color: var(--shrm-gray);
}

/* Membership Tabs Section */
.membership-tabs {
	padding: 60px 0;
	background: white;
}

.tabs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.tabs-header {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	background: #f9f9f9;
	border-radius: 50px;
	padding: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-button {
	flex: 1;
	padding: 15px 30px;
	background: transparent;
	border: none;
	border-radius: 45px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--shrm-gray);
}

.tab-button.active {
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	color: white;
}

.tab-content {
	display: none;
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.tab-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--shrm-primary);
}

.tab-description {
	color: var(--shrm-gray);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.tab-features {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.tab-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.tab-feature i {
	color: var(--shrm-primary);
	margin-right: 1rem;
	margin-top: 0.25rem;
}

.tab-pricing {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin: 2rem 0;
}

.tab-price-old {
	font-size: 1.5rem;
	text-decoration: line-through;
	color: #aaa;
}

.tab-price-current {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--shrm-primary);
}

.tab-cta {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

/* Pricing Section */
.pricing {
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.pricing-row {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.pricing-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
	width: 100%;
	max-width: 400px;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--shrm-secondary);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
	z-index: 2;
}

.pricing-header {
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	color: white;
	padding: 2.5rem 2rem;
	position: relative;
	overflow: hidden;
}

.pricing-header:before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	transform: rotate(30deg);
	pointer-events: none;
}

.pricing-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	position: relative;
}

.pricing-subtitle {
	opacity: 0.8;
	font-weight: 300;
	position: relative;
}

.pricing-body {
	padding: 2rem;
}

.pricing-price {
	text-align: center;
	margin-bottom: 2rem;
}

.pricing-old {
	font-size: 1.5rem;
	text-decoration: line-through;
	color: #aaa;
	display: block;
	margin-bottom: 0.5rem;
}

.pricing-current {
	font-size: 3rem;
	font-weight: 800;
	color: var(--shrm-primary);
}

.pricing-period {
	font-size: 1rem;
	color: var(--shrm-gray);
}

.pricing-features {
	list-style-type: none;
	padding: 0;
	margin: 0 0 2rem;
}

.pricing-feature {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.pricing-feature i {
	color: var(--shrm-primary);
	margin-right: 0.75rem;
}

.pricing-action {
	text-align: center;
}

/* Leadership Section */
.leadership {
	padding: 60px 0;
	background: #f9f9f9;
	position: relative;
}

.leadership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 1rem;
	margin-top: 3rem;
}

.leader-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.5s ease;
	position: relative;
}

.leader-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: all 0.5s ease;
}

.leader-card:hover .leader-image {
	transform: scale(1.1);
}

.leader-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 2rem 1rem 0.2rem 1rem;
	color: white;
}

.leader-name {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.leader-position {
	font-size: 0.7rem;
	opacity: 0.8;
	margin-bottom: 0.75rem;
}

.leader-social {
	display: flex;
	gap: 0.75rem;
}

.leader-social a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.leader-social a:hover {
	background: white;
	color: var(--shrm-primary);
}

/* CTA Section */
.cta {
	padding: 60px 0;
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	color: white;
	position: relative;
	overflow: hidden;
}

.cta:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"),
		linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
	opacity: 0.1;
}

.cta-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
}

.cta-text {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.btn-light {
	background: white;
	color: var(--shrm-primary);
	border: none;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
	background: #f0f0f0;
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
	background: var(--shrm-dark);
	color: white;
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-col h4 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-col h4:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--shrm-primary), var(--shrm-secondary));
}

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

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--shrm-primary);
	transform: translateY(-5px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
}

.fab.fa-twitter::before {
	content: "𝕏";
	font-size: 1.1em;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 0;
	border: none;
	border-radius: 20px;
	width: 70%;
	max-width: 830px;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease-out;
	display: flex;
	flex-direction: column;
}

@keyframes modalSlideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-header {
	background: linear-gradient(135deg, var(--shrm-primary), var(--shrm-secondary));
    color: white;
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.close {
	color: white;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
	background: none;
	border: none;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.modal-body {
	padding: 20px 20px;
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #f0f2f4;
}

.modal-body iframe {
	width: 100%;
	flex: 1;
	border: none;
	min-height: 500px;
}

/* --- Membership Calculator Styles (Updated) --- */
.discounts-section {
  background-color: #f5f8fb;
  padding: 60px 20px;
}
.discounts-section h2 {
  margin-bottom: 0px;
  line-height: 1.2;
}
.form-item {
  margin-bottom: 1rem;
}
.form-item label {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: .5rem;
  color: #333;
}
.form-select,
.form-control {
  width: 100%;
  max-width: 150px; /* uniform width for both */
  border-radius: 8px;
  padding: 6px 10px;
  border: 1px solid #ccc;
}
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: .3rem;
}
#savingsNumber {
  font-size: 4.2rem; /* Bigger */
  font-weight: 900;
  color: #7D8E34;
  margin: 1.5rem 0;
}
.membership-savings {
  display: none;
  margin-top: 1rem;
  text-align: left; /* left aligned results */
}
.membership-savings h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.membership-savings a.btn-shrm {
  margin-top: 1rem; /* spacing above CTA */
}

.btn-shrm {
  background-color: var(--shrm-primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-shrm:hover {
  background-color: #001a3d;
}
.btn-shrm-green {
  background-color: #7D8E34;
}
.btn-shrm-green:hover {
  background-color: #657428;
}
.card-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 550px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.navbar {
		padding: 1rem 0;
	}

	.mobile-nav-toggle {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 80%;
		max-width: 300px;
		background: white;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		padding: 2rem;
		height: calc(100vh - 80px);
		transition: all 0.4s ease;
		z-index: 999;
		border-radius: 10px 0 0 0;
	}

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

	.nav-link {
		color: var(--shrm-dark) !important;
	}

	.nav-item {
		margin: 0.75rem 0;
	}

	.hero {
		padding: 0px 0 0px;
		background: linear-gradient(135deg, var(--shrm-primary) 0%, var(--shrm-secondary) 50%, transparent 150%), url(../images/Memberhip-MainBanner-01.jpg) center / cover no-repeat;
		min-height: 80vh;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-stats {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero-stat {
		flex: 0 0 calc(50% - 2rem);
		margin: 1rem;
	}

	.hr-tools-container {
		flex-direction: column;
	}

	.hr-tools-left,
	.hr-tools-right {
		width: 100%;
	}

	.testimonial-card {
		width: calc(50% - 2rem);
	}

	.tabs-header {
		flex-direction: column;
		border-radius: 20px;
	}

	.tab-button {
		width: 100%;
		margin-bottom: 5px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.modal-content {
		width: 85%;
		max-width: 500px;
		margin: 8% auto;
	}

	.modal-body {
		padding: 15px 20px;
	}

	.modal-body iframe {
		min-height: 450px;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.section-heading {
		font-size: 2rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.hero-cta .btn-gradient,
	.hero-cta .btn-outline {
		width: 100%;
		margin-bottom: 1rem;
	}

	.testimonial-card {
		width: 100%;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		margin-bottom: 1rem;
	}

	.hr-tools-title {
		font-size: 2rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.network-col {
		flex: 1 0 100%;
	}

	.leadership-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

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

	.tab-cta a {
		width: 100%;
		text-align: center;
	}

	.modal-header {
		padding: 15px 20px;
	}

	.modal-header h2 {
		font-size: 1.3rem;
	}

	.modal-content {
    width: 95% !important;
    max-width: 95vw !important;
    margin: 2% auto !important;
    max-height: 95vh !important;
  }
  
  .modal-body iframe {
    min-height: 70vh !important;
  }
	.modal-body {
		padding: 15px 20px;
	}
}

/* Mobile Modal Fix - Add this to your existing CSS */
@media (max-width: 480px) {
  .modal-content {
    width: 100% !important;
    height: 85% !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .modal-body iframe {
    min-height: calc(100vh - 60px) !important;
  }
}

/* Animations */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.animate-float {
	animation: float 6s ease-in-out infinite;
}

.animate-pulse {
	animation: pulse 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--shrm-primary);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--shrm-secondary);
}