* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f4f4f1;
  --text: #111111;
  --muted: #626262;
  --panel: #ffffff;
  --line: rgba(17, 17, 17, 0.15);
  --accent: #e53935;
  --accent-dark: #ad1f1c;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(229, 57, 53, 0.08), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.08), transparent 40%),
    var(--bg);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-family: "Teko", sans-serif;
  font-size: 52px;
  letter-spacing: 1px;
  line-height: 0.95;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

.section-title-line {
  width: 110px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--text), var(--accent));
  display: block;
}

.navbar {
  background: transparent;
  transition: 0.25s ease;
  padding: 18px 0;
}

.navbar-brand {
  font-family: "Teko", sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  color: #ffffff;
}

.navbar-brand:hover {
  color: #ffffff;
}

.navbar .nav-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 18px;
}

.navbar .nav-link:hover {
  color: #ffc7c6;
}

.navbar-toggler span {
  color: #ffffff;
}

.nav-scroll {
  background: rgba(16, 16, 16, 0.94);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  padding: 10px 0;
}

.hero-banner {
  min-height: 100vh;
  background: url("images/hero-bg.jpg") center center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  min-height: 100vh;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.7), rgba(229, 57, 53, 0.42));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffd8d7;
  margin-bottom: 15px;
}

.hero-banner h1 {
  font-family: "Teko", sans-serif;
  font-size: 104px;
  line-height: 0.88;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto;
  font-size: 19px;
  color: #f1f1f1;
}

.hero-cta {
  margin-top: 34px;
  display: inline-block;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #111111;
  padding: 12px 36px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  transition: 0.2s ease;
}

.hero-cta:hover {
  text-decoration: none;
  color: #ffffff;
  background: transparent;
}

.about-us h3 {
  font-family: "Teko", sans-serif;
  font-size: 54px;
  line-height: 0.92;
  margin-bottom: 15px;
}

.about-us p {
  color: var(--muted);
  line-height: 1.7;
}

.about-us img {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.anchor-btn {
  margin-top: 28px;
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 28px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

.anchor-btn:hover {
  color: #ffffff;
  background: var(--accent-dark);
  text-decoration: none;
}

.pd-lt-10 {
  padding-left: 8px;
}

.bg-grey {
  background: #ecece8;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.service-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 25px;
  height: 100%;
  background: var(--panel);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.09);
}

.service-box .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #111111, var(--accent));
}

.service-box .icon i {
  font-size: 26px;
}

.service-box h4 {
  font-size: 26px;
  font-family: "Teko", sans-serif;
  margin-bottom: 7px;
}

.service-box p {
  color: var(--muted);
  line-height: 1.65;
}

.portfolio .gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.no-padding {
  padding: 0;
}

.item-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.item-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.overlay-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17, 17, 17, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px;
}

.overlay-img h6 {
  color: #ffc9c8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.overlay-img h4 {
  color: #ffffff;
  font-size: 30px;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.5px;
}

.item-img:hover img {
  transform: scale(1.06);
}

.testimonials {
  background: url("images/testimonials-bg.jpg") center center / cover no-repeat;
}

.testimonials-overlay {
  background: rgba(10, 10, 10, 0.82);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 30px 22px;
}

.testimonial-item .icon {
  font-size: 30px;
  color: #ffd5d5;
  margin-bottom: 15px;
}

.testimonial-item p {
  color: #f2f2f2;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-item h5 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 4px;
  font-family: "Teko", sans-serif;
}

.testimonial-item h6 {
  color: #ffbcba;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.info-box {
  display: flex;
  margin-bottom: 25px;
}

.info-box .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.info-box h4 {
  font-size: 20px;
  font-family: "Teko", sans-serif;
}

.info-box p {
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.bttn {
  border: none;
  border-radius: 28px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
}

.bttn:hover {
  background: var(--accent-dark);
}

.footer-copy {
  background: #121212;
  color: #d0d0d0;
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
}

@media all and (max-width: 991px) {
  .navbar .navbar-collapse {
    background: rgba(16, 16, 16, 0.96);
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    margin-top: 8px;
  }

  .navbar .nav-link {
    margin: 7px 0;
  }

  .hero-banner h1 {
    font-size: 74px;
  }

  .section-title h2 {
    font-size: 44px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 768px) {
  .section-padding {
    padding: 65px 0;
  }

  .hero-overlay {
    padding: 120px 0 70px;
  }

  .hero-banner h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .about-us h3 {
    font-size: 45px;
  }
}
