/* Reset and global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 1rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.header-container h1 a {
  color: #fff;
  font-size: 1.6rem;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 40px;
  background: #222;
  border: 1px solid #444;
  min-width: 200px;
  display: none;
  z-index: 10;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #fff;
  border-bottom: 1px solid #444;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #e3e3e3;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
}

/* Services */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.cta-button {
  background: #0066cc;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  display: inline-block;
}

.cta-button:hover {
  background: #004a99;
}

/* Footer */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  margin: 0 6px;
}

footer a:hover {
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../images/vertical-bg.png');
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.05;          /* Very faint background */
  pointer-events: none;   /* Click-through */
  z-index: -1;            /* Behind everything */
}