* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

#main-header {
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
  transition: top 0.3s ease;
}

.mobile-logo,
.menu-toggle {
  display: none;
}

.menu-toggle {
  flex-direction: column;
  cursor: pointer;
  z-index: 2000;
  margin-left: auto;
}
.bar {
  width: 30px;
  height: 3px;
  background-color: #ff8c00;
  margin: 4px 0;
  transition: 0.4s;
  border-radius: 2px;
}
.menu-toggle.is-active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: #ff8c00;
  border-bottom: 2px solid #ff8c00;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -5px;
}
h1.logo-top {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}
.logo-line {
  width: 100%;
  max-width: 180px;
  height: 3px;
  background-color: #ff8c00;
  margin: 5px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.logo-bottom {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 4px;
  display: block;
  text-shadow: 0 2px 5px rgba(255, 255, 255, 0.9);
}

.services {
  position: relative;
  width: 100%;
  height: 135vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1)
  );
  pointer-events: none;
}

.hero-bg-title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11vw;
  font-weight: 900;
  z-index: 5;
  margin: 0;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  justify-content: center;
}

.filled-text {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.half-s-start,
.half-s-end {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 2;
}

.half-s-start {
  background-image: linear-gradient(90deg, transparent 50%, #ffffff 50%);
}

.half-s-end {
  background-image: linear-gradient(90deg, #ffffff 50%, transparent 50%);
}

.half-s-start::before,
.half-s-end::before {
  content: attr(data-letter);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: transparent;

  -webkit-text-stroke: 3px #ffffff;

  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.benefits {
  position: relative;
  width: 100%;
  height: 90vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 100px 20px 100px 20px;
  margin-top: -150px;
  z-index: 20;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}
.benefits-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
}
.benefits-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon img {
  width: 100%;
  height: auto;
}
.benefit-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}
.benefit-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  text-align: justify;
}
.benefits-img-box {
  flex: 1;
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.benefits-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coverage {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #000000;
}
.coverage .hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.coverage .hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.coverage-text {
  position: absolute;
  bottom: 80px;
  right: 5%;
  text-align: right;
  color: #ffffff;
  z-index: 10;
}
.coverage-text h2 {
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 15px 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
.coverage-text h2 span.highlight {
  color: #ff8c00;
}
.coverage-text p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #ddd;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.footer-end {
  background-color: #ffffff;
  padding: 60px 20px 20px 20px;
  color: #333;
  border-top: 4px solid #ff8c00;
  position: relative;
  z-index: 50;
  font-size: 0.9rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col {
  flex: 1;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-icon {
  width: 50px;
  height: auto;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #1a1a1a;
  text-transform: uppercase;
}
.footer-logo-text .subtitle {
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 14px;
  margin-top: 2px;
}
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 25px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  display: inline-block;
  min-width: 200px;
}
.footer-info p,
.footer-links li a {
  text-transform: uppercase;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li a {
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.footer-links li a:hover {
  color: #ff8c00;
}
.footer-copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0e0e0e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .mobile-logo {
    display: block;
    width: 40px;
    height: auto;
    z-index: 2001;
  }
  .mobile-logo img {
    width: 100%;
    height: auto;
  }
  .menu-toggle {
    display: flex;
    position: static;
    margin: 0;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0e0e0e;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 40px;
    padding-top: 70px;
    transition: 0.5s ease-in-out;
    z-index: 1000;
    gap: 0;
  }
  nav.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
  nav .logo {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    text-align: right;
  }
  .nav-links.left {
    margin-bottom: 40px;
  }
  .nav-links a {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover {
    border-bottom: 2px solid #ff8c00;
  }

  .hero-bg-title {
    font-size: 15vw;
  }
  .half-s-start::before,
  .half-s-end::before {
    -webkit-text-stroke: 2px #ffffff;
  }

  .benefits-container {
    gap: 40px;
  }
  .benefits-img-box {
    height: 400px;
  }
  .benefits {
    margin-top: -100px;
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  #main-header {
    top: 0;
  }

  .hero-bg-title {
    font-size: 13vw;
    top: 20%;
  }
  .half-s-start::before,
  .half-s-end::before {
    -webkit-text-stroke: 1px #ffffff;
  }

  .benefits {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 60px 20px;
    height: auto;
  }
  .benefits-container {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .benefits-list {
    gap: 35px;
  }

  .benefit-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  .benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }
  .benefit-text h3 {
    text-align: left;
    font-size: 18px;
    margin-top: 5px;
  }
  .benefit-text p {
    text-align: left;
    font-size: 14px;
  }
  .benefits-img-box {
    width: 100%;
    height: 300px;
  }

  .coverage {
    height: 75vh;
  }
  .coverage .hero-image-container img {
    object-position: center center;
  }
  .coverage-text {
    bottom: 40px;
    right: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }
  .coverage-text h2 {
    font-size: 34px;
    margin-bottom: 15px;
    line-height: 1.1;
  }
  .coverage-text p {
    font-size: 16px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
  .footer-left {
    align-items: center;
    gap: 30px;
  }
  .footer-logo-box {
    flex-direction: column;
  }
}
