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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

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

/* Navbar */
.navbar {
    background: #587999;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.language-switcher {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.3);
}

.lang-link {
    background: #3498db;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.lang-link:hover {
    background: #2980b9;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1

}

.services-grid {
    margin-top: 2rem; /* Adjust as needed */
}

.under-construction {
    text-align: center;
    padding: 4rem 2rem;
}

.under-construction img {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
}

.services-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.services-card ul li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.services-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #007bff; /* Adjust to match your brand color */
    font-size: 1.2em;
    font-weight: bold;
}

.service-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* POLISHED HERO CSS - drop into your stylesheet */

/* Design tokens (adjust to fit your brand) */
/*
:root {
  --hero-bg: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  --hero-padding-vertical: 56px;
  --hero-max-width: 1100p. 
  --accent: #1e88e5;       
  --accent-contrast: #fff; 
  --muted: #6b7280;       
  --btn-radius: 10px;
  --btn-padding-vertical: 12px;
  --btn-padding-horizontal: 20px;
  --gap: 16px;
}. */

:root {
  --btn-padding-vertical: 20px;
  --btn-padding-horizontal: 20px;
  --gap: 20px;
}
/* Base hero 
.hero {
/*  background: var(--hero-bg); 
  padding: var(--hero-padding-vertical) 16px;
  box-sizing: border-box;
  color: white;
} */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

/* Centering inner content and limiting width */
.hero-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content block */
.hero-content {
  text-align: center;
  width: 100%;
  padding: 8px;
}

/* Headline & subtitle */
.hero-title {
  margin: 0 0 12px 0;
  font-size: 2.25rem;       /* desktop size */
  line-height: 1.05;
  font-weight: 700;
  color: white;           /* dark text */
}

.hero-sub {
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.4;
}

/* CTA group - use flex so spacing is consistent and easily responsive */
.hero-ctas {
  display: inline-flex;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button base */
.btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Primary button (filled) */
.btn-primary {
  background: #fff;
  color: #667eea; 
}

/* Secondary button (outline) */
.btn-secondary {
  background: #fff;
  color: #667eea;

}

/* Hover / focus */
.btn:hover, .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  outline: none;
}

/* Strong focus-visible for keyboard users */
.btn:focus-visible {
  outline: 3px solid rgba(30,136,229,0.18);
  outline-offset: 3px;
}

/* Small screens: stack CTAs vertically and adjust typography */
@media (max-width: 768px) {
  :root {
    --hero-padding-vertical: 36px;
  }

  .hero-title {
    font-size: 1.6rem;
  }
  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 90%;
    max-width: 360px;
    padding: 14px 18px;
    font-size: 1rem;
  }

  .btn-primary { order: 1; }   /* primary first on mobile */
  .btn-secondary { order: 2; } /* secondary below */
}

/* Optional: make primary slightly more prominent on large screens */
@media (min-width: 1024px) {
  .btn-primary { padding-left: 26px; padding-right: 26px; }
  .btn-secondary { padding-left: 22px; padding-right: 22px; }
}
