/* ========= Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ========= Navbar ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #00b894;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.login-btn:hover {
  background: #00b894;
  color: white;
}

.nav-links li a.active {
  background: #00b894;
}

.login-btn {
  background: #00b894;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
}

/* ========= Hero Section ========== */
.hero {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-buttons button {
  background: #00b894;
  border: none;
  padding: 12px 20px;
  margin: 8px;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.cta-buttons button:hover {
  background: #019875;
}

/* ========= Why Choose Us Section ========== */
#why-us {
  padding: 50px 20px;
  text-align: center;
  background-color: #ffffff;
}

#why-us h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.why-card {
  background: #f8f9fa;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 16px;
}

/* ========= Contact Form ========== */
.contact-section {
  background: white;
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-section button {
  background: #0984e3;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.contact-section button:hover {
  background: #0077cc;
}

.contact-details {
  margin-top: 20px;
  font-size: 16px;
}

.contact-details a {
  color: #00b894;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* ========= Footer ========== */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
  margin-top: 40px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ========= Responsive ========== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    background: #333;
    padding: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why-container {
    flex-direction: column;
    align-items: center;
  }
}

/* ========= Login Section ========== */
.login-section {
  background: white;
  max-width: 400px;
  margin: 40px auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin-bottom: 8px;
  font-weight: bold;
}

.login-form select,
.login-form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-form button {
  padding: 12px;
  background-color: #00b894;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #019875;
}
