/* Base Styling */
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: scroll;             /* Allow vertical scroll */
  -ms-overflow-style: none;      /* Hide scrollbar in IE/Edge */
  scrollbar-width: none;         /* Hide scrollbar in Firefox */
}

body::-webkit-scrollbar {
  display: none;                 /* Hide scrollbar in Chrome/Safari */
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Header Styling - Keep This Same Across All Pages */
.site-header {
  background: #262626;
  padding: 15px 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  transition: background 0.3s;
  border-radius: 4px;
}

.nav-list li a.active,
.nav-list li a:hover {
  background: #cdd855;
}

/* Responsive Stack on Mobile */

@media (max-width: 768px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
/* Banner */
.banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Services Section */
.services-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

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

.service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

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

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
}

/* Footer */
.site-footer {
  background-color: #262626;
  color: #ffffff;
  padding: 20px 40px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}