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

:root {
  --primary-color: #3b82f6; /* Blue accent */
  --primary-light: #8b5cf6; /* Purple accent */
  --secondary-bg: #030712; /* Dark bg */
  --card-bg: rgba(15, 23, 42, 0.6); /* Glass card */
  --text-dark: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
  --transition: all 0.3s ease;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--secondary-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-light);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light) !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  text-decoration: none;
  border: none;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.hero {
  background: linear-gradient(rgba(3, 7, 18, 0.8), rgba(3, 7, 18, 0.9)), url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 140px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-weight: 400;
  color: var(--text-muted);
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-light);
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  margin-top: 0;
  color: var(--primary-color);
  font-size: 22px;
}

.card p {
  color: var(--text-muted);
  font-size: 16px;
}

.why ul {
  line-height: 2;
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  list-style-type: none;
  padding: 0;
}

.why li {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.why li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 15px;
  font-size: 20px;
}

footer {
  background: rgba(3, 7, 18, 0.95);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-links {
  text-align: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 15px;
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

/* Page Specific Styles */
.page-header {
  background: linear-gradient(rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.9)), url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  margin: 0;
}

.content-block {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.content-block h2 {
  font-family: 'Outfit', sans-serif;
  text-align: left;
  margin-top: 0;
  color: var(--primary-color);
}

.content-block p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Mobile Responsive Styles */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 950px) {
  .menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    margin: 15px 0;
    margin-left: 0;
    font-size: 18px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .section {
    padding: 50px 20px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .content-block {
    padding: 25px;
  }
}
