* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #5c5656;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: white;
}

.hero {
  padding: 40px 20px;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: clamp(1rem, 5vw, 1.5rem);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo {
  max-width: 100%;
  width: clamp(150px, 90vw, 200px);
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn {
  background-color: #0a74da;
  color: white;
  padding: 15px 30px;
  font-size: clamp(1rem, 4vw, 1.1rem);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  min-height: 48px;
  min-width: 48px;
}

.btn:hover {
  background-color: #0856b8;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.benefit h3 {
  font-size: 1.5rem;
  color: #0a74da;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 1rem;
  color: #666;
}


body {
  line-height: 1.6;
  color: white;
}

header {
  background: #0a74da;
  color: white;
  text-align: center;
  padding: 20px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

header h1 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
}

header p {
  margin: 10px 0;
  font-size: clamp(0.9rem, 4vw, 1.1rem);
}

.menu-toggle { display: none; }

header nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
}

.dropdown-btn {
  background: linear-gradient(135deg, #0a74da 0%, #0856b8 100%);
  color: white;
  padding: 14px 24px;
  font-size: clamp(0.95rem, 4vw, 1.1rem);
  border: 2px solid white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(10, 116, 218, 0.4);
  white-space: nowrap;
}

.dropdown-btn:hover {
  background: linear-gradient(135deg, #0856b8 0%, #0a74da 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(10, 116, 218, 0.6);
  border-color: #e0e0e0;
}

.dropdown-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(180deg, #0856b8 0%, #0a74da 100%);
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  z-index: 1000;
  border-radius: 10px;
  top: 100%;
  right: 0;
  margin-top: 10px;
  border: 2px solid white;
}

.dropdown-content a {
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  display: block;
  font-size: clamp(0.9rem, 3vw, 1rem);
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 4px solid transparent;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: white;
  padding-left: 28px;
}

.dropdown-content a:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-content a:last-child {
  border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-content {
  display: none;
}

.dropdown.active .dropdown-content {
  display: block;
}

/* Top navigation under site name */
.top-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0;
}

.top-nav a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Active/current page styling */
.top-nav a.active {
  background: linear-gradient(90deg, rgba(255,255,255,0.26), rgba(255,255,255,0.18));
  color: #002b5c;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transform: translateY(-2px) scale(1.01);
}

/* Desktop: make top-nav links look like buttons */
@media (min-width: 769px) {
  .top-nav a {
    background: #ffffff;
    color: #0a74da;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(10,116,218,0.32);
    box-shadow: 0 6px 14px rgba(15,23,34,0.06);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  }

  .top-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(15,23,34,0.10);
    background: #ffffff;
  }

  .top-nav a.active {
    background: linear-gradient(90deg, #ffffff, #f2f8ff);
    color: #002b5c;
    border-color: rgba(10,116,218,0.48);
    box-shadow: 0 10px 22px rgba(10,116,218,0.12);
    transform: translateY(-3px) scale(1.01);
  }
}

section h2 {
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

section p {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

header nav a:hover {
  color: #e0e0e0;
  text-decoration: underline;
}

section {
  padding: 60px 20px;
  text-align: center;
  color: white;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

section p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 3px solid #0a74da;
  font-size: clamp(0.85rem, 3vw, 1rem);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .menu-toggle { display: none; }

  /* Keep primary nav visible on mobile, stack vertically */
  header nav, .top-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
  }

  /* Make links large, full-width, easy to tap */
  .top-nav a {
    display: block;
    width: calc(100% - 40px);
    max-width: 420px;
    padding: 14px 18px;
    font-size: 1.05rem;
    border-radius: 10px;
    background: #ffffff;
    color: #0a74da;
    text-align: center;
    border: 1px solid rgba(10,116,218,0.28);
    position: relative;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  }

  .top-nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
  }

  .top-nav a.active {
    background: #0a74da;
    color: #ffffff;
    border-color: rgba(10,116,218,0.48);
    box-shadow: 0 10px 20px rgba(10,116,218,0.10);
    transform: none;
  }

  /* subtle centered underline for active mobile nav */
  .top-nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: 36%;
    height: 3px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    opacity: 0.95;
  }

  /* Preserve dropdown compatibility if present */
  .dropdown-content {
    position: static !important;
    background: linear-gradient(180deg, #0856b8 0%, #0a74da 100%) !important;
    min-width: 100% !important;
    box-shadow: none !important;
    padding: 0 !important;
    transform: none !important;
    margin-top: 0 !important;
    display: none;
    border-radius: 0 !important;
    border: none !important;
    right: auto !important;
    top: auto !important;
  }

  .dropdown.active .dropdown-content {
    display: block !important;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown {
    position: relative !important;
    top: auto !important;
    right: auto !important;
  }

  .dropdown-btn {
    width: 100%;
    border-radius: 0 !important;
    padding: 12px 15px !important;
    justify-content: flex-start !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, #0a74da 0%, #0856b8 100%) !important;
  }

  .dropdown-btn:hover {
    transform: none !important;
    background: linear-gradient(135deg, #0856b8 0%, #0a74da 100%) !important;
    box-shadow: none !important;
  }

  .dropdown-content a {
    padding: 12px 15px !important;
    padding-left: 30px !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-content a:hover {
    padding-left: 30px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  .dropdown-content a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 30px 15px;
  }

  section {
    padding: 30px 15px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit {
    padding: 20px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  header {
    padding: 15px 10px;
  }

  .menu-toggle {
    right: 10px;
    top: 15px;
    font-size: 1.3rem;
  }

  section {
    padding: 25px 10px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .benefit {
    padding: 15px;
  }

  .benefit h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .benefit p {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
}

/* Tables and lists for mobile */
section ul {
  list-style: none;
  padding: 0;
}

section ul li {
  padding: 12px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services Styles */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 0;
}

.service-card {
  background: #ffffff;
  color: #333;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 34, 0.08);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 34, 0.12);
}

.service-card h3 {
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  color: #0a74da;
  margin-bottom: 15px;
  margin-top: 0;
}

.service-card p {
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: #555;
  margin: 0 0 16px 0;
  flex: 1 1 auto;
}

.service-card .price {
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  font-weight: bold;
  color: #0a74da;
  background: #f0f0f0;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  border-left: 4px solid #0a74da;
  margin-top: 8px;
}

/* Desktop: stronger boxed layout and larger bold price */
@media (min-width: 900px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .service-card {
    padding: 34px;
    border-radius: 12px;
  }

  .service-card .price {
    font-size: 1.2rem;
    font-weight: 800;
    padding: 14px;
    border-radius: 8px;
    background: #ffffff;
    color: #0a74da;
    border-left: 6px solid #0a74da;
  }
}

/* Request Quote button inside service cards */
.service-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  background: #0a74da;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  align-self: flex-end;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(10,116,218,0.28);
}

@media (max-width: 768px) {
  .service-cta {
    display: block;
    width: calc(100% - 40px);
    max-width: 420px;
    text-align: center;
    align-self: center;
  }
}

/* Mobile Services Styles */
@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }
}