@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

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

:root {
    --primary-purple: #6366f1;
    --primary-pink: #ec4899;
    --secondary-blue: #3b82f6;
    --accent-orange: #f97316;
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #fbfbfb;
    --text-secondary: #a1a1aa;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-3: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header (Navigation) */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-bg);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.logo {
    font-family: 'Ubuntu', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto; /* Push links to the right */
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary-purple);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Common Button Styles */
.btn-primary, .btn-secondary { /* Combined for common styles */
    font-family: 'Ubuntu', sans-serif;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary-purple);
    background: rgba(99, 102, 241, 0.1);
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp { /* Used for hero elements on index.html, employer.html */
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float { /* Used for phone mockup on index.html, team logo on aboutus.html */
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp { /* Used for aboutus.html team cards and general elements */
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate { /* Used for aboutus.html quote background */
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- index.html specific styles --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 5%;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    margin: 20px;
    height: calc(100% - 40px);
    background: #000;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.video-preview {
    width: 100%;
    height: 60%;
    background: var(--gradient-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
    background: white;
}

.play-icon::after {
    content: '▶';
    color: #000;
    font-size: 20px;
    margin-left: 3px;
}

.profile-info {
    padding: 20px;
    color: white;
}

.profile-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-role {
    color: #888;
    font-size: 0.9rem;
}

/* Problem Solution Section (New for index.html) */
.problem-solution, .jjobs-solution {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #111127 0%, #0f0f23 100%);
}

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

.problem-card, .solution-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.problem-icon, .solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    background: var(--gradient-1); /* Default gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Specific icon gradients for solution cards */
.solution-card:nth-child(2) .solution-icon { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.solution-card:nth-child(3) .solution-icon { background: var(--gradient-3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.solution-card:nth-child(4) .solution-icon { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.solution-card:nth-child(5) .solution-icon { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }


.problem-card h3, .solution-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.problem-card p, .solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section - index.html */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: var(--dark-bg);
}

.footer-content {
    color: var(--text-secondary);
}

/* New Sticky CTA Container */
.sticky-cta-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 1rem;
    z-index: 100;
    transform: translateY(100px); /* Initially hidden */
    opacity: 0;
    transition: all 0.3s ease;
}

.sticky-cta-container.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}


/* --- aboutus.html specific styles --- */
.ab-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.1;
    z-index: -1;
}

.ab-hero-content {
    z-index: 2;
    max-width: 800px;
}

.ab-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.ab-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.ab-cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.ab-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.ab-cta-button:hover::before {
    left: 100%;
}

.ab-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Quote Section */
.ab-quote {
    padding: 5rem 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.ab-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.ab-quote-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.4;
}

.ab-quote-author {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Timeline Section */
.ab-timeline {
  padding: 3rem 1rem;
  position: relative;
  background: var(--dark-bg);
}

.ab-timeline h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem; /* Adjusted for subtitle */
  color: var(--text-primary);
}

.ab-timeline .ab-section-subtitle { /* New subtitle style */
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ab-timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.ab-timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.3) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.ab-timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ab-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.ab-timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: var(--gradient-1);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--dark-bg);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.ab-timeline-item.ab-animate {
    opacity: 1;
    transform: translateY(0);
  }

.ab-timeline-date {
  background: var(--gradient-1);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 2rem;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.ab-timeline-date:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ab-timeline-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  max-width: 450px;
  color: var(--text-primary);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ab-timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.ab-timeline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Team Section */
.ab-team-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.ab-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.1;
    z-index: -1;
}

.ab-team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ab-team-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite; /* Using common float animation */
    box-shadow: var(--shadow);
}

.ab-team-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-team-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Grid */
.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ab-team-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.ab-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ab-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-purple);
}

.ab-team-card:hover::before {
    transform: scaleX(1);
}

.ab-team-member {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ab-member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.ab-member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ab-member-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.ab-member-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.ab-social-links { /* New style for LinkedIn links in aboutus */
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end; /* Align to the right */
}

.ab-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem; /* Icon size adjustment */
}

.ab-social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}



/* --- employer.html specific styles --- */
.emp-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.emp-section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.6;
}

/* --- Hero Section --- */
.emp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a3a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for header height */
}

.emp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.emp-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.emp-hero-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease forwards; /* Using common slideUp animation */
    opacity: 0;
}

.emp-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
    animation: slideUp 1s ease 0.3s forwards; /* Using common slideUp animation */
    opacity: 0;
}

.emp-hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: slideUp 1s ease 0.6s forwards; /* Using common slideUp animation */
    opacity: 0;
}

/* --- Stats Section --- */
.emp-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #111127 0%, #0f0f23 100%);
}

.emp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.emp-stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.emp-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.emp-stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.emp-stat-card:nth-child(2) .emp-stat-number {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-stat-card:nth-child(3) .emp-stat-number {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-stat-card:nth-child(4) .emp-stat-number {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- How It Works Section (F-pattern emphasis) --- */
.emp-how-it-works {
    background: linear-gradient(135deg, #111127 0%, #0f0f23 100%);
}

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

.emp-step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.emp-step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.emp-step-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* For gradient application */
}

.emp-step-card:nth-child(2) .emp-step-icon {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-step-card:nth-child(3) .emp-step-icon {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-step-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.emp-step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* --- Benefits Section --- */
.emp-benefits {
    background: var(--dark-bg);
}

.emp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.emp-benefit-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.emp-benefit-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

.emp-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.emp-benefit-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.emp-benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Pricing Section --- */
.emp-pricing {
    background: linear-gradient(135deg, #111127 0%, #0f0f23 100%);
}

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

.emp-price-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.emp-price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.3);
}

.emp-highlight-card {
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    transform: translateY(-15px); /* Lift slightly for emphasis */
}

.emp-highlight-card .btn-primary {
    background: var(--gradient-1); /* Highlight card button color */
}

.emp-plan-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.emp-plan-price {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.emp-plan-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.emp-plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1; /* Fill remaining space */
}

.emp-plan-features li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.emp-plan-features li i {
    color: #10b981; /* Check icon color */
    margin-right: 10px;
    font-size: 1.1rem;
}

.emp-pricing-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
    margin-top: 3rem;
    line-height: 1.5;
}

/* --- Contact Section --- */
.emp-contact {
    background: var(--dark-bg);
}

.emp-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.emp-contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.emp-contact-form h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-family: 'Ubuntu', sans-serif;
}

.emp-form-group {
    margin-bottom: 1.5rem;
}

.emp-form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

.emp-form-group input,
.emp-form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.emp-form-group input:focus,
.emp-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Message box for form submission feedback */
.emp-message-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Green for success */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    min-width: 250px;
    text-align: center;
}

.emp-message-box.emp-show {
    opacity: 1;
    visibility: visible;
}

.emp-message-box.emp-error {
    background-color: #f44336; /* Red for error */
}


.emp-contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-family: 'Ubuntu', sans-serif;
}

.emp-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.emp-contact-item i {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    color: var(--text-primary);
    font-size: 1.3rem; /* Icon size adjustment */
    flex-shrink: 0;
}

/* Apply gradient variables to each contact-item icon */
.emp-contact-item:nth-child(2) i {
    background: var(--gradient-2);
}

.emp-contact-item:nth-child(3) i {
    background: var(--gradient-3);
}

.emp-contact-item:nth-child(4) i {
    background: var(--gradient-1);
}

/* Social links */
.emp-social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 3rem;
}

.emp-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem; /* Icon size adjustment */
}

.emp-social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-visual {
        order: -1; /* Move visual above text on smaller screens */
    }
    .hero-text h1, .hero-text p {
        max-width: 100%;
    }
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .ab-hero-title {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }
    .ab-hero-subtitle {
        font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    }

    .emp-hero-title {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }
    .emp-hero-subtitle {
        font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    }
    .emp-section-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    .emp-section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    .emp-steps-grid, .emp-benefits-grid, .emp-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    .emp-price-card {
        padding: 30px;
    }
    .emp-plan-price {
        font-size: 3rem;
    }
    .emp-contact-content {
        gap: 3rem;
    }
    .emp-contact-form, .emp-contact-info {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .nav-links.active {
      display: flex;
      flex-direction: column;
      background: var(--dark-bg);
      position: absolute;
      top: 60px;
      right: 2rem;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px var(--gradient-2);
      width: calc(100% - 4rem); /* Adjust width for mobile */
      align-items: center;
    }

    .hamburger {
      display: flex;
    }

    /* Sticky CTA Container mobile */
    .sticky-cta-container {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    .sticky-cta-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Hero Section - index.html mobile adjustments */
    .hero {
        padding-top: 60px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 16px;
        text-align: center;
        gap: 24px;
        margin-top: 20%;
    }

    .hero-text {
        max-width: 100%;
        line-height: 1.6;
        padding: 0 10px;
        word-break: break-word;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    /* Problem Solution Section */
    .problem-solution, .jjobs-solution {
        padding: 80px 0;
    }
    .problem-solution-grid, .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .problem-card, .solution-card {
        padding: 30px 20px;
    }
    .problem-icon, .solution-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .problem-card h3, .solution-card h3 {
        font-size: 1.3rem;
    }
    .problem-card p, .solution-card p {
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }
    .testimonial-card {
        padding: 30px;
    }
    .testimonial-quote {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .testimonial-author {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0;
    }
    .cta-content h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    .footer-content p {
        font-size: 0.85rem;
    }


    /* --- aboutus.html mobile adjustments --- */
    .ab-hero {
        padding-top: 60px;
    }
    .ab-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    .ab-hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }
    .ab-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Quote Section */
    .ab-quote {
        padding: 3rem 0;
    }
    .ab-quote-text {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
    .ab-quote-author {
        font-size: 1.0rem;
    }

    /* Timeline Section mobile */
    .ab-timeline {
        padding: 2rem 0.75rem;
    }
    .ab-timeline h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .ab-timeline .ab-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .ab-timeline-container::before {
        left: 20px;
        transform: none;
        width: 3px;
    }
    .ab-timeline-item,
    .ab-timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.5rem;
        padding-left: 50px;
    }
    .ab-timeline-item::after {
        left: 20px;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        transform: translateX(-50%);
        border: 3px solid var(--dark-bg);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    }
    .ab-timeline-date {
        margin: 0 0 1rem 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 80px;
        align-self: flex-start;
    }
    .ab-timeline-content {
        width: 100%;
        max-width: none;
        padding: 1.5rem;
        margin: 0;
        border-radius: 12px;
    }
    .ab-timeline-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    .ab-timeline-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Team Section mobile */
    .ab-team-section {
        padding: 3rem 0;
    }
    .ab-team-title {
        font-size: 2.5rem;
    }
    .ab-team-logo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    .ab-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ab-team-card {
        padding: 1.5rem;
    }
    .ab-member-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .ab-member-info h3 {
        font-size: 1.1rem;
    }


    /* --- employer.html mobile adjustments --- */
    .emp-hero {
        padding-top: 60px;
    }

    .emp-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .emp-hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .emp-hero-cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .emp-section {
        padding: 80px 0;
    }

    .emp-section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .emp-section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .emp-steps-grid, .emp-benefits-grid, .emp-pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .emp-contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .emp-contact-form, .emp-contact-info {
        padding: 2rem;
    }

    .emp-contact-form h3, .emp-contact-info h3 {
        font-size: 1.6rem;
    }
    .emp-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .emp-hero-title {
        font-size: 2rem;
    }
    .emp-hero-subtitle {
        font-size: 0.95rem;
    }
    .emp-section {
        padding: 60px 0;
    }
    .emp-step-icon {
        font-size: 3rem;
    }
    .emp-step-title {
        font-size: 1.5rem;
    }
    .emp-step-description {
        font-size: 0.9rem;
    }
    .emp-benefit-icon {
        font-size: 2rem;
    }
    .emp-benefit-title {
        font-size: 1.4rem;
    }
    .emp-plan-name {
        font-size: 1.8rem;
    }
    .emp-plan-price {
        font-size: 3rem;
    }
    .emp-plan-features li {
        font-size: 0.9rem;
    }
    .emp-pricing-note {
        font-size: 0.85rem;
    }
    .emp-contact-form h3, .emp-contact-info h3 {
        font-size: 1.4rem;
    }
    .emp-contact-item {
        font-size: 0.95rem;
    }
    .emp-contact-item i, .emp-social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Smooth scrolling and better touch targets */
@media (hover: none) and (pointer: coarse) {
    .ab-timeline-date:hover,
    .ab-timeline-content:hover {
        transform: none;
    }

    .ab-timeline-date {
        padding: 0.6rem 1.2rem;
    }

    .ab-timeline-content {
        padding: 1.75rem;
    }
}
