<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary: #25d96b;
  --accent: #282a70;
  --white: #ffffff;
  --dark: #1f1f1f;
  --gray: #f4f4f4;
  --font: 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--gray);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 1px 0;
}

/* Header */
header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 15px 15px;
}

header h1 {
  font-size: 1rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.3rem;
  font-weight: 800;
}

/* Nav */
nav {
  background: var(--accent);
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  background: var(--white);
  padding: 40px 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e65c00;
}

/* Content + Sidebar */
.content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.main-content {
  flex: 1;
}

.main-content section {
  background: var(--white);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.main-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.main-content ul,
.main-content p {
  margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.sidebar &gt; div {
  background: var(--white);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact CTA Block */
.contact-cta {
  text-align: center;
  margin: 40px auto;
  background: var(--primary);
  color: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
}

.contact-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 15px;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-top: 10px;
  }

  .menu-links.show {
    display: flex;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
  }
}

/* Sticky Call Button Styling */
.sticky-btn {
  position: fixed;
  left: 50%;  /* Center horizontally */
  bottom: 10px;  /* Distance from the bottom */
  transform: translateX(-50%);  /* Move the button to the center */
  width: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* Call Button Styling */
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6a00, #ff3f00); /* Gradient background */
  color: white;
  padding: 20px 30px; /* Adjust padding */
  font-size: 22px; /* Increase font size */
  font-weight: bold;
  text-decoration: none;
  width: 100%; /* Make the width 100% on small screens */
  max-width: 600px; /* Max width for larger screens */
  margin: 0 auto; /* Center the button */
  border-radius: 50px; /* Rounded corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); /* Subtle shadow */
  transition: all 0.3s ease;
  transform: translateY(0); /* Initial position */
  text-align: center;
}

/* Hover Effect */
.call-btn:hover {
  background: linear-gradient(135deg, #ff3f00, #ff6a00); /* Reverse gradient on hover */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35); /* Bigger shadow on hover */
  transform: translateY(-5px); /* Lift the button effect */
}

/* Active Button Effect */
.call-btn:active {
  transform: translateY(2px); /* Slightly push the button down on click */
}

/* Optional: Icon and Text Spacing */
.call-btn span {
  margin-left: 10px; /* Space between icon and text */
}

.call-btn i {
  font-size: 24px; /* Increase icon size */
  margin-right: 8px; /* Space between icon and text */
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .call-btn {
    padding: 15px 25px;  /* Adjust padding on mobile */
    font-size: 18px; /* Smaller font size on mobile */
    width: 90%; /* Make button almost full width on mobile */
  }
}

@media (max-width: 480px) {
  .call-btn {
    font-size: 16px;  /* Adjust font size on very small screens */
    padding: 10px 20px;  /* Adjust padding on very small screens */
  }
}

/* Quick Steps Section */
#quick-steps {
  text-align: center;
  background: #f8f8f8;
  padding: 60px 20px;
  border-top: 2px solid #eee;
}

#quick-steps h2 {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  text-align: center;
  width: 28%;
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(135deg, #25d96b, #1ebf5b);
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 20px;
  margin: 12px 0 8px 0;
  color: #333;
}

.step p {
  font-size: 17px;
  color: #666;
  line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }

  #quick-steps h2 {
    font-size: 24px;
  }
}


/* Services Section */
#services-areas {
  text-align: center;
  background-color: #f9f9f9;
  padding: 60px 20px;
}

#services-areas h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.service {
  width: 200px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  /* border removed */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* soft shadow only */
}

.service h3 {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .service {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .service {
    width: 90%;
  }
}

/* image with click to call */
.quote-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 20px;
  max-width: 300px;
  margin: 0 auto;
}

.quote-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.quote-card .highlight {
  color: #ff4c00;
  text-decoration: underline;
}

.quote-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.call-btn {
  display: inline-block;
  background-color: #f26522;
  color: #fff;
  font-size: 18px;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.call-btn:hover {
  background-color: #e35510;
}
#local_areas ul {
  columns: 2;
  column-gap: 30px;
  max-height: 500px;
  overflow-y: auto;
  padding-left: 0;
  list-style: none;
}
#local_areas ul li {
  margin-bottom: 10px;
}
#local_areas ul li a {
  text-decoration: none;
  color: #007BFF;
}
#local_areas ul li a:hover {
  text-decoration: underline;
}


</pre></body></html>