@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
  --primary-color: #0d3c9c;
  --secondary-color: #0a2d7c;
  --accent-color: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent-gradient: linear-gradient(135deg, #0d3c9c 0%, #2563eb 100%);
  --success-color: #10b981;
  
  /* Light Mode Backgrounds */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-on-dark: #f8fafc;
  
  /* Shadows & Borders */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
  --shadow-premium: 0 20px 40px -15px rgba(13, 60, 156, 0.08);
  --border-light: 1px solid #e2e8f0;
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Font Specs */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* Base Styles & Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

p {
  text-align: justify;
}

div[style*="text-align: center"] p,
div[style*="text-align:center"] p,
.text-center p {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-on-dark);
}

.logo-img {
  height: 65px;
  width: auto;
  background-color: #ffffff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header .logo {
  color: var(--text-primary);
}

.header .logo-img {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  display: grid;
  place-content: center;
  box-shadow: 0 4px 10px var(--accent-glow);
  color: #fff;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.25rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-gradient);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px var(--accent-glow);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.nav-login {
  border: 2px solid var(--accent-color);
  color: var(--accent-color) !important;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.nav-login:hover {
  background: var(--accent-color);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Dropdown styling */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  width: 250px;
  display: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.dropdown-item a:hover {
  background: var(--bg-alt);
  color: var(--accent-color);
  padding-left: 1.75rem;
}

/* Section Common Styles */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 45, 124, 0.88) 0%, rgba(11, 19, 43, 0.94) 100%), url('../images/hero_bg.png') no-repeat center center / cover;
  color: white;
  padding: 10rem 2rem 7rem 2rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: #38bdf8;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape {
  width: 320px;
  height: 320px;
  background: var(--accent-gradient);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s infinite alternate;
  opacity: 0.85;
  filter: blur(2px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

@keyframes morphing {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
  50% { border-radius: 70% 30% 50% 50% / 40% 30% 70% 60%; }
  75% { border-radius: 40% 60% 40% 60% / 60% 50% 50% 40%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-glass);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: white;
  width: 250px;
}

.hero-card h4 {
  color: #ffffff;
}

.hero-card .card-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-card-1 {
  top: -10px;
  left: -20px;
  animation: float-y 4s ease-in-out infinite;
}

.hero-card-2 {
  bottom: -20px;
  right: -20px;
  animation: float-y 4s ease-in-out infinite alternate;
  animation-delay: 2s;
}

@keyframes float-y {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Feature Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.premium-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.2);
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 55px;
  height: 55px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  color: var(--accent-color);
  display: grid;
  place-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.premium-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.premium-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* About / Content Section Split */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-media {
  background: var(--accent-gradient);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.media-wrapper {
  background: var(--secondary-color);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 350px;
}

.media-wrapper svg {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.media-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.content-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.stat-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  border-left: 3px solid var(--accent-color);
  padding-left: 1rem;
}

.stat-number {
  font-size: 1.75rem;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Vision & Mission Row */
.vision-mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.vision-card, .mission-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}

.vision-card {
  background: linear-gradient(135deg, #102a43 0%, #243b53 100%);
  border: 1px solid rgba(255,255,255,0.05);
}

.mission-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.05);
}

.vision-card h3, .mission-card h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vision-card h3 svg, .mission-card h3 svg {
  color: var(--accent-color);
  width: 28px;
  height: 28px;
}

.vision-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.mission-list li svg {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Sector filter and badge list styling */
.sectors-search-box {
  max-width: 500px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.sectors-search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border: var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: var(--transition-smooth);
}

.sectors-search-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.sectors-search-box svg {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.sectors-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sector-badge-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.sector-badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.sector-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  color: var(--secondary-color);
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

.sector-badge-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

/* Stepper / Timeline for Methodology */
.steps-container {
  max-width: 900px;
  margin: 4rem auto 0 auto;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  height: 100%;
  width: 2px;
  background: var(--border-light);
}

.step-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-row:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-row:hover .step-num {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.step-body {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: var(--border-light);
  flex-grow: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-row:hover .step-body {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateX(4px);
}

.step-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.step-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Page Banner / Hero Subpages */
.subpage-banner {
  background: linear-gradient(rgba(10, 45, 124, 0.85), rgba(13, 60, 156, 0.9)), url('../images/subpage_bg.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 9.5rem 2rem 5.5rem 2rem;
  text-align: center;
  position: relative;
}

.subpage-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, var(--bg-main), transparent);
}

.subpage-banner h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.75rem;
}

.subpage-banner p {
  color: #38bdf8;
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Grid layout for services list page */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-detail-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.15);
}

.service-detail-card .card-icon {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 10px var(--accent-glow);
}

.service-detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Profiles Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.15);
}

.profile-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 3rem 2.5rem;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  display: grid;
  place-content: center;
  color: white;
  font-weight: 700;
  font-size: 2.25rem;
  font-family: var(--font-title);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-title-group h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.profile-title-group p {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
}

.profile-body {
  padding: 2.5rem;
  flex-grow: 1;
}

.profile-body p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.profile-body p:last-child {
  margin-bottom: 0;
}

/* Careers & Contact page */
.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.careers-content h2, .contact-form-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.careers-content p, .contact-form-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.careers-opportunities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.career-opp-card {
  background: var(--bg-card);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.career-opp-card:hover {
  transform: translateX(6px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.career-opp-info h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.career-opp-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Styles */
.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-light);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: var(--border-light);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--accent-color);
  display: grid;
  place-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-info-text h4 {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Call To Action Footer */
.cta-banner {
  background: var(--accent-gradient);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  text-align: center;
}

/* Footer styling */
.footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 2rem 2rem 2rem;
  border-top: var(--border-glass);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: var(--font-title);
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand h3 span {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Parent strength specific visual */
.parent-strength-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-light);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.parent-header-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border-light);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.parent-header-group h2 {
  font-size: 2.25rem;
  color: var(--primary-color);
}

.parent-badge {
  background: var(--accent-gradient);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}

.parent-intro-p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.parent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.parent-feature-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.parent-feature-card svg {
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.parent-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.parent-feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animations and Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .split-grid, .vision-mission-row, .profiles-grid, .contact-container, .parent-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0b132b;
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }
  
  .nav-dropdown.open .dropdown-menu {
    display: block;
    position: static;
    opacity: 1;
    transform: none;
    background: rgba(255,255,255,0.05);
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .stat-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .parent-strength-box {
    padding: 2rem;
  }
  
  .parent-header-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
