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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.logo {
  max-width: 250px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  margin-left:-2rem
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #f0f0f0d8, #75b7dd);
  color: #fff;
  text-align: left;
  padding: 1.5rem 1rem;
}

.hero .container {
  display: flex;
  align-items:center;
  justify-content: flex-start; /* Center the content */
  flex-direction: column;
  padding-left: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #fff;
  color: #3c8dbc;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #f0f0f0;
}

/* Navigation */
.navbar {
  background: #f8f8f8;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
}

.navbar a:hover {
  color: #3c8dbc;
}

/* Sections */
.section {
  padding: 3rem 1rem;
}

.bg-light {
  background: #f9f9f9;
}

.bg-dark {
  background: #333;
  color: #fff;
}

/* Services */
.services-list {
  list-style: none;
  margin-top: 1rem;
}

.services-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  align-self: flex-start;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #f4f4f4;
  color: #666;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .navbar a {
    display: block;
    margin: 0.5rem 0;
  }

  .hero .container {
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-logo {
  max-width: 120px;
  margin: 1rem auto;
  display: block;
}

/* Hamburger menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle .bar {
  width: 28px;
  height: 4px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive navbar */
@media (max-width: 800px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem 2rem;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero .container {
    align-items: center;
    text-align: center;
    justify-content: center;      /* Add this line */
    padding-left: 0 !important;   /* Add this line to remove left padding */
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Banner Section */
.seo-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: url('../img/backgrounds/seo2.jpeg') center center/cover no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-banner .btn-primary {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #3c8dbc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  font-weight: 600;
  text-decoration: none;
}

.seo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3); /* Slight washout for readability */
  z-index: 1;
}