:root {
  --primary-forest: #ff9656;
  --secondary-sage: #333333;
  --accent-coral: #f8f9fa;
  --warm-white: #fafaf9;
  --soft-gray: #f5f5f4;
  --light-sage: #a8c4a0;
  --deep-charcoal: #2c2c2c;
  --warm-cream: #f7f6f2;
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Spacing & Layout */
  --container-max: 1200px;
  --section-padding: 120px 0;
  --grid-gap: 2rem;
  
  /* Animations */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--deep-charcoal);
  line-height: 1.6;
  background-color: var(--warm-white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(125, 148, 113, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 0.2rem 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-forest);
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: var(--deep-charcoal);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-forest);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-forest), var(--secondary-sage));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-secondary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--secondary-sage);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-gray) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(125, 148, 113, 0.08), transparent 50%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  max-width: 800px;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(125, 148, 113, 0.1);
  color: var(--primary-forest);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 1200;
  font-size: 1.2rem;
  margin-top:10px;
  margin-bottom: 2rem;
  border: 1px solid rgba(125, 148, 113, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--primary-forest);
  margin-bottom: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-wave {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-coral), var(--secondary-sage));
  border-radius: 2px;
  position: relative;
  animation: wave 3s ease-in-out infinite;
}

/* User Type Cards */
.user-types {
  padding: var(--section-padding);
  background: var(--warm-white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
}

.user-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(26, 79, 58, 0.08);
  transition: var(--transition-slow);
  border: 1px solid rgba(125, 148, 113, 0.1);
  position: relative;
  overflow: hidden;
}

.user-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-coral), var(--secondary-sage));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.user-card:hover::before {
  transform: translateX(0);
}

.user-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 79, 58, 0.12);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 2rem;
}

.card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--soft-gray), var(--warm-cream));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.card-image-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(125, 148, 113, 0.1), transparent);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.placeholder-text {
  font-family: var(--font-display);
  color: var(--secondary-sage);
  font-weight: 500;
  z-index: 2;
  relative;
}

.card-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-forest);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.card-button:hover::before {
  left: 100%;
}

.card-button:hover {
  background: var(--secondary-sage);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: var(--soft-gray);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0 C400,80 800,40 1200,60 L1200,120 L0,120 Z' fill='%23f5f5f4'/%3E%3C/svg%3E") no-repeat center top;
  background-size: cover;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--primary-forest);
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-coral), var(--secondary-sage));
  border-radius: 2px;
}

.features-grid {
  display: grid;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.feature-card.reverse {
  direction: rtl;
}

.feature-card.reverse > * {
  direction: ltr;
}

.feature-image-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, white, var(--warm-cream));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(26, 79, 58, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 149, 106, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.5rem;
}

.feature-description {
  font-size: 1.1rem;
  color: var(--deep-charcoal);
  line-height: 1.7;
}

/* Certified Workplaces */
.certified-workplaces {
  padding: var(--section-padding);
  background: white;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-sage);
  margin-bottom: 4rem;
  font-weight: 400;
}

.logos-carousel {
  overflow: hidden;
  padding: 2rem 0;
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logos-track {
  display: flex;
  gap: 4rem;
  animation: logoScroll 30s linear infinite;
}

.logo-item {
  flex-shrink: 0;
}

.company-logo-placeholder {
  width: 120px;
  height: 80px;
  background: var(--soft-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-sage);
  font-weight: 600;
  transition: var(--transition);
}

.company-logo-placeholder:hover {
  background: var(--light-sage);
  color: white;
  transform: scale(1.05);
}

/* Statistics */
.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-forest), var(--secondary-sage));
  text-align: center;
}

.stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: var(--warm-cream);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--primary-forest);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.cta-image-placeholder {
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, var(--soft-gray), white);
  border-radius: 20px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(26, 79, 58, 0.1);
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, #ff9656, #333);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(232, 149, 106, 0.3);
  margin-bottom: 2rem;
  cursor:pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 149, 106, 0.4);
}

.cta-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-sage);
  font-style: italic;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: var(--primary-forest);
  color: white;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Animations */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wave {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.2); }
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(180deg) translate(10px, -10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .feature-card.reverse {
    direction: ltr;
  }
  
  .nav-menu {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 2rem;
    display: none;
  }
  
  .hero {
    text-align: center;
    padding-top: 100px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .user-card {
    padding: 2rem;
  }
  
  .feature-card {
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .feature-image-placeholder {
    height: 200px;
  }
  
  .logos-track {
    gap: 2rem;
  }
  
  .company-logo-placeholder {
    width: 100px;
    height: 60px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .user-card {
    padding: 1.5rem;
  }
  
  .card-image-placeholder {
    height: 150px;
  }
  
  .feature-image-placeholder {
    height: 180px;
  }
}

/* Footer */
footer {
	background-color: var(--dark-gray);
	color: var(--white);
	padding: 30px 0 0;
	position: relative;
}

.footer-wave {
position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E") no-repeat;
	background-size: cover;
	z-index: 1;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-logo {
	margin-bottom: 20px;
	display: inline-block;
}

.footer-logo img {
	height: 40px;
}

.footer-about {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	align-items: center;
}

.footer-social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1rem;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background-color: var(--brand-orange);
	transform: translateY(-5px);
}

.footer-title {
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: var(--white);
	position: relative;
	padding-bottom: 10px;
}

.footer-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-item {
	margin-bottom: 10px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-link:hover {
	color: var(--brand-orange);
	transform: translateX(5px);
}

.footer-newsletter {
	margin-top: 20px;
}

.footer-newsletter-input {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 10px;
	margin-bottom: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.footer-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
	outline: none;
	background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter-btn {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
	color: var(--white);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
	box-shadow: 0 10px 30px rgba(255, 150, 86, 0.3);
	transform: translateY(-3px);
}

.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-slogan {
	display: inline-block;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0 0 20px;
}

.footer-slogan .part1, .footer-slogan .part3 {
	color: var(--white);
}

.footer-slogan .part2 {
	color: var(--brand-orange);
}

	/* Logo carousel styling */
	.logos-carousel {
		overflow: hidden;
		margin: 2rem 0;
		position: relative;
		padding: 1rem 0;
	}

	.logos-track {
		display: flex;
		animation: scroll-logos 20s linear infinite;
		width: max-content;
	}

	/* Ensure font size overrides with multiple selectors */
	.certified-workplaces .company-name,
	.logos-carousel .company-name,
	.logo-item .company-name {
		font-size: 14px !important;
		font-weight: 500 !important;
		color: #333 !important;
		text-align: center !important;
		line-height: 1.3 !important;
		max-width: 120px !important;
		word-wrap: break-word !important;
		margin-top: 4px !important;
	}

	.certified-workplaces .company-cert-level,
	.logos-carousel .company-cert-level,
	.logo-item .company-cert-level {
		font-size: 12px !important;
		color: #666 !important;
		font-weight: 400 !important;
		margin-top: 2px !important;
	}

	.logo-item {
		flex-shrink: 0;
		margin: 0 2rem;
		position: relative;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.company-logo-placeholder {
		width: 120px;
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		background: white;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		cursor: pointer;
		margin-bottom: 8px;
		position: relative;
	}

	.company-logo-placeholder:hover {
		transform: translateY(-5px);
		box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	}

	.company-logo-placeholder img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		border-radius: 4px;
	}

	.level-badge {
		position: absolute;
		top: -5px;
		right: -5px;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: white;
		box-shadow: 0 2px 8px rgba(0,0,0,0.15);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10;
		border: 2px solid #fff;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.level-badge:hover {
		transform: scale(1.1);
		box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	}

	.level-badge img {
		width: 20px;
		height: 20px;
		object-fit: contain;
		border-radius: 50%;
	}

	.level-badge .badge-fallback {
		font-size: 10px;
		font-weight: bold;
		color: #666;
		text-align: center;
		line-height: 1;
	}

	@keyframes scroll-logos {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}

	/* Tooltip styles */
	.logo-tooltip {
		position: absolute;
		bottom: calc(100% + 20px);
		left: 50%;
		transform: translateX(-50%);
		background: #333;
		color: white;
		padding: 8px 12px;
		border-radius: 4px;
		font-size: 14px;
		white-space: nowrap;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0.3s;
		z-index: 1000;
		margin-bottom: 5px;
	}

	.logo-tooltip::after {
		content: '';
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		border: 5px solid transparent;
		border-top-color: #333;
	}

	.logo-item:hover .logo-tooltip {
		opacity: 1;
		visibility: visible;
	}

	/* Responsive design */
	@media (max-width: 768px) {
		.logo-item {
			margin: 0 1rem;
		}
		
		.company-logo-placeholder {
			width: 100px;
			height: 60px;
		}

		.level-badge {
			width: 20px;
			height: 20px;
			top: -3px;
			right: -3px;
		}

		.level-badge img {
			width: 16px;
			height: 16px;
		}

		.certified-workplaces .company-name,
		.logos-carousel .company-name,
		.logo-item .company-name {
			font-size: 13px !important;
			max-width: 100px !important;
		}

		.certified-workplaces .company-cert-level,
		.logos-carousel .company-cert-level,
		.logo-item .company-cert-level {
			font-size: 11px !important;
		}
	}
	
	/* Final font size overrides - ensuring these styles take precedence */
	div.company-name {
		font-size: 14px !important;
		font-weight: 500 !important;
		color: #333 !important;
		text-align: center !important;
		line-height: 1.3 !important;
		max-width: 120px !important;
		word-wrap: break-word !important;
		margin-top: 4px !important;
	}

	div.company-cert-level {
		font-size: 12px !important;
		color: #666 !important;
		font-weight: 400 !important;
		margin-top: 2px !important;
	}

	@media (max-width: 768px) {
		div.company-name {
			font-size: 13px !important;
		}

		div.company-cert-level {
			font-size: 11px !important;
		}
	}
	
/* Navigation Styles */
.nav-link {
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link.active {
    color: #ff9656;
    font-weight: 600;
}

.nav-link:hover {
    color: olive;
}

/* Page Section Management */
.page-section {
    display: none !important;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    min-height: 80vh;
}

.page-section.active {
    display: block !important;
    opacity: 1;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Items */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Spacing */
.community-features,
.companies-directory,
.employer-benefits,
.about-content {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Footer Navigation */
.footer-nav-link {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #667eea !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.page-section:not(.active) {
    pointer-events: none;
}

.page-section.active {
    pointer-events: auto;
}

/* Additional styling to match existing design */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

#home {
    padding: 0;
}

.hero-badge {
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-card {
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.user-card:nth-child(1) { animation-delay: 0.1s; }
.user-card:nth-child(2) { animation-delay: 0.2s; }
.user-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    #wawHamburgerBtn {
        display: block !important;
    }

    #wawNavMenu {
        display: none;
        width: 100%;
    }

    #wawNavMenu.waw-open {
        display: block;
    }
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.page-section {
    display: none;  /* hide all by default */
}

.page-section.active {
    display: block; /* show the active section */
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e2e8f0;
    border-top: 6px solid #ff9656;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}