.topbar {
  background-color: #333;
}

.topbar__contact .topbar__item {
  color: #fff;
}

.header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header__inner {
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  margin-left: 0;
}

.header__link {
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  padding: 10px 15px;
}

.header__cta {
  background-color: #007bff;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  border: none;
}

.usp {
  background-color: #274b8f;
  padding-top: 40px;
  padding-bottom: 40px;
}

.usp__item {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.usp__icon {
  font-size: 40px;
  margin-bottom: 10px;
  background-color: transparent;
  border: none;
  width: auto;
  height: auto;
}

.usp__text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.hero__heading {
  color: #fff;
  font-family: wfont_7cb51a_16e75e7797ad455baa6b15a8c88fa796, wf_16e75e7797ad455baa6b15a8c, orig_roboto_bold;
  font-size: 56px;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtext {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero__button {
  background-color: #007bff;
  color: #fff;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
  border: none;
}

.hero__phone {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero__content {
  text-align: left;
  max-width: 600px;
  padding-left: 5%;
}

.logo-strip {
  display: block;
  padding: 50px 0;
  background-color: #f8f8f8;
}

.logo-strip__heading {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.logo-strip__slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.logo-strip__logo {
  margin: 0 20px;
  flex-shrink: 0;
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-strip__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 0;
}

.about__heading {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about__text {
  flex: 1;
  font-family: helvetica-w01-roman, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 25.2px;
  margin-bottom: 20px;
}

.about__image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-strip {
  display: block;
  background-color: #007bff;
  padding: 60px 0;
  text-align: center;
}

.cta-strip__text {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-strip__button {
  background-color: #fff;
  color: #007bff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.services {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #333;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.services__card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.services__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.gallery {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.gallery__heading {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery__grid {
  margin-top: 50px;
}