/* =========================
   Global Reset
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  color: #000000;
}

/* =========================
   Hero / Intro Section
========================= */

.slogan {
  background: linear-gradient(180deg, #1a1a1a, #201E1E);
  min-height: 100vh; /* bigger intro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.slogan img {
  width: 280px;
  max-width: 80%;
  margin-bottom: 30px;
}

.slogan h1 {
  color: #f0f0f0;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 10px;
  font-size: 50px;
  margin: 20px 0 10px;
}

.slogan h2 {
  color: #FFBC00;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 7px;
  font-size: 30px;
  margin: 5px 0;
}

/* =========================
   About Us
========================= */

.about-us {
  padding: 80px 5%;
  background-color: #ffffff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
  font-family: 'Trebuchet MS', sans-serif;
}

.about-text h1 {
  font-size: 50px;
  letter-spacing: 2px;
  color: #FFBC00;
  margin-bottom: 30px;
}

.about-text p {
  max-width: 800px;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  max-height: auto;
  height: auto;
  width: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* =========================
   What We Do
========================= */

.what-we-do {
  background-color: #201E1E;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
}

.what-we-do h1 {
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  color: #FFBC00;
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0 5%;
}

.service {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  color: #7a8da0;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    color 0.25s ease;

  will-change: transform;
}

.service:hover {
  transform: scale(1.08);
  color: #ffffff;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FFBC00;
  position: relative;
}

.dot::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #201E1E;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =========================
   Mission & Vision
========================= */

.mission-vision {
  padding: 100px 5%;
  background-color: #f6f7f9;
  font-family: 'Trebuchet MS', sans-serif;
}

.mv-container {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
}

.mv-box {
  flex: 1;
}

.mv-box h2 {
  font-size: 36px;
  color: #FFBC00;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.mv-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  max-width: 500px;
  text-align: justify;
}

.mv-divider {
  width: 2px;
  background-color: #dddddd;
}

/* =========================
   Core Values
========================= */

.core-values {
  text-align: center;
}

.core-values h2 {
  font-size: 34px;
  letter-spacing: 2px;
  color: #201E1E;
  margin-bottom: 40px;
}

.values-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.values-list span {
  font-size: 18px;
  font-weight: bold;
  color: #555555;
  padding: 12px 24px;
  border: 2px solid #FFBC00;
  border-radius: 30px;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.values-list span:hover {
  background-color: #FFBC00;
  color: #ffffff;
  transform: scale(1.08);
}

