body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #f9f9f9;
}

/* Sticky Top Bar */
.topbar {
  background: #0d47a1; /* deep blue */
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 200;
}

/* Header */
header {
  background: #d32f2f; /* red */
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
header a {
  color: #fff;
  text-decoration: none;
}
.cta-btn {
  background: #25d366;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  background: url('https://images.pexels.com/photos/3278215/pexels-photo-3278215.jpeg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.2rem;
}

/* Buttons */
.btn-primary {
  background: #d32f2f;
  color: #fff;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin: 0.5rem;
  display: inline-block;
}
.btn-secondary {
  background: #fff;
  color: #0d47a1;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border: 2px solid #0d47a1;
  border-radius: 5px;
  margin: 0.5rem;
  display: inline-block;
}

/* Services */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}
.service {
  background: #fff;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 8px;
  flex: 1 1 200px;
  transition: transform 0.3s;
}
.service:hover {
  transform: scale(1.05);
  border-color: #d32f2f;
}

/* Contact */
.map {
  margin-top: 1rem;
}

/* CTA Section */
.cta-section {
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.cta-section h2 {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px #999;
  z-index: 100;
}
.whatsapp-float img {
  width: 35px;
  margin-top: 12px;
}
/* Hero Menus */
.hero-menus {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.hero-btn {
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.hero-btn:hover {
  background: #1da851;
}

/* Dropdown inside Hero */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid #ddd;
}

.dropdown-menu li a {
  color: #004080;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f0f0f0;
}

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