/* ===== Reset ===== */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  box-sizing: border-box;
}
h1,
h2,
h3 {
  margin: 50px 0;
}
p {
  margin: 4% 0%;
  text-align: center;
}
button {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 5px 20px;
  border-bottom: 1px solid #eee;
}
.logo-box {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  gap: 8px;
}
.logo-icon {
  width: 200px;
  height: 120px;
}
.header .nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.header .nav > div {
  padding: 10px;
}
.header .nav .active {
  color: #000;
  background: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero-img {
  width: 100%;
  height: 950px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-text {
  position: absolute;
  top: 29%;
  width: 100%;
}
.hero-text .small-text {
  font-size: 14px;
}
.hero-text h1 {
  font-size: 38px;
  font-weight: bold;
}
.hero-extra-img {
  margin-top: 15px;
  width: 290px;
}
h4 {
  position: absolute;
  color: #000;
  bottom: 2px;
  right: 43%;
  top: 0%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.appointment-box {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 60px;
  display: flex;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== Services ===== */
.services {
  text-align: center;
  padding: 10px 30px;
}
.services .service-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.services .service {
  border: 1px solid #ddd;
  padding: 20px;
  width: 220px;
}
.services .service img {
  width: 60%;
  height: 150px;
  object-fit: cover;
}
.services.dark {
  background: #000;
  color: #fff;
}
.services.dark .subtitle {
  color: #aaa;
}
.services.light {
  background: #fff;
  color: #000;
}

/* ===== Industry, Eco, Trusted ===== */
.industry,
.eco,
.trusted {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 30px 60px;
}
.industry-content,
.eco-content,
.trusted-content {
  flex: 1;
}
.industry-img,
.eco-img,
.trusted-img {
  flex: 1;
}
.industry img,
.eco img,
.trusted img {
  width: 150%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: cover;
}
.play-btn {
  background: none;
  border: 1px solid #000;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #000;
}

/* ===== Reviews ===== */
.reviews {
  text-align: center;
  padding: 60px 30px;
  background: #f9f9f9;
}
.review-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.review {
  width: 220px;
}
.review-text {
  color: #666;
  font-size: 14px;
}
.profile {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.review-name {
  font-weight: bold;
  margin-top: 5px;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.logos img {
  height: 40px;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  text-align: center;
  color: #fff;
}
.cta-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.cta-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.call-now {
  margin-bottom: 10px;
  font-size: 14px;
}

/* ===== Footer ===== */
.footer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px 19px;
  background: #fff;
  color: #000;
  border-top: 1px solid #eee;
}

.footer-column {
  width: 170px;
}

.footer-logo {
  width: 180px;
  height: 100px;
  margin-bottom: 20px;
}

.social-icons {
  margin-right: 120px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #000000;
}

.footer-bottom {
  text-align: center;
  padding: 13px;
  font-size: 14px;
  background: #f9f9f9;
  margin-top: 20px;
}
