body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  color: #374151;
}
header {
  background: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}

.top-bar {
  background: #f5f5f5;
  padding: 8px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0,0.08);
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.top-contact span {
  display: flex;
  align-items: center;
  color: #007bff;
  font-weight: 500;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.header {
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.title {
  font-size: 2rem;
  font-weight: 700;
}
.highlight {
  color: #2563eb; /* Tailwind’s blue-600 equivalent */
  font-weight: 600;
}

.owner {
  color: #facc15;
}

.content {
  padding: 2rem;
}

.intro p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.highlight {
  color: #2563eb;
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card img {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  color: #4b5563;
}

.extra-info {
  margin-top: 3rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}

.extra-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.extra-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bold {
  font-weight: bold;
}


.site-footer {
  background-color: #3b3e51;
  color: #fff;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  color: #ffc107;
  border-left: 4px solid #00aaff;
  padding-left: 8px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
.site-footer .contact ul li {
  color: white;
  list-style: none;
  text-decoration: none;
  cursor: pointer;
  margin-left: 6rem;
}

.site-footer .contact ul li a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.site-footer .contact ul li a:hover {
  text-decoration: underline;
}


.site-footer .contact h3{
  margin-left: 6rem;
}



/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  border-bottom: 1px solid #ddd;
}

.sidebar-header img {
  height: 40px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.overlay.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
