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

body {
  background: #f9fafb;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #0d6efd;
  color: #fff;
}

.navbar a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #e9f1ff;
}

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

.hero button {
  margin-top: 20px;
  padding: 12px 20px;
  background: #0d6efd;
  color: #fff;
  border: none;
  cursor: pointer;
}

.services {
  padding: 50px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card button {
  margin-top: 15px;
  padding: 10px;
  background: #0d6efd;
  color: #fff;
  border: none;
  cursor: pointer;
}

.contact {
  text-align: center;
  padding: 50px;
  background-color: #cbbfbd;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  margin-top: 5px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

/* Hero background image */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background image */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6),
                    rgba(0, 0, 0, 0.6)),
    url("../assets/images/hero-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

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

.hero-content button {
  padding: 12px 30px;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.hero-content button:hover {
  background-color: #084298;
}


/* Service card images */
.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* ================= SERVICES PAGE ================= */

.page {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 20px;
  background: #eeecea;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.page h1 {
  margin-bottom: 30px;
  color: #0d6efd;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-list li {
  background: #f3f4f6;
  margin: 12px 0;
  padding: 15px;
  border-radius: 6px;
  font-size: 18px;
}

.page button {
  padding: 12px 25px;
  background: #0d6efd;
  color: #f8f3f3;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.page button:hover {
  background: #084298;
}

/* ================= NAV DROPDOWN ================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  font-size: 14px;
}

/* Hover effect */
.dropdown-content a:hover {
  background-color: #f1f5ff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional hover underline */
.nav-menu a:hover {
  text-decoration: underline;
}

.dropdown-content {
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

