html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
}

main {
  flex: 1;
}


/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #0f1117;
  color: #ffffff;
}

/* Header */
header {
  background-color: #3a3f4f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  min-height: 100px; /* Ensures enough space for the centered logo */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 250px;
}

.brand-logo-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  max-height: 100px; /* Increased from 80px */
  width: auto;
  max-width: 300px;  /* Optional: increase for wider logo */
  pointer-events: none;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

nav a:hover {
  color: #00bcd4;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #1f232d;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-button {
  background-color: #00bcd4;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #00a2b3;
}

/* Sections */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service {
  background-color: #2b2f3b;
  padding: 1.5rem;
  border-radius: 8px;
  width: 250px;
  text-align: center;
}

.service h3 {
  color: #00bcd4;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #181b23;
  font-size: 0.9rem;
  color: #777;
}
