

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  line-height: 1.6;
  background: #f8f9fb;
  color: #222;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

header {
  text-align: center;
  padding-top: 3rem;
}

.tagline {
  color: #666;
  margin-top: 0.5rem;
}

h1, h2 {
  margin-bottom: 1rem;
}

section {
  margin-bottom: 2.5rem;
}

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

.card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #777;
}
.nav {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
  background: #5cceff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-weight: 600;
  font-size: 1.2rem;
  color: #111;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: #000000;
  font-size: 0.95rem;
}

.menu a:hover {
  color: #000;
}

/* Hamburger (hidden desktop) */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 80px; /* adjust to your header height */
}

.contact-section {
  background-color: #5cceff;
  color: #fff;
  padding: 4rem 2rem;
  font-family: sans-serif;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.5;
}

.contact-info hr {
  border: 0;
  border-top: 2px solid #fff;
  margin: 1rem 0;
  width: 50px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  border: none;
  background-color: #9ce1ff;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form button {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  background-color: #fff;
  color: #5cceff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 0.5rem;
}

.contact-form button:hover {
  background-color: #e0e0ff;
}

.hero-image {
  position: relative; /* REQUIRED */
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("basichero.jpg");
  height: 40vh; /* 40% of viewport height */
  min-height: 200px;
  max-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Place text in the middle of the image */
.hero-text{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-image-services {
  position: relative; /* REQUIRED */
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("hero2.jpg");
  height: 40vh; /* 40% of viewport height */
  min-height: 200px;
  max-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Place text in the middle of the image */
.hero-text-services {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}