
* { box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #333;
}
.navbar {
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
  height: 80px;
  width: auto;
}

.navbar nav {
  display: flex;
  align-items: center;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
}

.btn-primary {
  background: #009688;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
}

.hero {
  width: 100%;
  background: linear-gradient(to right, #004e92, #000428);
  color: white;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 48px;
}
.hero-buttons a {
  margin: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.btn-secondary {
  background: #00b894;
  color: white;
}
.btn-outline {
  border: 2px solid white;
  color: white;
}
h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 32px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  text-align: center;
}
.split-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  gap: 40px;
}
.split-layout .text, .split-layout .image {
  flex: 1;
}
.split-layout img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
.testimonial-section blockquote {
  max-width: 800px;
  margin: 20px auto;
  font-style: italic;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #009688;
}
.contact-section {
  background: #eef2f7;
  padding: 40px 20px;
  text-align: center;
}
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.contact-form button {
  background: #009688;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form select,
.contact-form input[type="file"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.contact-method {
  display: flex;
  gap: 15px;
  padding: 5px 0 10px;
}

.contact-method label {
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #eee;
}

html {
  scroll-behavior: smooth;
}
/* Hide toggle by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive layout */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

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

  .btn-primary {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero {
    padding: 140px 20px 100px;
  }
}

/* NEW: Mobile nav-container style */
.nav-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .nav-container {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
    align-items: flex-start;
  }

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

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary {
    margin-top: 10px;
    align-self: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-links a {
    padding: 10px 0;
  }
}

/* Align logo and menu toggle */
.navbar-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile: nav-container collapses below navbar-top */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    padding: 10px 0;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary {
    margin-top: 10px;
    align-self: flex-start;
  }
}