body {

margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: #f9f9f9; /* optional: light background */
    padding-bottom: 3rem; /* extra space at bottom of page */

}
.main-content{
    padding: 0.5em;
     max-width: 1200px;   /* maximum width of container */
  margin: 0 auto;      /* center horizontally */
}
.service-option-container {
  display: flex;
  flex-direction: column; /* stack content vertically */
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-option-container-title{
    font-size: medium;
    font-weight: bold;
  color: #6b7280;
}
.service-option-container-paragraph{
  color: #cc5928; /* equivalent to Tailwind’s text-gray-900 */

  overflow: hidden;
  cursor: pointer;
}

.service-options {
  display: grid;
  gap: 1rem; /* space between items */
  grid-template-columns: 1fr; /* default: 1 column (mobile) */
}
.service-option-container-button {
  margin-top: auto; /* pushes button to the bottom of the card */
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: #cc5928;
  color: #fff;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
/* Tablet screens (≥ 768px) */
@media (min-width: 768px) {
  .service-options {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Large screens (≥ 1024px) */
@media (min-width: 1024px) {
  .service-options {
    grid-template-columns: repeat(3, 1fr); /* 4 columns */
  }
}
/* Header styling */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  background: #cc5928; /* primary color */
  color: #fff;
  position: sticky; /* keeps header visible */
  top: 0;           /* stick to top */
  z-index: 1000;    /* stay above other content */
}
/* Logo */
.site-header .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Desktop menu */
.desktop-menu {
  display: flex;
  gap: 1.5rem;
}

.desktop-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s ease;
}

.desktop-menu a:hover {
  opacity: 0.8;
}

/* Mobile menu button */
.mobile-menu-button {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #cc5928;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  padding: 1rem;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }
}

/* Banner container with 3:1 aspect ratio */
.landing-banner {
  position: relative;
  width: 100%;
  /* 3:1 aspect ratio → height = width / 3 */
  aspect-ratio: 3 / 1;
  background: url('/assets/collaboration.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* Overlay optional for readability */
.landing-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* darker overlay, 60% opacity */
}


/* Banner content */
.banner-content {
  position: relative; /* above overlay */
  z-index: 1;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.banner-button {
  padding: 0.75rem 1.5rem;
  background: #cc5928; /* primary color */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.banner-button:hover {
  background: #a3471f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 1.75rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}
.service-option-container img {
  width: 100%;
  height: 240px;
  object-fit: cover;   /* ensures the image fills the square without distortion */
  border-radius: 6px;  /* optional: rounded corners to match container */
  margin: 1rem 0;
  display: block;
}
.lazy-img {
  opacity: 0;               /* start hidden */
  transition: opacity 0.5s ease-in-out;
}

.lazy-img:loading {
  filter: blur(5px);        /* optional blur effect while loading */
}

.lazy-img[loading="lazy"] {
  opacity: 1;               /* fade in once loaded */
}
