:root {
  --primary: #1842b6;
  --secondary: #ff7800;
  --dark: #000103;
  --navy: #000b2f;
  --light: #f8f8f9;
  --body: #787878;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--body);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  color: #111;
  font-family: "Saira", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .35s ease, visibility .35s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.topbar {
  padding: 8px 0;
  color: rgba(255,255,255,.65);
  background: var(--dark);
  font-size: 14px;
}

.topbar-info {
  display: flex;
  gap: 24px;
}

.topbar i,
.top-note {
  color: var(--secondary);
}

.topbar-info i {
  margin-right: 8px;
}

.socials,
.mini-socials,
.footer-socials {
  display: flex;
  gap: 8px;
}

.socials a,
.mini-socials a,
.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
}

.main-nav {
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 11, 47, .08);
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.logo img {
  width: auto;
  height: 66px;
  display: block;
  object-fit: contain;
}

.logo span {
  color: var(--primary);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.logo strong {
  color: var(--primary);
  font-size: 1em;
  font-weight: 700;
}

.logo b {
  color: var(--secondary);
}

.footer span {
  color: var(--secondary);
}

.main-nav .navbar-nav .nav-link {
  color: var(--dark);
  font-family: "Saira", sans-serif;
  font-size: 17px;
  padding: 33px 18px;
}

.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active {
  color: var(--secondary);
}

.nav-call {
  gap: 16px;
  color: var(--dark);
}

.nav-call > i {
  color: var(--primary);
  font-size: 30px;
}

.nav-call small {
  display: block;
  color: #6d7487;
}

.nav-call strong {
  color: var(--secondary);
  font-weight: 500;
}

.search-link {
  margin-left: 18px;
  color: var(--primary);
  font-size: 26px;
}

.hero .carousel-item {
  height: 710px;
  min-height: 580px;
}

.hero .carousel-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
}

.hero .carousel-caption {
  inset: 0;
  display: flex !important;
  align-items: center;
  text-align: left;
}

.hero h6 {
  color: var(--secondary);
  font-size: 24px;
}

.hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.1;
  margin: 18px 0 24px;
}

.hero p {
  max-width: 760px;
  color: #fff;
  font-size: 20px;
}

.pill {
  border-radius: 999px;
  padding: 16px 42px;
  font-weight: 600;
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
}

.btn-primary:hover {
  border-color: var(--secondary);
  background: var(--secondary);
}

.btn-secondary {
  border-color: var(--secondary);
  background: var(--secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.facts {
  padding: 52px 0;
  background: var(--secondary);
}

.fact {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fact strong {
  color: var(--primary);
  font-family: "Saira", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.fact span {
  color: #fff;
  font-family: "Saira", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: 96px 0;
}

.section-title {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow {
  display: block;
  color: var(--primary);
  font-family: "Saira", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section h2,
.about h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.22;
}

.about-images {
  min-height: 470px;
  position: relative;
}

.about-images img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.about-main {
  width: 75%;
  height: 355px;
}

.about-float {
  position: absolute;
  top: 24%;
  left: 25%;
  width: 75%;
  height: 355px;
}

.services {
  background: #fff;
}

.service-card {
  height: 100%;
  padding: 42px 28px;
  text-align: center;
  background: var(--light);
  border-radius: 2px;
  transition: .35s ease;
}

.service-card i {
  color: var(--primary);
  font-size: 80px;
  margin-bottom: 26px;
  transition: .35s ease;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card a {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--secondary);
  font-weight: 600;
}

.service-card:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:hover i {
  color: var(--secondary);
}

.service-card:hover a {
  color: var(--primary);
  background: #fff;
}

.project-card,
.blog-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  background: var(--light);
}

.project-card img,
.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}

.project-card div {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 20px;
  color: #fff;
  background: rgba(24, 66, 182, .9);
  transform: translateY(10px);
  transition: .35s ease;
}

.project-card span,
.blog-card span {
  color: var(--secondary);
  font-weight: 700;
}

.project-card h3 {
  color: #fff;
  font-size: 24px;
  margin: 4px 0 0;
}

.project-card:hover img,
.blog-card:hover img {
  transform: scale(1.08);
}

.project-card:hover div {
  background: rgba(38, 212, 140, .92);
}

.project-card:hover span {
  color: var(--primary);
}

.blog-card {
  padding-bottom: 24px;
}

.blog-card > span,
.blog-card h3,
.blog-card small,
.blog-card p,
.blog-card footer {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
}

.blog-card > span {
  margin-top: 22px;
}

.blog-card h3 {
  margin-top: 14px;
  font-size: 20px;
}

.blog-card footer {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #e2e2e2;
}

.team {
  background: #fff;
}

.team-card {
  padding: 26px 20px 30px;
  text-align: center;
  background: var(--light);
  border-radius: 4px;
  transition: .35s ease;
}

.team-card img {
  width: min(190px, 82%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 22px;
  border: 10px solid #fff;
}

.team-card h3 {
  font-size: 22px;
}

.team-card:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.team-card:hover h3,
.team-card:hover p {
  color: #fff;
}

.mini-socials {
  justify-content: center;
}

.testimonials {
  background: var(--light);
}

.testimonial-card {
  height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid #e4e4e4;
}

.client {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e4e4e4;
}

.client img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 4px;
}

.client h3 {
  color: var(--secondary);
  font-size: 24px;
}

.stars {
  color: var(--primary);
  letter-spacing: 0;
}

.contact-info > div > div {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 22px;
  background: var(--light);
  border-radius: 6px;
}

.contact-info i {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--secondary);
  border-radius: 50%;
}

.contact-info h3 {
  color: var(--primary);
  font-size: 23px;
  margin: 0;
}

.contact-info p {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 600;
}

.map {
  width: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 6px;
}

.contact-form {
  height: 100%;
  padding: 48px;
  background: var(--light);
  border-radius: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  display: block;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 0;
  outline: 0;
  background: #fff;
}

.contact-form button {
  padding: 16px 44px;
  border-radius: 4px;
}

.footer {
  padding: 86px 0 28px;
  color: rgba(255,255,255,.78);
  background: var(--dark);
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer h3 {
  color: var(--secondary);
  font-size: 26px;
  margin-bottom: 22px;
}

.footer a {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}

.footer-socials a {
  display: grid;
  margin-bottom: 0;
}

.footer hr {
  border-color: rgba(255,255,255,.25);
  margin: 52px 0 24px;
}

.copyright {
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

@media (max-width: 991.98px) {
  .main-nav {
    min-height: auto;
    padding: 12px 0;
  }

  .logo {
    max-width: 220px;
  }

  .logo img {
    height: 50px;
  }

  .logo span {
    font-size: 24px;
  }

  .main-nav .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .hero .carousel-item {
    height: 640px;
  }

  .about-images {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .hero .carousel-item {
    height: 590px;
    min-height: 590px;
  }

  .hero .carousel-caption {
    padding: 0 10px;
  }

  .hero p {
    font-size: 17px;
  }

  .pill {
    padding: 13px 26px;
  }

  .section {
    padding: 70px 0;
  }

  .fact {
    align-items: center;
  }

  .about-images {
    min-height: 360px;
  }

  .about-main,
  .about-float {
    height: 260px;
  }

  .contact-form {
    padding: 28px;
  }
}


/* Multi-page additions */
.main-nav .dropdown-menu { border: 0; border-top: 3px solid var(--secondary); border-radius: 0; padding: 10px 0; min-width: 290px; box-shadow: 0 16px 35px rgba(0,11,47,.14); }
.main-nav .dropdown-item { padding: 10px 20px; color: var(--dark); font-family: "Saira", sans-serif; }
.main-nav .dropdown-item:hover, .main-nav .dropdown-item:focus { color: var(--secondary); background: #fff7f0; }
.page-hero { position: relative; padding: 118px 0; color: #fff; background: linear-gradient(rgba(0,11,47,.83),rgba(0,11,47,.83)), url("https://themewagon.github.io/HighTechIT/img/carousel-1.jpg") center/cover; }
.page-hero h1 { color: #fff; font-size: clamp(42px,6vw,70px); margin-bottom: 18px; }
.page-hero nav { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.page-hero nav a { color: var(--secondary); }
.value-box { display: flex; align-items: center; gap: 12px; padding: 16px; color: #111; background: var(--light); }
.value-box i { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: var(--primary); border-radius: 50%; }
.process-section { background: var(--light); }
.process-card { position: relative; height: 100%; padding: 36px 30px; background: #fff; border-bottom: 4px solid var(--primary); }
.process-card b { color: var(--secondary); font-family: "Saira",sans-serif; font-size: 42px; opacity: .55; }
.process-card h3 { margin: 8px 0 12px; }
.cta-band { padding: 65px 0; color: #fff; background: var(--primary); }
.cta-band span { color: var(--secondary); font-weight: 700; }
.cta-band h2 { max-width: 750px; margin: 7px 0 0; color: #fff; }
.cta-band .btn { flex: 0 0 auto; margin-top: 20px; color: var(--primary); }
.service-sidebar { padding: 28px; background: var(--light); }
.service-sidebar h3 { padding-bottom: 18px; border-bottom: 2px solid var(--secondary); }
.service-sidebar a { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; color: #222; border-bottom: 1px solid #ddd; font-weight: 600; }
.service-sidebar a:hover, .service-sidebar a.active { color: var(--secondary); }
.sidebar-help { margin-top: 28px; padding: 38px 28px; text-align: center; color: #fff; background: var(--primary); }
.sidebar-help > i { color: var(--secondary); font-size: 50px; }
.sidebar-help h3, .sidebar-help a { color: #fff; }
.sidebar-help a { font-size: 20px; font-weight: 700; }
.detail-icon { width: 100px; height: 100px; display: grid; place-items: center; float: right; margin: 0 0 20px 25px; color: #fff; background: var(--primary); border-radius: 50%; font-size: 45px; }
.service-detail main > h2 { font-size: clamp(32px,4vw,50px); }
.check-list { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: #333; font-weight: 600; }
.check-list li::before { content: "\f00c"; position: absolute; left: 0; top: 2px; color: var(--secondary); font-family: "Font Awesome 5 Free"; font-weight: 900; }
.detail-callout { margin-top: 42px; padding: 34px; border-left: 5px solid var(--secondary); background: var(--light); }
.contact-copy { height: 100%; padding: 42px; color: rgba(255,255,255,.85); background: var(--primary); }
.contact-copy h2 { color: #fff; }
.contact-copy .eyebrow, .contact-copy .check-list li::before { color: var(--secondary); }
.contact-copy .check-list li { color: #fff; }
.contact-form select { width: 100%; margin-bottom: 22px; padding: 16px 18px; color: #777; border: 0; background: #fff; }
@media (min-width: 992px) { .main-nav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; } }
@media (max-width: 991.98px) { .main-nav .dropdown-menu { box-shadow: none; min-width: 100%; } .page-hero { padding: 85px 0; } .cta-band { text-align: center; } }


/* FAQ additions */
.about-mission { padding: 42px; color: #fff; background: var(--primary); box-shadow: 0 18px 45px rgba(0,11,47,.16); }
.about-mission > i { color: var(--secondary); font-size: 52px; margin-bottom: 18px; }
.about-mission h3 { color: #fff; font-size: 30px; }
.about-mission .value-box { height: 100%; background: #fff; }
.about-service-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
.faq-section { background: var(--light); }
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { overflow: hidden; background: #fff; border: 1px solid #e5e8ef; box-shadow: 0 8px 25px rgba(0,11,47,.05); }
.faq-item summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 25px; color: #111; cursor: pointer; list-style: none; font-family: "Saira",sans-serif; font-size: 20px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--secondary); transition: transform .25s ease; }
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-answer { padding: 0 25px 22px; border-top: 1px solid #edf0f5; }
.faq-answer p { margin: 18px 0 0; }
@media (max-width: 767.98px) { .about-service-list { grid-template-columns: 1fr; } .about-mission { padding: 28px; } .faq-item summary { padding: 18px; font-size: 18px; } .faq-answer { padding: 0 18px 18px; } }
