/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff; /* white background */
  color: #222; /* dark text */
}

.site-footer {
  background: #f1f1f1;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

.site-footer a {
  color: #009688;
  text-decoration: none;
  margin: 0 0.5rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem 0;
  text-align: center;
}
/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.navbar a {
  text-decoration: none;
  color: #009688;
  font-weight: 600;
}

.navbar a:hover {
  color: #00796b;
}

.logo {
  height: 90px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 1.5rem; /* Moves image down */
}

@media (max-width: 768px) {
  .hero-right img {
    max-height: 250px;
    width: auto;
    margin: 1.5rem auto 0 auto; /* Reapply top margin on mobile too */
    display: block;
  }
}

/* Hero Section */
.hero {
  background-color: #fdfdfd;
  padding: 5rem 1rem;
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
}


.hero h1 {
  font-size: 2.8rem;
  color: #009688;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.lead-form,
.search-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lead-form select {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 250px;
  font-size: 1rem;
  background-color: white;
  color: #333;
  appearance: none;
}

.lead-form input,
.search-bar input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 250px;
  font-size: 1rem;
}

.btn-scroll {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #009688;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-scroll:hover {
  background-color: #00796b;
}


.lead-form button:hover,
.search-bar button:hover {
  background-color: #00796b;
}

.trust {
  font-size: 0.95rem;
  color: #777;
}

/* Services Section */
.services {
  background-color: #f2fefd; /* soft teal tint */
  padding: 4rem 2rem;
  border-top: 1px solid #e0f2f1;
  border-bottom: 1px solid #e0f2f1;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #009688;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 250px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .card img {
    height: 160px;
  }
}


/* How It Works Section */
.how-it-works h2 {
  font-size: 2rem;
  color: #009688;
  margin-bottom: 2rem;
}

.how-it-works .steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.how-it-works .card  {
  background: #ffffff;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1;
  text-align: center;
}

.how-it-works .card img {
  width: 40px;
  margin-bottom: 1rem;
}

.how-it-works .card h3 {
  font-size: 1.2rem;
  color: #009688;
  margin-bottom: 0.5rem;
}

.how-it-works .card p {
  font-size: 0.95rem;
  color: #555;
}

/* Testimonials */
.testimonials blockquote {
  font-style: italic;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f1fefc;
  border-left: 5px solid #009688;
  border-radius: 8px;
}

.testimonials footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
}
.disclaimer {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
  text-align: center;
}


/* Call-To-Action Section */
.cta {
  background-color: #ffffff; /* Change teal to white */
  color: #222; /* Make text dark for contrast */
  text-align: center;
  padding: 4rem 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 1rem;
  background: white;
  color: #009688;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0f2f1;
}


.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 1rem;
  background: white;
  color: #009688;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0f2f1;
}
.hero-swap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fefcf8;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-swap h1 {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 1rem;
}

.hero-swap p {
  font-size: 1.2rem;
  max-width: 500px;
  color: #333;
}

.hero-swap .btn-primary {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #009688;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.hero-swap img {
  max-width: 500px;
  margin-top: 2rem;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .hero-swap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    max-width: 1100px;
    margin: auto;
  }

  .hero-left {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-right {
    flex: 1;
  }
}

/* Responsive Tweaks */
/* Your other styles above this... */

.container ol, .container ul {
  text-align: left;
  margin: 1rem auto;
  padding-left: 1.5rem;
  max-width: 500px;
}

.container li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.container ol li::marker,
.container ul li::marker {
  font-size: 1rem;
  color: #009688;
}
.container li {
  padding-left: 0.3rem;
}

h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
}
section {
  margin-bottom: 4rem;
}


.hero-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-right img {
    max-height: 250px; /* adjust this to fit your layout */
  }
}


  .grid {
    grid-template-columns: 1fr;
  }

  .how-it-works .steps {
    flex-direction: column;
  }

  .contact-form {
    padding: 0 1rem;
  }


.hero-split {
  display: flex;
  background-color: #ffffff;
  color: #222;
  background-image: linear-gradient(to bottom, #ffffff, #f9f9f9);
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

}


.hero-left {
  flex: 1 1 45%;
  text-align: left;
  padding-right: 2rem;
}

.hero-left h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.hero-left p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-left .btn-primary {
  background-color: #2c66d1;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-left .btn-primary:hover {
  background-color: #1d4fb8;
}

.hero-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
}

.hero-image img {
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  object-fit: cover;
}

.content-container {
  background-color: white;
  color: #222;
  border-radius: 12px;
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Make section titles bold and pop */
.about-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

/* Make body text brighter and easier to read */
.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0fdf9;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Optional: Give nav links some style too */
.navbar nav a {
  color: #222;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.navbar nav a:hover {
  color: #4caf50;
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }

  .btn-scroll {
  background-color: #3e64ff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-scroll:hover {
  background-color: #2a4fcc;
}
