body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* Hero image */
.hero {
  background-color: #4a4e52;
  color: #ffffff;
  padding: 20px 0px;
  /* Increased height for better visibility */
  /* keep a controlled height and hide overflow so a large inline image doesn't spill into following sections */
  min-height: clamp(380px, 60vw, 640px);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Use background-image for hero banner for better control */
.hero {
  background-image: url('images/survey-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Flexbox layout */
.header-content {
  display: flex;
  align-items: center;         /* vertically centers both logo and title */
  justify-content: center;     /* horizontally centers the group */
  position: relative;
  min-height: clamp(70px, 10vw, 110px);
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 2px solid #6a6e72;
}

/* Logo on the left */
.logo {
  width: auto;
  height: clamp(50px, 8vw, 95px);
  display: block;
  margin: 0 auto;
}

/* Title centered */
.title {
  font-size: clamp(28px, 4vw, 50px);
  letter-spacing: 3px;
  font-weight: bold;
  color: #DD8C18;
  margin: 0;
  text-align: center;
}

.content{
    width: min(1200px, 92vw);
    height: auto;
    margin: auto;
    color: #000000;
    text-align: center;
  /* reduced top padding because hero now contains the main banner image */
  padding-top: 40px;
    font-family: Arial;
}

.content h1{
    font-family: Arial;
    color:#DD8C18;
    font-size: clamp(28px, 4vw, 50px);
    padding-left: 20px;
    margin-top: 10px;
    letter-spacing: 2px;
}

.par {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}

.about-section {
  text-align: left;
  padding-top: 60px;
}

.about-section h1 {
  color: #3b3d4a;
  letter-spacing: 0;
  padding-left: 0;
  margin-bottom: 14px;
}

.about-divider {
  display: block;
  width: 160px;
  height: 3px;
  background: #f28b1a;
  margin: 0 0 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: start;
}

.about-text {
  max-width: 520px;
}

.about-lead {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 18px;
  color: #2f3340;
}

.about-section .par {
  margin: 0;
  color: #4b4f5a;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.services-section {
  padding: 70px 0 80px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.services-section h1 {
  color: #3b3d4a;
  letter-spacing: 0;
  padding-left: 0;
  margin-bottom: 12px;
}

.services-divider {
  display: block;
  width: 160px;
  height: 3px;
  background: #f28b1a;
  margin: 0 auto 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  text-align: left;
}

.service-card {
  max-width: 270px;
  margin: 0 auto;
}

.service-icon {
  color: #f28b1a;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke-width: 2.6;
}

.service-card h2 {
  font-size: 20px;
  margin: 0 0 18px;
  color: #2f3340;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.8;
  color: #6f7482;
}

@media (max-width: 640px) {
  .services-grid {
    justify-items: center;
  }

  .service-card {
    max-width: none;
    width: min(360px, 100%);
  }
}

.clients-section {
  padding: 40px 0 80px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.clients-section h1 {
  color: #3b3d4a;
  letter-spacing: 0;
  padding-left: 0;
  margin-bottom: 40px;
  font-size: clamp(28px, 4vw, 48px);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  background: #ffffff;
  padding: 2px;
}

.client-card {
  background: #b8c1c8;
  position: relative;
  aspect-ratio: 4 / 3;
}

.client-card::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.client-card img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}

.contact-section {
  padding: 70px 0 90px;
  font-family: Arial, sans-serif;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  background: #f6f7f9;
  border-radius: 8px;
  overflow: hidden;
}

.contact-image {
  background: #e9edf2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 260px;
}

.contact-image img {
  width: min(340px, 80%);
  height: auto;
}

.contact-body {
  text-align: left;
  padding: 40px 50px;
}

.contact-body h1 {
  color: #3b3d4a;
  letter-spacing: 0;
  padding-left: 0;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
}

.contact-body p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #4b4f5a;
  margin: 0 0 24px;
  max-width: 520px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid #f28b1a;
  color: #2f3340;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: #ffffff;
}

.contact-button-icon {
  width: 22px;
  height: 22px;
}

.contact-button:hover {
  background: #f28b1a;
  color: #ffffff;
}

.contact-button:hover .contact-button-icon {
  filter: brightness(0) invert(1);
}

.contact-section {
  padding: 70px 0 90px;
  font-family: Arial, sans-serif;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  background: #f6f7f9;
  border-radius: 8px;
  overflow: hidden;
}

.contact-image {
  background: #e9edf2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 260px;
}

.contact-image img {
  width: min(340px, 80%);
  height: auto;
}

.contact-body {
  text-align: left;
  padding: 40px 50px;
}

.contact-body h1 {
  color: #3b3d4a;
  letter-spacing: 0;
  padding-left: 0;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
}

.contact-body p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #4b4f5a;
  margin: 0 0 24px;
  max-width: 520px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid #f28b1a;
  color: #2f3340;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: #ffffff;
}

.contact-button-icon {
  width: 22px;
  height: 22px;
}

.contact-button:hover {
  background: #f28b1a;
  color: #ffffff;
}

.contact-button:hover .contact-button-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-body {
    padding: 32px;
    text-align: center;
  }

  .contact-body p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-image {
    min-height: 200px;
  }

  .contact-button {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-body {
    padding: 32px;
    text-align: center;
  }

  .contact-body p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-image {
    min-height: 200px;
  }

  .contact-button {
    justify-content: center;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.32);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: min(820px, 90vw);
  padding: 0 20px;
}

.hero-content h1 {
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #ffffff;
}

.hero-content p {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.6;
  margin: 0 0 22px;
  color: #ffffff;
}

.hero-button {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

/* hero-image removed (we use background-image instead) */
