/* Color Palette */
:root {
  --navy: #0F2C59;
  --green: #38A169;
  --light-bg: #F8FAFC;
  --text-dark: #1E293B;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
}

/* Header & Nav */
.top-bar {
  background: var(--navy);
  color: white;
  padding: 10px;
  text-align: center;
}
.top-bar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.navbar {.navbar 
  position: sticky; /* Makes navigation float at top when scrolling */
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--navy);
}
.logo span { color: var(--green); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}
.btn-quote {
  background: var(--green);
  color: white !important;
  padding: 8px 15px;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: var(--light-bg);
}
.hero h1 {
  font-size: 40px;
  color: var(--navy);
}
.hero .highlight { color: var(--green); }
.cta-buttons { margin-top: 20px; }
.btn {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 5px;
}
.btn.primary { background: var(--green); color: white; }
.btn.secondary { background: var(--navy); color: white; }

/* Trust Bar */
.trust-bar {
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  text-align: center;
}

/* Services */
.services {
  padding: 50px 5%;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  border: 1px solid #E2E8F0;
  padding: 20px;
  border-radius: 8px;
  background: white;
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
/* Floating WhatsApp Button (Bottom Right) */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Floating Back to Top Button (Bottom Left) */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #0F2C59; /* Navy Blue */
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Hidden until user scrolls */
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s;
}

.back-to-top:hover {
  background-color: #38A169; /* Green accent */
}