/* #navbar-section {
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100vh;
} */
#navbar-section .navbar {
  padding: 20px 40px;
}
#navbar-section .navbar .navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: rgb(60, 116, 226);
}
#navbar-section .navbar .navbar-nav {
  gap: 25px;
}
#navbar-section .navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
}
#navbar-section .navbar .quote-btn .btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}

/* Contact Hero Section */
.contact-hero-section {
  padding-top: 100px;
}
.contact-hero-section .get-in-touch {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: rgb(60, 116, 226);
}
.contact-hero-section .get-in-touch::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 20px;
  background-color: rgb(60, 116, 226);
  vertical-align: middle;
  border-radius: 1px;
  margin-right: 6px;
}
.contact-hero-section .main-heading {
  font-weight: bold;
  font-size: 45px;
  color: black;
  margin-bottom: 15px;
}
.contact-hero-section .features {
  border-right: 2px solid rgba(0, 0, 0, 0.548);
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.595);
}
.contact-hero-section .gaming-pc {
  color: rgba(0, 0, 0, 0.595);
}

/* Contact Main Section */
.contact-main-section {
  padding-bottom: 100px;
}
.contact-main-section .main-row {
  margin-top: 120px;
}
.contact-main-section .contact-content {
  line-height: 0.8;
  margin-left: 10px;
}
.contact-main-section .icon-container {
  background-color: #5ca8ff;
  color: #fff;
  width: 50px;
  height: 50px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
}
.contact-main-section .inner-content {
  font-size: 12px;
  font-weight: 600;
}
.contact-main-section .contact-link {
  font-size: 14px;
  color: #130807;
}
.contact-main-section .btn {
  background-color: #5ca8ff;
}
.contact-main-section .btn:hover {
  background-color: rgb(60, 116, 226);
}

#refurbished-features {
  background: #f7f7f7;
}
#refurbished-features .feature_card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
#refurbished-features .feature_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
#refurbished-features .feature_card p {
  margin: 0;
  font-weight: 500;
  color: #333;
}
#refurbished-features .feature_card .icon_box {
  width: 50px;
  height: 50px;
  background: rgb(60, 116, 226);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#refurbished-features .feature_card .icon_box i {
  color: #fff;
  font-size: 18px;
}

#refurbished-cta {
  background: #000;
  padding: 80px 0;
  color: #fff;
}
#refurbished-cta h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
#refurbished-cta p {
  max-width: 600px;
  margin: 0 auto 35px;
  color: #cfcfcf;
  font-size: 16px;
}
#refurbished-cta .cta_buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#refurbished-cta .btn_primary {
  background: #fff;
  color: rgb(60, 116, 226);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
#refurbished-cta .btn_primary:hover {
  background: #f1f1f1;
}
#refurbished-cta .btn_outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
#refurbished-cta .btn_outline:hover {
  background: #fff;
  color: #000;
}

#footer-section .footer_section {
  background: #000;
  padding: 20px 0;
  color: #bbb;
}
#footer-section .footer_section h5 {
  color: white;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
#footer-section .footer_section p {
  font-size: 14px;
  line-height: 1.7;
}
#footer-section .footer_section ul {
  list-style: none;
  padding: 0;
}
#footer-section .footer_section li {
  margin-bottom: 12px;
  font-size: 14px;
}
#footer-section .footer_section a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}
#footer-section .footer_section a:hover {
  color: rgb(60, 116, 226);
}
#footer-section .footer_section .footer_logo {
  width: 70px;
  margin-bottom: 20px;
}
#footer-section .footer_section .footer_contact li {
  display: flex;
  align-items: center;
}
#footer-section .footer_section .footer_contact li i {
  color: rgb(60, 116, 226);
  margin-right: 10px;
}
#footer-section .footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding: 5px 0;
  font-size: 13px;
  color: #777;
}

/*# sourceMappingURL=contact-us.css.map */
