/* Base & Reset */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
}
a {
  color: #0056a3;
  text-decoration: none;
}
header {
  background: #00264d;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 1.5rem;
  color: #fff;
}
nav a {
  margin-left: 1.5rem;
  color: #fff;
  font-weight: 500;
}
nav a:hover {
  opacity: 0.8;
}

/* Hero section */
.hero {
  position: relative;
  background: url("img/hero.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-content p {
  font-size: 1.3rem;
  margin: 1rem 0;
}
.hero-content .btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #007acc;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
}

.hero-content .btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}
/* Section styles */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section h2 {
  font-size: 2.4rem;
  color: #004080;
  text-align: center;
  margin-bottom: 2rem;
}

/* Services cards */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  margin-top: 0;
  color: #0056a3;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form button {
  padding: 0.85rem;
  background: #0066cc;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #004a99;
}

/* Footer */
footer {
  background: #00264d;
  color: #ccc;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    margin-top: 0.5rem;
  }
  nav a {
    margin: 0.5rem 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
/* Small hero for internal pages */
.small-hero {
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-page h2 {
  color: #004080;
  margin-top: 2rem;
}
.founder {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.founder img {
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.founder div {
  flex: 1;
  min-width: 250px;
}
.highlight-list {
  list-style: none; /* removes bullet */
  padding: 0;
  margin: 0;
}

.highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.highlight-list li::before {
  content: "✅"; /* emoji or other marker */
  position: absolute;
  left: 0;
  color: #007acc;
}
.cvr {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .founder {
    flex-direction: column;
    text-align: center;
  }
}
/* Small hero update */
.small-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content p {
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* CVR block */
.cvr {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive adjustment for hero */
@media (max-width: 768px) {
  .small-hero {
    height: 35vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
.about .btn {
  background: #007acc;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}
.about .btn:hover {
  background: #005fa3;
}
.service-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.service-section h2 {
  color: #004080;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}
.service-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.service-section h2 {
  color: #004080;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-section p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #333;
}

.service-card {
  display: block;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  background: #eef7ff;
}

/* Base styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #00264d;
  color: white;
  position: relative;
  z-index: 10;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #00264d;
    width: 100%;
    flex-direction: column;
    display: none;
  }

  nav a {
    padding: 1rem 2rem;
    border-top: 1px solid #003366;
  }

  nav.show {
    display: flex;
  }
}
