body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #333;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  padding-top: 80px; /* Adjust based on navbar height */
}
body {
  margin: 0;
  overflow-x: hidden;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.quote-btn {
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
}



/* Logo + Text */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #000;
}

.logo-img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: rotate(-8deg) scale(1.1);
}

.logo-text {
  display: inline-block;
}

.navbar-content {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus,
.nav-links li a.active {
  color: #D2773B;
}

.quote-btn {
  background-color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.theme-toggle {
  margin-left: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #222;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Hero */
.services-hero {
  position: relative;
  text-align: center;
  padding: 5rem 2rem;
  height: 311.16px;
  background: url('images/Copilot_20251007_162654.png') center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  z-index: 1;
}

.services-hero h1,
.services-hero p,
.services-hero .btn {
  position: relative;
  z-index: 2; /* ensures text sits above overlay */
}


.services-hero h1 {
  font-size: 48px;
  font-weight: 790px;
  margin-bottom: 1rem;
  color: #fafafa;
}

.services-hero p {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 700px;
  margin: 0 auto;
  color: #fafafa;
}


.services-grid {
  display: flex;
  flex-direction: column;   /* stack vertically */
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1000px;        /* controls how wide the cards stretch */
  margin: 0 auto;           /* center them */
}

.service-card {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  width: 100%;              /* make them wide */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: #000000;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #4B5563;
}

* Checklist icons */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.checklist {
  list-style: none;
  padding-left: 0;   /* removes browser default indentation */
  margin: 0 0 1.5rem 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}


.cta-btn {
  display: inline-block;
  background: black;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta-secondary {
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.cta-secondary {
  color: #222;
  border: 2px solid #222;
}
.cta-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.cta-btn:hover {
  background: #D2773B;
}


.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2rem;
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  font-family: Arial, Helvetica, sans-serif;
}

.cta-btn {
  background: #000000;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn-banner {
  background: #D2773B;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  background: #D2773B;
}

/* Shared CTA button base */
.cta-btn-banner,
.cta-btn-learnabtus {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

/* Secondary button (Learn About Us) */
.cta-btn-learnabtus {
  background: #000;       /* black background */
  color: #fff;            /* white text */
  border: 2px solid #fff; /* white border */
}

.cta-btn-learnabtus:hover {
  background: #fff;       /* invert on hover */
  color: #000;
  border-color: #000;
}

/*-------------------------------------------------------*/
footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.footer-center h4,
.footer-right h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li,
.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-center ul li a,
.footer-right ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center ul li a:hover,
.footer-right ul li a:hover {
  color: #d4af37; /* Gold hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-legal {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}
/* ========== MOBILE RESPONSIVE STYLES ========== */



/* Mobile Navbar */
@media (max-width: 768px) {

  .quote-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Hero Section Mobile */
  .services-hero {
    padding: 3rem 1.5rem;
    height: auto;
    min-height: 250px;
  }

  .services-hero h1 {
    font-size: 32px;
    margin-bottom: 0.75rem;
  }

  .services-hero p {
    font-size: 1rem;
  }

  /* Service Cards Mobile */
  .services-grid {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  /* CTA Banner Mobile */
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  /* Footer Mobile */
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    min-width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 24px;
  }

  .services-hero p {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1rem;
  }

  .cta-btn,
  .cta-btn-banner,
  .cta-btn-learnabtus {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .cta-banner h2 {
    font-size: 1.25rem;
  }
}


