/* services.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --color-navy: #1a2a6c;
  --color-emerald: #2ecc71;
  --color-gold: #f1c40f;
  --color-light: #f9f9f9;
  --color-dark: #333;
  --font-primary: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: 400;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-emerald);
}

/* Hero Section */
.portfolio-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-emerald) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

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

.portfolio-hero p {
  font-size: 1.2rem;
}

/* Service Sections */
.service-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.service-section:nth-of-type(even) {
  background-color: var(--color-light);
}

.service-section h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-navy);
  margin-bottom: 2rem;
  position: relative;
}

.service-section h2::after {
  content: '';
  width: 4rem;
  height: 4px;
  background-color: var(--color-emerald);
  display: block;
  margin: 0.5rem auto 2rem;
}

.service-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Grids */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.service-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.service-card .learn-more {
  color: var(--color-emerald);
  font-weight: 600;
  transition: color 0.3s;
}

.service-card .learn-more:hover {
  color: var(--color-gold);
}

/* Why Choose Us */
.why-choose {
  padding: 4rem 2rem;
  background-color: #fff;
}

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

.benefit-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: var(--color-navy);
  color: #fff;
  padding: 2rem 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: #fff;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--color-emerald);
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.bottom-footer .legal-links li {
  display: inline;
  margin-left: 1rem;
}

.bottom-footer a:hover {
  color: var(--color-emerald);
}

@media (max-width: 600px) {
  .signup-hero h1 { font-size: 2.5rem; }
  .signup-form-section { padding: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .bottom-footer { flex-direction: column; gap: 1rem; }
}

/* Responsive */
@media (max-width: 768px) {
  .service-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bottom-footer {
    flex-direction: column;
    gap: 1rem;
  }
}
