/* RESET & FONT WEIGHTS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Pridi", serif;
  background-color: white;
  color: black;
  line-height: 1.6;
  font-size: 20px;
}

/* Font Weights (for reference, use classes if needed) */
.pridi-extralight { font-weight: 200; }
.pridi-light     { font-weight: 300; }
.pridi-regular   { font-weight: 400; }
.pridi-medium    { font-weight: 500; }
.pridi-semibold  { font-weight: 600; }
.pridi-bold      { font-weight: 700; }

/* HEADER/LOGO */
header {
  background-color: white;
  padding: 1em 0;
  text-align: center;
}
.logo {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 1em auto;
}

/* INTRO SECTION */
.intro-container {
  background-color: #f1541b;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-around;
  align-items: center;
  padding: 2em;
  color: white;
}

/* Left text */
.text-box {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 600px;
  margin-right: 1em;
  font-size: 15px;
  color: white;
}
.text-box h2 {
  color: black;
  font-size: 35px;
  font-family: "Pridi", serif;
  font-weight: 700;
  margin-bottom: 1em;
}
.text-box p {
  margin-bottom: 1em;
}

/* Right stats box */
.side-box {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 500px;
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Stats Box */
.stats {
  background-color: #2c3a4a;
  border-radius: 25px;
  color: white;
  text-align: left;
  padding: 3em;
  width: 100%;
  font-family: "Pridi", serif;
}
.stats h2 {
  color: black;
  font-size: 32px;
  margin-bottom: 1em;
  font-weight: 700;
}
.counter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.counter-box {
  font-size: 24px;
  font-weight: 600;
}
.counter-box .count {
  font-size: 36px;
  font-weight: 700;
  color: #f1541b;
  display: inline-block;
  margin-right: 0.25em;
}

/* SERVICES CAROUSEL */
.services {
  padding: 2em;
  text-align: center;
}
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1500px;
  margin: 2em auto;
  border-radius: 30px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(241, 84, 27, 0.7);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5em 1em;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.tag-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 1.5em;
}
.tag {
  background-color: #f1541b;
  color: white;
  padding: 0.5em 1em;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.tag:hover {
  background-color: #2c3a4a;
}

/* CLIENT LOGOS */
.clients {
  padding: 2em;
  text-align: center;
}
.client-logos img {
  width: 100%;
  max-width: 1570px;
  max-height: 900px;
  margin: auto;
}

/* FOOTER */
footer {
  background-color: #f1541b;
  color: white;
  text-align: center;
  padding: 1.5em 1em;
  font-size: 0.9rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.3em 0.7em;
  }
}
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5em 1em;
    gap: 2em;
  }
  .text-box {
    margin-right: 0;
    max-width: 100%;
    text-align: left;
  }
  .side-box {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .stats {
    width: 100%;
    max-width: 400px;
    padding: 2em 1em;
  }
  .text-box h2,
  .stats h2 {
    font-size: 1.5rem;
  }
  .counter-box .count {
    font-size: 1.5rem;
  }
  .tag {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
  }
}
@media (max-width: 480px) {
  .carousel-btn {
    display: none;
  }
  .text-box,
  .side-box {
    padding: 0 0.5em;
  }
  .counter-box {
    font-size: 1rem;
  }
}
