body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #2e7d32;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
}
.cta-btn {
  background: #25d366;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
}

/* Hero */
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.hero .cta-btn {
  display: inline-block;
  margin-top: 1rem;
}
.verified-badge {
  margin-top: 1rem;
}
.verified-badge img {
  max-width: 120px;
  display: block;
  margin: 0 auto;
}

/* Contact */
.contact {
  padding: 2rem;
  background: #f9f9f9;
}
.contact h2 {
  color: #004080;
  margin-bottom: 1rem;
}
.contact p {
  margin: 8px 0;
  font-size: 15px;
}
.contact i {
  margin-right: 8px;
  color: #004080;
}
.contact a {
  color: #25d366;
  text-decoration: none;
  font-weight: bold;
}
.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.verified-footer {
  margin-top: 0.5rem;
}
.verified-footer img {
  max-width: 100px;
  display: block;
  margin: 0 auto;
}

/* Floating WhatsApp 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;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}
.whatsapp-float:hover {
  background-color: #20b858;
}

.quotation {
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quotation h2 {
  color: #001f3f;
  margin-bottom: 20px;
}

.quotation form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quotation input,
.quotation textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.quotation button {
  background: #FFD700;
  color: #001f3f;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

.quotation button:hover {
  background: #FFC107;
}

