:root {
  --primary: #0052cc;
  --secondary: #00bfa6;
  --dark: #222;
  --light: #f4f4f4;
  --font: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: var(--secondary);
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  height: 80px; /* increased logo size */
}
.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav__list li a {
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* Mobile Nav */
@media (max-width: 768px){
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    padding: 1rem;
  }
  .nav-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  background: url('images/hero.jpg') center / cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}
.hero__content {
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Section */
.section {
  padding: 4rem 0;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.with-image {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.section__image {
  max-width: 400px;
  border-radius: 8px;
}

/* Vision */
.vision__list {
  list-style: disc;
  padding-left: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
}
.service img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Contact */
.contact__wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact__info {
  flex: 1 1 300px;
}
.contact__form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form input,
.contact__form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 1024px){
  .hero h1{
    font-size: 2rem;
  }
}
