* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

/* Top Bar */
.topbar {
  background: #ffffff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Section */

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

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}

/* Navigation */

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.cta {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  border-radius: 4px;
}

.cta:hover {
  background: #333333;
}

.cta a {
  color: #ffffff !important;
  text-decoration: none;
}


/* Hero Slider */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides img {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

/* Overlay */

.hero-content {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 22px;
}

.hero-content button {
  padding: 14px 28px;
  font-size: 18px;
  border: none;
  background: #ffd100;
  color: rgb(0, 0, 0);
  border-radius: 8px;
  cursor: pointer;
}

.hero-content button:hover {
  background: #f5d453;
}







/* Help Section */

.help-section {
  padding: 80px 60px;
  background: #f3f4f6;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  color: #111827;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #000000;
  display: block;
  margin: 14px auto 0;
  border-radius: 4px;
}

/* Grid */

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */

.help-card {
  background: #e5e7eb;
  padding: 28px 30px 30px 30px;
  position: relative;
  transition: all .3s ease;
  border-radius: 6px;
}

.help-card:hover {
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.help-card h3 {
  margin-left: 60px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #111827;
}

.help-card p {
  margin-left: 60px;
  line-height: 1.6;
  color: #4b5563;
  font-size: 15px;
}

/* Plus Icon */

.icon {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 36px;
  background: #000000;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  border-radius: 4px;
}













/* Section */

.testimonial-strip {
  width: 100%;
}

/* Top red strip */

.strip-top {
  background: #ffffff;
  color: rgb(0, 0, 0);
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strip-top h3 {
  font-size: 24px;
}

.strip-top p {
  font-size: 14px;
  margin-top: 6px;
  opacity: .9;
}

.strip-call {
  background: white;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

/* Testimonial body */

.testimonial-box {
  background: #f3f4f6;
  text-align: center;
  padding: 60px 20px;
}

.stars {
  font-size: 26px;
  color: #3987ac;
  margin-bottom: 20px;
}

#reviewText {
  max-width: 820px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  min-height: 90px;
}

.author {
  margin-top: 18px;
  font-weight: bold;
  color: #a4431c;
}

/* Dots */

.dots {
  margin-top: 20px;
}

.dot {
  height: 8px;
  width: 8px;
  background: #cbd5e1;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.dot.active {
  background: #000;
}









/* Section */

.service-area {
  padding: 80px 60px;
  background: #f3f4f6;
}

/* Ribbon */

.ribbon {
  background: #000000;
  color: rgb(255, 255, 255);
  display: inline-block;
  padding: 16px 40px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #000000;
}

/* Layout */

.service-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Left */

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #374151;
}

.service-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #000;
}

/* Button */

.call-btn {
  background: #ffd100;
  color: rgb(0, 0, 0);
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}

/* Right image */

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}














.contact-section {
  padding: 80px 60px;
  background: #f3f4f6;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

/* Layout */

.contact-wrap {
  display: flex;
  gap: 40px;
}

/* LEFT */

.contact-left {
  flex: 2;
}

.note {
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Form */

form input,
form textarea {
  width: 100%;
  background: #dee3ff;
  border: none;
  padding: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  border-radius: 10px;
}

.row {
  display: flex;
  gap: 14px;
}

textarea {
  height: 160px;
  resize: vertical;
}

form button {
  background: #000000;
  color: rgb(255, 255, 255);
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
}

/* RIGHT */

.contact-right {
  flex: 1.2;
}

/* Support card */

/* Map */

.map iframe {
  width: 100%;
  height: 430px;
  border: none;
}










.site-footer {
  background: #e5e7eb;
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Icon */



/* Text */

.footer-text {
  flex: 1;
  text-align: center;
}

.designed {
  margin-bottom: 8px;
  color: #000;
}

.brand {
  color: #16a34a;
  font-weight: bold;
}

.links {
  margin-bottom: 8px;
}

.links a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}

.address {
  font-size: 14px;
  color: #000;
}







.about-section {
  background: #f3f4f6;
  padding: 80px 60px;
}

/* Layout */

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Image */

.about-image {
  flex: 1.2;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */

.about-content {
  flex: 1;
}

.about-content h2 {
  color: #000000;
  font-weight: bold;
  font-size: 34px;
  margin-bottom: 16px;
}

.about-content p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}


















/* Scroll To Top Button */

#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  /* animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;

  z-index: 9999;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

/* visible state */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
#scrollTopBtn:hover {
  transform: translateY(-3px);
}

/* mobile size */
@media (max-width: 600px) {
  #scrollTopBtn {
    right: 14px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.sty {
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

button.sty {
  background: #000;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button.sty:hover {
  background: #333;
}








.c-phone {
  display: flex;
  position: fixed;
  width: 150px;
  height: 40px;
  bottom: 150px;
  left: 20px;
  z-index: 100;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}

.c-phone img {
  width: 40px;
  margin-left: -6px;

}

.c-phone p {
  padding: 8px 0px 5px 13px;
  text-align: center;
  font-weight: 600;


}


.float {
  display: flex;
  position: fixed;
  width: 150px;
  height: 40px;
  bottom: 95px;
  left: 20px;
  z-index: 100;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}

.float img {
  width: 40px;
  margin-left: -6px;

}

.float p {
  padding: 8px 0px 5px 10px;
  text-align: center;
  font-weight: 600;


}























/* =========================
   TOP CONTACT BAR
========================= */

.top-contact-bar {
  width: 100%;
  background: #ffffff;
  padding: 6px 35px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #eee;
}

/* group */

.top-contact-group {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

/* contact text */

.contact-text {
  color: #374151;
}

.contact-text a {
  color: #000000;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* =========================
   BUTTON
========================= */

.top-cta {
  background: #ffd100;
  color: #000;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 13px;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}

.top-cta:hover {
  background: #ffd100;
  color: #fff;
}

/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: relative;
}

/* dropdown menu */

.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #ffffff;
  min-width: 230px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

/* menu links */

.dropdown-menu a {
  padding: 12px 15px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all .25s ease;
}

/* hover effect */

.dropdown-menu a:hover {
  background: #f5f5f5;
  border-left: 4px solid #ffd100;
  color: #000000;
  font-weight: bold;
}

/* desktop hover */

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* click support */

.dropdown-menu.show {
  display: flex;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 600px) {

  .top-contact-bar {
    justify-content: center;
    padding: 10px;
  }

  .top-contact-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
  }

  .dropdown {
    width: 100%;
  }

  .top-cta {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: relative;
    width: 100%;
    top: 5px;
    right: auto;
    box-shadow: none;
    border: 1px solid #eee;
  }

}

















.appliance-banner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px 8%;
  background: url("./image/banner1.jpg") center center / cover no-repeat;
  overflow: hidden;
  color: #ffffff;
}

/* Dark overlay for text readability */
.appliance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* Text Area */
.banner-text-wrap {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: bannerFadeLeft 1.2s ease forwards;
}

.banner-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.banner-heading span {
  color: #ffb703;
}

.banner-description {
  margin: 22px 0 32px;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Buttons */
.banner-action-group {
  display: flex;
  gap: 18px;
}

.banner-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-btn-main {
  background: #ffb703;
  color: #000;
}

.banner-btn-main:hover {
  background: #ffab00;
}

.banner-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.banner-btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Animation */
@keyframes bannerFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .appliance-banner {
    padding: 70px 6%;
    text-align: center;
  }

  .banner-action-group {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .appliance-banner {
    padding: 60px 5%;
  }

  .banner-heading {
    font-size: 2.1rem;
  }

  .banner-description {
    font-size: 1rem;
  }
}





































.policy-section {
  padding: 80px 8%;
  background: #ffffff;
}

.policy-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.policy-image-box img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Content */
.policy-content-box {
  color: #222;
}

.policy-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #f4b400;
  margin-bottom: 8px;
}

.policy-updated {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.policy-content-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.policy-content-box h4 {
  font-size: 1.2rem;
  margin: 25px 0 10px;
  font-weight: 600;
}

.policy-list {
  padding-left: 18px;
  margin-bottom: 15px;
}

.policy-list li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  list-style: disc;
}

.policy-note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-image-box {
    order: -1;
  }
}

@media (max-width: 576px) {
  .policy-section {
    padding: 60px 5%;
  }

  .policy-title {
    font-size: 1.9rem;
  }
}

































/* =========================
   MODERN RESPONSIVE NAVBAR
========================= */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
}

/* desktop menu */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 15px;
  position: relative;
}

.nav-menu a:hover {
  color: #000000;
  font-weight: bold;
}

/* button */

.nav-btn {
  background: #ffd100;
  padding: 9px 18px;
  border-radius: 6px;
  color: #000 !important;
}

/* hamburger */

.nav-toggle {
  display: none;
  width: 26px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: #000;
  transition: .4s;
}

/* animation */

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}






/* =========================
   MOBILE NAV PANEL
========================= */

@media (max-width: 991px) {

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    font-size: 22px;

    transform: translateX(100%);
    transition: .45s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 22px;
  }

}




/* =========================
   MOBILE FULL VIEW SYSTEM
========================= */

@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  section {
    padding: 60px 18px !important;
  }

  /* grids -> single column */

  .help-grid {
    grid-template-columns: 1fr !important;
  }

  .about-container,
  .service-container,
  .contact-wrap,
  .policy-container {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* hero */

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* images full width */

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

  /* map height */

  .map iframe {
    height: 280px;
  }

}










/* =========================
   HEADER + NAVBAR
========================= */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */

.nav-logo img {
  height: 48px;
}

/* desktop menu */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 15px;
}

.nav-menu a:hover {
  color: #000000;
  font-weight: bold;
}

/* button */

.nav-btn {
  background: #ffd100;
  padding: 9px 18px;
  border-radius: 6px;
  color: #000 !important;
}

/* hamburger */

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: #000;
  transition: .4s;
}

/* hamburger animation */

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* close button */

.nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  background: #ffd100;
  border: none;
  font-size: 22px;
  font-weight: bold;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  .nav-toggle {
    display: flex;
    background: #ffd100;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .nav-toggle span {
    background: #000;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    font-size: 22px;

    transform: translateX(100%);
    transition: .45s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 22px;
  }

  .nav-close {
    display: block;
  }

}



































































/* mobile round menu button */

@media(max-width:991px) {

  .nav-toggle {
    background: #10a1b9;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .nav-toggle span {
    background: #fff;
  }

}































/* ===== Xenolith Dropdown System ===== */

.xenolith-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.xenolith-dropdown-trigger {
  cursor: pointer;
}

/* dropdown panel */
.xenolith-dropdown-panel {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 180px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;

  transition: all .35s ease;
  overflow: hidden;
}

/* dropdown links */

.xenolith-dropdown-panel a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all .3s;
}

.xenolith-dropdown-panel a:hover {
  background: #f5f5f5;
  padding-left: 24px;
}

/* hover animation */

.xenolith-dropdown-wrapper:hover .xenolith-dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}


@media (max-width: 768px) {

  .xenolith-dropdown-panel {
    position: static;
    box-shadow: none;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding-left: 15px;
  }

  .xenolith-dropdown-panel a {
    padding: 10px 0;
    font-size: 15px;
  }

}



























































/* HERO SECTION */

.xr9v-quantum-hero-shell {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("image/lg-service-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* dark overlay */

.xr9v-quantum-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}

/* content */

.xr9v-quantum-hero-content {
  position: relative;
  color: white;
  max-width: 900px;
  padding: 20px;
  animation: xr9vFadeUp 1.2s ease;
}

/* title */

.xr9v-quantum-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.xr9v-quantum-hero-title span {
  color: white;
}

.xr9v-quantum-hero-title {
  color: #000000;
  font-weight: bold;
}

/* description */

.xr9v-quantum-hero-desc {
  margin-top: 15px;
  font-size: 18px;
  color: #eee;
}

/* feature grid */

.xr9v-quantum-feature-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* feature cards */

.xr9v-quantum-feature-card {
  padding: 18px;
  border-radius: 12px;
  background: #00000040;
  border: 1px solid rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  transition: .35s;
}

.xr9v-quantum-feature-card i {
  font-size: 24px;
  margin-bottom: 8px;
}

.xr9v-quantum-feature-card p {
  font-size: 14px;
}

.xr9v-quantum-feature-card:hover {
  transform: translateY(-6px);
  background: #000000;
}

/* call button */

.xr9v-quantum-call-btn {
  margin-top: 35px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  background: #000000;
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-decoration: none;
  transition: .35s;
}

.xr9v-quantum-call-btn:hover {
  background: #000000;
  transform: scale(1.05);
}

/* animation */

@keyframes xr9vFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:900px) {

  .xr9v-quantum-hero-title {
    font-size: 36px;
  }

  .xr9v-quantum-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width:500px) {

  .xr9v-quantum-hero-title {
    font-size: 28px;
  }

  .xr9v-quantum-feature-grid {
    grid-template-columns: 1fr;
  }

  .xr9v-quantum-hero-desc {
    font-size: 15px;
  }

}

















/* SECTION */

.qz7x-booking-orbital-shell {
  padding: 80px 20px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
}

/* container */

.qz7x-booking-orbital-container {
  width: 100%;
  max-width: 850px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-top: 4px solid #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: qz7xFadeRise 1s ease;
}

/* title */

.qz7x-booking-orbital-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 6px;
}

.qz7x-booking-orbital-sub {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

/* form */

.qz7x-input-cluster {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.qz7x-input-cluster label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.qz7x-input-cluster input,
.qz7x-input-cluster select,
.qz7x-input-cluster textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: .3s;
}

.qz7x-input-cluster textarea {
  min-height: 90px;
  resize: vertical;
}

.qz7x-input-cluster input:focus,
.qz7x-input-cluster select:focus,
.qz7x-input-cluster textarea:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}

/* button */

.qz7x-orbital-submit-btn {
  margin-top: 15px;
  background: #000000;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
}

.qz7x-orbital-submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* animation */

@keyframes qz7xFadeRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media(max-width:600px) {

  .qz7x-booking-orbital-container {
    padding: 25px;
  }

  .qz7x-booking-orbital-title {
    font-size: 24px;
  }

}



































.xenorix-applifix-wrapper {
  background: #e3e3e1;
  padding: 90px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.xenorix-applifix-container {
  max-width: 1200px;
  margin: auto;
}

.xenorix-applifix-titlebox {
  text-align: center;
  margin-bottom: 60px;
}

.xenorix-applifix-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.xenorix-applifix-subtitle {
  color: #333;
  font-size: 16px;
}

.xenorix-applifix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.xenorix-applifix-card {
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  text-align: center;
  transition: 0.5s;
  transform: translateY(40px);
  opacity: 0;
  animation: xenorixReveal 1s forwards;
}

.xenorix-applifix-card:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes xenorixReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.xenorix-applifix-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.xenorix-applifix-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.xenorix-applifix-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.xenorix-applifix-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.xenorix-applifix-btn {
  background: #000000;
  color: #ffffff !important;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s;
}

.xenorix-applifix-btn:hover {
  background: #333333;
  color: #ffffff;
  border: 2px solid #333333;
}

/* Responsive */

@media(max-width:900px) {
  .xenorix-applifix-grid {
    grid-template-columns: 1fr;
  }

  .xenorix-applifix-title {
    font-size: 30px;
  }
}































.zentravo-applifix-pro-section {
  padding: 100px 20px;
  background: #f8f8f8;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.zentravo-applifix-pro-container {
  max-width: 1200px;
  margin: auto;
}

.zentravo-applifix-pro-heading {
  text-align: center;
  margin-bottom: 60px;
}

.zentravo-applifix-pro-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.zentravo-applifix-pro-heading p {
  color: #666;
  font-size: 16px;
}

.zentravo-applifix-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.zentravo-applifix-pro-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  transition: all .5s ease;
  transform: translateY(60px);
  opacity: 0;
  animation: zentravoFadeUp 1s forwards;
}

.zentravo-applifix-pro-card:nth-child(2) {
  animation-delay: .2s;
}

.zentravo-applifix-pro-card:nth-child(3) {
  animation-delay: .4s;
}

.zentravo-applifix-pro-card:nth-child(4) {
  animation-delay: .6s;
}

@keyframes zentravoFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zentravo-applifix-pro-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zentravo-applifix-pro-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.zentravo-applifix-pro-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.zentravo-applifix-pro-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Tablet */

@media(max-width:992px) {

  .zentravo-applifix-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media(max-width:600px) {

  .zentravo-applifix-pro-heading h2 {
    font-size: 28px;
  }

  .zentravo-applifix-pro-grid {
    grid-template-columns: 1fr;
  }

}





















.xenotrix-autoTesti-wrapper {
  padding: 100px 20px;
  background: #e9e9e9;
  overflow: hidden;
  font-family: Arial;
}

.xenotrix-autoTesti-heading {
  text-align: center;
  margin-bottom: 50px;
}

.xenotrix-autoTesti-heading h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.xenotrix-autoTesti-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.xenotrix-autoTesti-track {
  display: flex;
  gap: 30px;
  animation: xenotrixScroll 20s linear infinite;
}

.xenotrix-autoTesti-slider:hover .xenotrix-autoTesti-track {
  animation-play-state: paused;
}

@keyframes xenotrixScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.xenotrix-autoTesti-card {
  min-width: 320px;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.xenotrix-autoTesti-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: #ff6b00;
  margin-bottom: 15px;
}

.xenotrix-autoTesti-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.xenotrix-autoTesti-card h4 {
  margin: 0;
}

.xenotrix-autoTesti-card span {
  font-size: 13px;
  color: #666;
}

/* responsive */

@media(max-width:768px) {

  .xenotrix-autoTesti-card {
    min-width: 260px;
  }

  .xenotrix-autoTesti-heading h2 {
    font-size: 28px;
  }

}














.veltrionyx-lgservgrid-wrapper {
  padding: 100px 20px;
  background: #fce065;
  font-family: Arial, sans-serif;
}

.veltrionyx-lgservgrid-heading {
  text-align: center;
  margin-bottom: 60px;
}

.veltrionyx-lgservgrid-heading span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.veltrionyx-lgservgrid-heading h2 {
  font-size: 36px;
  margin: 10px 0;
}

.veltrionyx-lgservgrid-heading p {
  color: #333;
  font-size: 15px;
}

.veltrionyx-lgservgrid-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.veltrionyx-lgservgrid-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
  transform: translateY(50px);
  opacity: 0;
  animation: veltrionyxFadeUp 1s forwards;
}

.veltrionyx-lgservgrid-card:nth-child(2) {
  animation-delay: .3s;
}

.veltrionyx-lgservgrid-card:nth-child(3) {
  animation-delay: .6s;
}

@keyframes veltrionyxFadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.veltrionyx-lgservgrid-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.veltrionyx-lgservgrid-card h3 {
  font-size: 20px;
  margin: 20px;
}

.veltrionyx-lgservgrid-card p {
  font-size: 14px;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
  color: #555;
}

.veltrionyx-lgservgrid-card button {
  margin: 0 20px 25px 20px;
  background: #ffd100;
  color: #000000;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.veltrionyx-lgservgrid-card button:hover {
  background: #f5db66;
  color: #000000;
}

.veltrionyx-lgservgrid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

/* Tablet */

@media(max-width:992px) {

  .veltrionyx-lgservgrid-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media(max-width:600px) {

  .veltrionyx-lgservgrid-container {
    grid-template-columns: 1fr;
  }

  .veltrionyx-lgservgrid-heading h2 {
    font-size: 28px;
  }

}










.nrx-appliance-services-wrapper {
  padding: 100px 20px;
  background: #f9f9fb;
}

.nrx-services-container {
  max-width: 1200px;
  margin: auto;
}

.nrx-services-header-block {
  text-align: center;
  margin-bottom: 60px;
}

.nrx-services-main-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nrx-services-subtitle {
  color: #666;
  font-size: 16px;
}

.nrx-services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.nrx-service-card-unit {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.nrx-service-card-unit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: #ffd100;
  bottom: 0;
  left: 0;
  transition: all .4s ease;
  z-index: 0;
}

.nrx-service-card-unit:hover::before {
  height: 100%;
}

.nrx-service-card-unit:hover {
  transform: translateY(-10px);
}

.nrx-service-icon-box {
  font-size: 40px;
  color: #ffd100;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.nrx-service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.nrx-service-desc {
  font-size: 14px;
  color: #666;
  position: relative;
  z-index: 2;
}

.nrx-service-card-unit:hover .nrx-service-title,
.nrx-service-card-unit:hover .nrx-service-desc {
  color: #fff;
}

.nrx-service-card-unit:hover .nrx-service-icon-box {
  color: #fff;
}















.xrqv-service-process-synapse {
  padding: 110px 20px;
  background: #f0f0f0;
}

.xrqv-container-shell {
  max-width: 1200px;
  margin: auto;
}

.xrqv-process-header-vector {
  text-align: center;
  margin-bottom: 70px;
}

.xrqv-process-title-core {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.xrqv-process-subtext-node {
  color: #6b6b6b;
  font-size: 16px;
}

.xrqv-process-grid-orbit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.xrqv-process-card-pulse {
  background: #f9f9fb;
  padding: 45px 30px;
  border-radius: 14px;
  position: relative;
  text-align: center;
  transition: all .45s ease;
  overflow: hidden;
  border: 1px solid #eee;
}

.xrqv-process-card-pulse:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.xrqv-step-badge-core {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;  
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: auto;
  margin-bottom: 20px;
  transition: all .4s;
}

.xrqv-process-card-pulse:hover .xrqv-step-badge-core {
  transform: scale(1.1) rotate(10deg);
}

.xrqv-step-title-core {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.xrqv-step-desc-node {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width:768px) {

  .xrqv-process-title-core {
    font-size: 28px;
  }

  .xrqv-process-card-pulse {
    padding: 35px 25px;
  }

}

























.xenorix-applifix-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #000000;
  color: #ffffff !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
  border: 1px solid #000000;
}

.xenorix-applifix-btn:hover {
  background: #333333;
  color: #ffffff;
  border-color: #333333;
}































.xenorix-applifix-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

.xenorix-applifix-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 15px;
}

























/* section */

.nx7v-disclaimer-vortex-shell {
  padding: 70px 20px;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
}

/* container */

.nx7v-disclaimer-vortex-container {
  max-width: 900px;
  text-align: center;
  padding: 35px 30px;
  border-radius: 12px;
  border-left: 6px solid #000000;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: nx7vFadeLift 1s ease;
}

/* title */

.nx7v-disclaimer-vortex-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

/* text */

.nx7v-disclaimer-vortex-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* animation */

@keyframes nx7vFadeLift {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media(max-width:600px) {

  .nx7v-disclaimer-vortex-title {
    font-size: 22px;
  }

  .nx7v-disclaimer-vortex-text {
    font-size: 14px;
  }

}