/* ==========================================================================
   ULTRA-PREMIUM EXECUTIVE DESIGN SYSTEM & RESPONSIVE ENGINE
   Lancashire Care Services (LCS) Recruitment Portal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Palette - Executive Deep Emerald & Amber Gold */
  --primary: #022c22;          /* Deep Imperial Emerald */
  --primary-dark: #011d16;     /* Dark Midnight Emerald */
  --primary-medium: #065f46;   /* Rich Royal Emerald */
  --primary-light: #10b981;    /* Vivid Emerald Glow */
  --primary-soft: #ecfdf5;     /* Crisp Mint Tint */
  --primary-border: rgba(16, 185, 129, 0.25);

  --accent-gold: #d97706;      /* Executive Warm Gold */
  --accent-gold-light: #f59e0b;/* Bright Amber Gold */
  --accent-soft: #fffbeb;      /* Subtle Warm Gold Tint */

  --dark-navy: #090d16;        /* Obsidian Midnight */
  --dark: #0f172a;
  --gray: #64748b;
  
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* Glassmorphism & High-End Shadows */
  --glass-nav: rgba(255, 255, 255, 0.92);
  --glass-card: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 6px 16px -2px rgba(9, 13, 22, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 32px -4px rgba(9, 13, 22, 0.09), 0 6px 12px -3px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px -12px rgba(2, 44, 34, 0.18), 0 12px 24px -6px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--slate-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-navy);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1010;
}
.top-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.top-bar-info { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.top-bar-info span { display: flex; align-items: center; gap: 5px; font-weight: 500; }
.top-bar-info i { color: var(--accent-gold-light); font-size: 0.68rem; }
.top-bar-links { display: flex; gap: 12px; align-items: center; flex-shrink: 0; justify-content: center; }
.top-bar-links a {
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.7rem;
  transition: color var(--transition-fast);
}
.top-bar-links a:hover { color: var(--accent-gold-light); }

/* ==========================================================================
   LUXURY NAVBAR & MOBILE DRAWER
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 1002;
  margin-left: 10px;
}
.logo img { height: 32px; width: auto; filter: drop-shadow(0 2px 4px rgba(2,44,34,0.12)); }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.logo-text span { color: var(--accent-gold); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.83rem;
  transition: all 0.25s;
  position: relative;
  padding: 2px 0;
  display: inline-block;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-medium), var(--accent-gold));
  transition: width 0.3s var(--transition-smooth);
  border-radius: 4px;
}
.nav-links a:hover { color: var(--primary-medium); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary-medium); font-weight: 700; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: var(--white) !important;
  padding: 6px 16px !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  transition: var(--transition-smooth);
  box-shadow: 0 3px 10px rgba(2, 44, 34, 0.2);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(2, 44, 34, 0.3);
  background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
}
.nav-cta::after { display: none !important; }

/* Hamburger Button */
.hamburger {
  display: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  z-index: 1002;
  transition: all 0.25s ease;
  margin-right: 4px;
}
.hamburger:hover, .hamburger.active {
  background: var(--primary-soft);
  border-color: var(--primary-light);
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 85% 15%, #064e3b 0%, #022c22 50%, #011710 100%);
  position: relative;
  overflow: hidden;
  padding: 28px 0 32px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.16) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  padding-left: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fef08a;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 12px;
}
.hero h1 span {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
  color: var(--white);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
}
.stat h3 { font-size: 1.7rem; font-weight: 800; color: #fef08a; font-family: 'Outfit', sans-serif; }
.stat p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.78); margin-top: 2px; }

.hero-visual { position: relative; display: flex; justify-content: center; width: 100%; }
.hero-frame {
  width: 100%;
  max-width: 380px;
  height: 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.22);
  position: relative;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.9);
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}
.floating-badge.badge-top { top: 6%; right: -8px; }
.floating-badge.badge-bottom { bottom: 5%; left: -8px; animation-delay: 2s; }
.floating-badge .badge-icon {
  width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.floating-badge .badge-icon.green { background: var(--primary-soft); color: var(--primary-medium); }
.floating-badge .badge-icon.gold { background: var(--accent-soft); color: var(--accent-gold); }
.floating-badge h4 { font-size: 0.82rem; font-weight: 800; color: var(--dark-navy); }
.floating-badge p { font-size: 0.72rem; color: var(--slate-500); }

/* Standard Page Hero */
.page-hero {
  background: radial-gradient(circle at 80% 20%, #065f46 0%, #064e3b 40%, #022c22 100%);
  padding: 48px 0 28px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 10px; color: var(--white); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto; line-height: 1.6; }

/* ==========================================================================
   SECTIONS, CARDS & GRIDS
   ========================================================================== */
section { padding: 32px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary-medium);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 24px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 8px; color: var(--dark-navy); }
.section-header h2 span { color: var(--primary-medium); }
.section-header p { color: var(--slate-600); font-size: 0.96rem; line-height: 1.55; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; }
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  max-height: 340px;
  width: 100%;
  margin: 0 auto;
}
.about-image img { width: 100%; height: 340px; object-fit: cover; }
.about-image-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--primary); color: var(--white);
  padding: 10px 14px; border-radius: var(--radius-md); text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.2);
}
.about-image-badge h3 { font-size: 1.5rem; color: #fef08a; font-weight: 800; }
.about-image-badge p { font-size: 0.72rem; color: rgba(255,255,255,0.85); }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.about-feature { display: flex; gap: 10px; align-items: flex-start; }
.about-feature .fi {
  width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
  background: var(--primary-soft); color: var(--primary-medium);
  display: flex; align-items: center; justify-content: center; font-size: 0.92rem;
}
.about-feature h4 { font-size: 0.92rem; font-weight: 700; color: var(--dark-navy); margin-bottom: 2px; }
.about-feature p { font-size: 0.8rem; color: var(--slate-600); }

/* Services Section */
.services { background: var(--slate-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px 20px;
  box-shadow: var(--shadow-md); transition: var(--transition-smooth); position: relative;
  overflow: hidden; border: 1px solid var(--slate-200); display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary-medium), var(--accent-gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--transition-smooth);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--slate-300); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 14px;
}
.service-icon.green { background: var(--primary-soft); color: var(--primary-medium); }
.service-icon.gold, .service-icon.orange { background: var(--accent-soft); color: var(--accent-gold); }
.service-icon.blue { background: #e0f2fe; color: #0284c7; }
.service-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.service-card p { color: var(--slate-600); font-size: 0.88rem; line-height: 1.55; flex-grow: 1; }
.learn-more {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700;
  color: var(--primary-medium); font-size: 0.84rem; margin-top: 14px; transition: gap 0.2s;
}
.learn-more:hover { gap: 10px; color: var(--accent-gold); }

/* Why Us Section */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card {
  background: var(--slate-50); border-radius: var(--radius-lg); padding: 20px 16px;
  border: 1px solid var(--slate-200); transition: var(--transition-smooth); text-align: center;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); border-color: var(--primary-light); }
.why-card .icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--primary-soft);
  color: var(--primary-medium); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin: 0 auto 14px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.why-card p { font-size: 0.84rem; color: var(--slate-600); line-height: 1.55; }

/* Training Section */
.training { background: var(--slate-50); }
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.training-cards { display: flex; flex-direction: column; gap: 12px; }
.training-item {
  display: flex; align-items: center; gap: 16px; background: var(--white);
  padding: 16px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200); transition: var(--transition-fast);
}
.training-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.training-item .num {
  font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900;
  color: var(--primary-medium); min-width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft); display: flex; align-items: center; justify-content: center;
}
.training-item h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 2px; }
.training-item p { font-size: 0.82rem; color: var(--slate-600); }

/* Testimonials Section */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--slate-50); border-radius: var(--radius-lg); padding: 24px 20px;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm); display: flex;
  flex-direction: column; justify-content: space-between; transition: var(--transition-smooth);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
.testimonial-card .stars { color: var(--accent-gold-light); margin-bottom: 12px; font-size: 0.88rem; }
.testimonial-card blockquote { font-style: italic; color: var(--slate-700); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
  color: var(--accent-gold-light); font-weight: 800; display: flex; align-items: center;
  justify-content: center; font-size: 0.88rem; font-family: 'Outfit', sans-serif;
}
.testimonial-author h4 { font-size: 0.88rem; font-weight: 800; }
.testimonial-author p { font-size: 0.78rem; color: var(--slate-500); }

/* Call To Action Section */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: var(--white); text-align: center; padding: 32px 0; position: relative; overflow: hidden;
}
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 18px; }

/* Contact Section */
.contact { background: var(--slate-50); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; gap: 14px; align-items: center; background: var(--white);
  padding: 14px 18px; border-radius: var(--radius-md); border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
}
.contact-item .ci-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-md);
  background: var(--primary-soft); color: var(--primary-medium); display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.contact-item h4 { font-size: 0.92rem; font-weight: 800; margin-bottom: 2px; }
.contact-item p { font-size: 0.84rem; color: var(--slate-600); }

.contact-form {
  background: var(--white); border-radius: var(--radius-xl); padding: 28px 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--slate-200);
}
.contact-form h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; color: var(--dark-navy); }

/* Team Section */
.team-section { padding: 32px 0; background: var(--slate-50); }
.team-cards { display: flex; flex-direction: column; gap: 24px; max-width: 1040px; margin: 0 auto; }
.team-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start;
  background: var(--white); border-radius: var(--radius-xl); padding: 24px;
  box-shadow: var(--shadow-md); border: 1px solid var(--slate-200);
  transition: var(--transition-smooth);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary-border); }
.team-avatar {
  width: 100%; height: 240px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-medium));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.team-avatar i { font-size: 64px; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.team-avatar .initials {
  position: absolute; font-size: 4.5rem; font-weight: 800;
  color: rgba(255,255,255,0.12); font-family: 'Outfit', sans-serif;
}
.team-avatar .name-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(2, 44, 34, 0.9));
  padding: 14px; color: var(--white); text-align: center;
}
.team-info h3 { font-size: 1.35rem; font-weight: 800; color: var(--dark-navy); margin-bottom: 2px; }
.team-role {
  display: inline-block; color: var(--primary-medium); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.team-bio { color: var(--slate-600); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.team-contact { display: flex; flex-wrap: wrap; gap: 10px; }
.team-contact a {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem;
  color: var(--slate-700); background: var(--slate-100); padding: 6px 12px;
  border-radius: var(--radius-full); font-weight: 600; transition: var(--transition-fast);
}
.team-contact a:hover { background: var(--primary-soft); color: var(--primary-medium); }

/* Registration / Jobs Section */
.register-section { padding: 32px 0; background: var(--slate-50); }
.register-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 44px 36px;
  box-shadow: var(--shadow-xl); border: 1px solid var(--slate-200);
}
.form-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; color: var(--dark-navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--slate-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--slate-200); border-radius: var(--radius-md);
  font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif; transition: var(--transition-fast);
  outline: none; background: var(--slate-50); color: var(--slate-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-medium); background: var(--white); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}
.file-upload-box {
  border: 2px dashed var(--slate-300); border-radius: var(--radius-md); padding: 24px;
  text-align: center; cursor: pointer; transition: var(--transition-fast); background: var(--slate-50);
}
.file-upload-box:hover { border-color: var(--primary-medium); background: var(--primary-soft); }
.file-upload-box i { font-size: 2rem; color: var(--primary-medium); margin-bottom: 8px; }

/* Login Page Styling */
.login-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark-navy);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 85% 15%, #064e3b 0%, #022c22 50%, #011710 100%);
  padding: 24px;
  position: relative;
}
.login-wrapper { width: 100%; max-width: 440px; position: relative; z-index: 10; }
.login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
}
.login-header { text-align: center; margin-bottom: 32px; }
.login-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--dark-navy); margin-bottom: 6px; }
.login-header p { color: var(--slate-500); font-size: 0.94rem; }
.input-wrapper { position: relative; }
.input-wrapper i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--slate-400); font-size: 1rem; transition: color 0.3s;
}
.input-wrapper input {
  width: 100%; padding: 14px 18px 14px 48px; border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md); font-size: 0.95rem; transition: var(--transition-fast);
  outline: none; background: var(--slate-50);
}
.input-wrapper input:focus { border-color: var(--primary-medium); background: var(--white); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12); }
.input-wrapper input:focus ~ i { color: var(--primary-medium); }

/* ==========================================================================
   DASHBOARD SPECIFIC RESPONSIVE STYLES
   ========================================================================== */
.dash-layout { display: flex; min-height: 100vh; background: var(--slate-100); }
.sidebar {
  position: fixed; top: 0; left: 0; width: 260px; height: 100vh;
  background: linear-gradient(180deg, #022c22 0%, #064e3b 100%);
  color: #fff; padding: 24px 0; z-index: 1000; overflow-y: auto;
  box-shadow: 4px 0 25px rgba(0,0,0,0.08); transition: transform 0.35s var(--transition-smooth);
}
.sidebar-logo { display: flex; align-items: center; gap: 12px; padding: 0 24px; margin-bottom: 32px; }
.sidebar-logo img { height: 40px; }
.sidebar-logo .logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; }
.sidebar-logo .logo-text span { color: var(--accent-gold-light); }
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 12px; padding: 12px 24px;
  color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s ease; border-left: 4px solid transparent;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active {
  background: rgba(255,255,255,0.12); color: #fff; border-left-color: var(--accent-gold-light);
}
.sidebar-nav li a i { width: 20px; text-align: center; font-size: 1rem; }

.main { margin-left: 260px; padding: 32px 40px; min-height: 100vh; width: calc(100% - 260px); transition: all 0.35s; }
.dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }

.dash-mobile-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 1.1rem;
  color: var(--dark-navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--slate-200); transition: var(--transition-fast);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }

.table-wrapper {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 32px;
  border: 1px solid var(--slate-200);
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 30px; }
.footer-brand .logo-text { font-size: 1.7rem; color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,0.65); max-width: 360px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); text-decoration: none;
  transition: var(--transition-smooth); border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--accent-gold); color: var(--white); border-color: var(--accent-gold); transform: translateY(-3px); }

.footer-col h4 { color: var(--white); font-size: 1.05rem; font-weight: 800; margin-bottom: 24px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Laptop & Tablet Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; padding-left: 0; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; max-width: 600px; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .about-image { max-width: 360px; max-height: 280px; }
  .about-image img { height: 280px; }
  .about-features { text-align: left; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .training-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  .register-grid { grid-template-columns: 1fr; gap: 28px; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .sidebar { transform: translateX(-100%); }
  .sidebar.active { transform: translateX(0); }
  .main { margin-left: 0; width: 100%; padding: 20px 16px; }
  .dash-mobile-toggle { display: inline-flex; align-items: center; gap: 8px; }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar-container { flex-direction: row; justify-content: center; gap: 10px; font-size: 0.7rem; padding: 0 12px; }
  
  .nav-container { height: 52px; padding: 0 16px; }
  .logo { margin-left: 0; }
  .logo img { height: 28px; }
  .logo-text { font-size: 1.05rem; }
  
  .hamburger { display: flex; width: 34px; height: 34px; border-radius: 8px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 70px 24px 32px;
    gap: 16px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.18);
    transition: right 0.35s var(--transition-smooth);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 0.95rem; width: 100%; padding: 8px 0; border-bottom: 1px solid var(--slate-100); }
  .nav-links a::after { display: none; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 8px; padding: 10px 16px !important; }

  .hero { padding: 24px 0 32px; }
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 0.92rem; line-height: 1.5; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; width: 100%; margin-top: 18px; padding-top: 14px; }
  .hero-frame { height: 280px; max-width: 100%; }

  .floating-badge.badge-top { top: 4%; right: 4px; padding: 8px 10px; }
  .floating-badge.badge-bottom { bottom: 4%; left: 4px; padding: 8px 10px; }
  .floating-badge h4 { font-size: 0.78rem; }
  .floating-badge p { font-size: 0.68rem; }
  .floating-badge .badge-icon { width: 32px; height: 32px; font-size: 0.82rem; }

  .section-header h2 { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; }

  .team-card { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .team-avatar { height: 220px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 20px 16px; }
  .contact-form { padding: 20px 16px; }

  footer { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; gap: 8px; }
}

/* Small Smartphone Screen (max-width: 480px) */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .top-bar-info span:nth-child(2),
  .top-bar-info span:nth-child(3) { display: none; }
  .top-bar-container { justify-content: space-between; font-size: 0.68rem; }

  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 0.88rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; padding: 12px 20px; font-size: 0.88rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .login-card { padding: 24px 16px; }
  .service-card { padding: 20px 16px; }
}
