
:root{

  --p1:#0a369d;--p2:#4472ca;--p3:#5e7ce2;--p4:#92b4f4;--p5:#cfdee7;
--dark:#1a1a1a;
}

body {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Oxygen, Ubuntu, Cantarell;
  color: var(--dark);
  scroll-behavior: smooth;
}
/* Global Smooth Scrolling */
@media (prefers-reduced-motion: reduce) {
 html {
  scroll-behavior: smooth;
}
}
.navbar{transition:all .3s ease;  background: linear-gradient(135deg, var(--p1), var(--p4));}
.navbar.scrolled{ background: linear-gradient(135deg, var(--p1), var(--p4));;box-shadow:0 4px 20px rgba(0,0,0,.1);}
.nav-link{position:relative;margin:0 10px; color: var(--p5);}
.nav-link.active::after{
content:'';position:absolute;left:0;bottom:-6px;width:100%;height:3px;
background:linear-gradient(90deg,var(--p4),var(--p3));border-radius:2px;
color: var(--p4);
}
.nav-link::after {
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.btn-primary{background:var(--p1);border:none;}
.btn-primary:hover{background:var(--p2);}


/* Navbar Logo */
.hx-navbar-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.hx-navbar-logo:hover img {
  transform: scale(1.05);
}

/* When Navbar is Scrolled */
.navbar.scrolled .hx-navbar-logo img {
  height: 50px;
  
}

/* Policy Dropdown Container */
.policy-dropdown {
  position: relative;
}

/* Arrow Icon */
.policy-icon {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.policy-dropdown:hover .policy-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.policy-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Stable hover */
.policy-dropdown:hover .policy-menu,
.policy-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.policy-menu li {
  list-style: none;
}

.policy-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
}

.policy-menu a:hover {
  background:linear-gradient(135deg, var(--p1), var(--p4));
  color: #fff;
}



/* Mobile Adjustments */
@media (max-width: 576px) {
  .hx-navbar-logo img {
    height: 36px;
  }
}


/* Drawer Base */
.drawer {
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100%;
  background: #ffffff;
  z-index: 2000;
  transition: all 0.35s ease;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  left: 0;
}

/* Header */
.drawer-header {
  background: var(--p1);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.drawer-logo img {
  height: 60px;
  max-width: 160px;
  object-fit: contain;
}

/* Close Button */
.drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.drawer-close:hover {
  transform: rotate(90deg);
}

/* Menu Area */
.drawer-menu {
  padding: 18px 15px;
  background: #ffffff;
  flex: 1;
  overflow-y: auto;
}

/* Links */
.drawer-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

/* Icons */
.drawer-link i {
  width: 28px;
  font-size: 18px;
  margin-right: 12px;
  transition: transform 0.25s ease;
}

/* Hover Effect */
.drawer-link:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.drawer-link:hover i {
  transform: scale(1.1);
}

/* Active Link */
.drawer-link.active {
  background: var(--p1);
  color: #ffffff;
}

.drawer-link.active i {
  color: #ffffff;
}

/* Active Indicator Bar */
.drawer-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 32px;
  transition: max-height 0.3s ease;
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 32px;
  transition: max-height 0.3s ease;
}

.drawer-submenu li{
  list-style: none;
}

.drawer-submenu a{
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
}

.drawer-submenu a:hover{
  background:linear-gradient(135deg, var(--p1), var(--p4));
  color: #fff;
}

.drawer-policy.active .drawer-submenu {
  max-height: 300px;
}

.policy-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.drawer-policy.active .policy-arrow {
  transform: rotate(180deg);
}


/* ===============================
   HERO BASE
================================ */
.hero-section {
  min-height: 80vh;
 background: linear-gradient(135deg, #f8fbff, #eef4ff, #ffffff);
 background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
}

/* ===============================
   LAYOUT GRID (KEY FIX)
================================ */
.hero-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

/* ===============================
   TEXT
================================ */
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero-text h1 span {
  color: var(--p1);
}

.hero-text p {
  margin: 22px 0 36px;
  font-size: 1.05rem;
  color: var(--dark);
  max-width: 520px;
}

/* ===============================
   FEATURES
================================ */
.hero-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  
}

 .hero-features .feature {
  background: var(--p1, #0d6efd) !important;
  color: #fff !important;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  font-size: 18px;
}

/* ===============================
   IMAGE CARD
================================ */
.hero-image-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 26px;
  border-radius: 28% 72% 65% 35% / 40% 45% 55% 60%;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  animation: float 6s ease-in-out infinite;
}



.hero-image-card img {
  width: 100%;
  display: block;
}



/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-arrow { display: none; }
}


/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  padding: clamp(90px, 12vh, 130px) 0;
  background: linear-gradient(135deg, #f6f9ff, #ffffff);
}

/* ===============================
   MAIN LAYOUT
================================ */
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 90px;
}

/* ===============================
   IMAGE
================================ */
.about-image-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

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

/* ===============================
   TEXT
================================ */
.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a2540;
}

.about-text p {
  font-size: 1.05rem;
  color: #4a5d73;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===============================
   TRUST POINTS
================================ */
.about-trust {
  margin-top: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.trust-item i {
  color: var(--p1);
  font-size: 18px;
}

.trust-item span {
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
}

/* ===============================
   FEATURE CARDS
================================ */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 90px;
}

.about-feature-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.about-feature-card i {
  font-size: 36px;
  color: var(--p1);
  margin-bottom: 18px;
  animation: iconPulse 2.8s ease-in-out infinite;
}

.about-feature-card h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0a2540;
}

.about-feature-card p {
  font-size: 0.95rem;
  color: #4a5d73;
  line-height: 1.6;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

/* ===============================
   STATS
================================ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
}

.about-stat-card {
  background: #ffffff;
  padding: 34px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.about-stat-card h4 {
  font-size: 2.2rem;
  color: var(--p1);
  margin-bottom: 6px;
}

.about-stat-card span {
  font-size: 14px;
  color: #4a5d73;
  font-weight: 500;
}

.legal-section {
  padding: 70px 20px;
  background: #f7f9fc;
}

.legal-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.legal-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.legal-card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #10218b;
}

.legal-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

.legal-card a {
  color: #3d8bff;
  text-decoration: none;
  font-weight: 500;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
  .legal-card {
    padding: 20px;
  }
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes iconPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .about-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}



.why-printaura {
  padding: 60px 20px;
}

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

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Image */
.image-box img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Content */
.badge {
  display: inline-block;
  background: var(--p1);
  color: var(--p5);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}

.content h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
}

.description {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}

/* Features */
.features {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  padding: 18px;
  border-radius: 14px;
}

.icon {
  font-size: 22px;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
}

.feature h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn.primary {
  background: var(--dark);
  color: #fff;
}

.btn.secondary {
  border: 1px solid #111;
  color: #111;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ===============================
   DEVICE ASSISTANCE SECTION
================================ */

.qs-device-section {
  padding: 100px 0;
  background: #ffffff;
}

.qs-device-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.qs-device-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 15px;
}

.qs-device-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.qs-device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* CARD */
.qs-device-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 28px;
  padding: 46px 28px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  color: inherit;
}

/* FIX: overlay no longer blocks clicks */
.qs-device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--p1), var(--p4));
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@media (hover: hover) {
  .qs-device-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.16);
  }
}

/* IMAGE */
.qs-device-card img {
  width: 120px;
  margin-bottom: 28px;
  border-radius: 10px;
  transition: transform 0.4s ease;

}

.qs-device-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.qs-device-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 14px;
}

.qs-device-card p {
  font-size: 0.95rem;
  color: #4a5d73;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BUTTON */
.qs-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 50px;
  background: var(--p1);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.35s ease;
}

.qs-device-card:hover .qs-card-btn {
  background: var(--p3);
}

.qs-card-btn i {
  transition: transform 0.35s ease;
}

.qs-device-card:hover .qs-card-btn i {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .qs-device-card {
    padding: 38px 22px;
  }

  .qs-device-card img {
    width: 100px;
  }
}


/* ===============================
   ASSIST SECTION (MODERN)
================================ */

.qs-assist-section {
  padding: clamp(90px, 12vh, 140px) 0;
  background: linear-gradient(135deg, var(--p1), #2b2b2b);
}

/* HEADER */
.qs-assist-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.qs-assist-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.qs-assist-header p {
  font-size: 1.05rem;
  color: var(--p5);
  line-height: 1.7;
}

/* GRID */
.qs-assist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(22px, 4vw, 36px);
}

/* CARD */
.qs-assist-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 38px 26px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

.qs-assist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* IMAGE */
.qs-assist-card img {
  width: 90px;
  margin-bottom: 20px;
  transition: transform 0.45s ease;
}

/* TEXT */
.qs-assist-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.qs-assist-card span {
  font-size: 0.9rem;
  color: #e0e0e0;
}

/* HOVER EFFECTS */
@media (hover: hover) {
  .qs-assist-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.4);
  }

  .qs-assist-card:hover img {
    transform: scale(1.15) rotate(-3deg);
  }

  .qs-assist-card:hover::after {
    opacity: 1;
  }
}

/* SCROLL ANIMATION */
.qs-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.qs-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .qs-assist-card {
    padding: 30px 22px;
  }

  .qs-assist-card img {
    width: 75px;
  }
}



/* ===============================
   SERVICES – FULLY RESPONSIVE
================================ */

/* Section spacing scales with screen */
.services-section {
  padding: clamp(70px, 10vh, 120px) 0;
   background: linear-gradient(135deg, #f8fbff, #eef4ff, #ffffff);
 background-attachment: fixed;
}

/* Header */
.services-header {
  max-width: min(720px, 92%);
  margin: 0 auto clamp(40px, 6vh, 70px);
  text-align: center;
}

.services-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.services-header p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
}

/* ===============================
   RESPONSIVE GRID (AUTO)
================================ */

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  align-items: stretch;
}

/* ===============================
   RESPONSIVE CARD
================================ */

.service-card-modern {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(36px, 5vw, 55px)
           clamp(20px, 4vw, 30px)
           clamp(30px, 5vw, 40px);
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

/* Gradient Border */
.service-card-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--p1), var(--p4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .service-card-modern:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
  }
}

/* ===============================
   ICON – RESPONSIVE
================================ */

.service-icon {
  width: clamp(58px, 8vw, 74px);
  height: clamp(58px, 8vw, 74px);
  margin: 0 auto clamp(16px, 3vw, 22px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p1), var(--p4));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  transition: transform 0.35s ease;
}

.service-icon i {
  font-size: clamp(22px, 3vw, 30px);
  color: #ffffff;
}

/* Icon animation only on hover devices */
@media (hover: hover) {
  .service-card-modern:hover .service-icon {
    transform: rotate(10deg) scale(1.12);
  }
}

/* ===============================
   TEXT SCALING
================================ */

.service-card-modern h5 {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a2540;
}

.service-card-modern p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: #4a5d73;
  line-height: 1.65;
}

/* ===============================
   SMALL SCREENS (PHONES)
================================ */

@media (max-width: 480px) {
  .services-modern-grid {
    gap: 18px;
  }

  .service-card-modern {
    padding: 32px 18px 28px;
  }
}

/* ===============================
   LARGE SCREENS (DESKTOP / 4K)
================================ */

@media (min-width: 1600px) {
  .services-modern-grid {
    max-width: 1400px;
    margin: auto;
  }
}


/* ===============================
   ISSUES SECTION (MODERN)
================================ */
.issues-section {
  padding: clamp(100px, 12vh, 140px) 0;
  background: linear-gradient(135deg, #f6f9ff, #ffffff);
}

/* HEADER */
.issues-header {
  max-width: 780px;
  margin: 0 auto 70px;
}

.issues-tag {
  display: inline-block;
  background: rgba(68, 114, 202, 0.12);
  color: var(--p1);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.issues-header h2 {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 14px;
}

.issues-subtitle {
  font-size: 1.05rem;
  color: #4a5d73;
  line-height: 1.7;
}

/* GRID */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(22px, 4vw, 36px);
}

/* CARD */
.issue-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* ICON */
.issue-card i {
  font-size: 34px;
  color: #ffffff;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--p1), var(--p4));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s ease;
}

/* TEXT */
.issue-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
}

.issue-card p {
  font-size: 0.95rem;
  color: #4a5d73;
  line-height: 1.6;
}

/* HOVER EFFECTS */
@media (hover: hover) {
  .issue-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.15);
  }

  .issue-card:hover i {
    transform: scale(1.1) rotate(-4deg);
  }
}

/* SCROLL ANIMATION */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .issue-card {
    padding: 32px 22px;
  }

  .issue-card i {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}



/* Section */
.hx-process-area {
  padding: 100px 0;
   background: linear-gradient(135deg, #f8fbff, #eef4ff, #ffffff);
 background-attachment: fixed;

}

/* Header */
.hx-process-header {
  text-align: center;
  margin-bottom: 50px;
  
}

.hx-process-header h2 {
  font-size: 3rem;
  font-weight: 700;
}

.hx-process-header p {
  max-width: 900px;
  margin: 12px auto 0;
  color: #555;
}

/* Tabs */
.hx-process-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.hx-tab-btn {
  padding: 18px;
  border: none;
  border-radius: 6px;
  background: var(--p1);
  font-weight: 600;
  transition: all 0.3s ease;
  color: #cfdee7;
}

.hx-tab-btn:hover {
  transform: translateY(-4px);
}

.hx-tab-active {
  background: #fff;
  color: #000;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Panels */
.hx-process-panel {
  display: none;
  animation: hxFadeSlide 0.6s ease;
}

.hx-panel-active {
  display: block;
}

.hx-process-panel h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

/* List */
.hx-process-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hx-process-points li {
  margin-bottom: 10px;
}

.hx-process-points i {
  color: var(--p1);
  margin-right: 10px;
}

/* Image */
.hx-process-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Scroll Animations */
.hx-scroll-left,
.hx-scroll-right,
.hx-scroll-up,
.hx-scroll-down {
  opacity: 0;
  transition: all 0.8s ease;
}

.hx-scroll-left { transform: translateX(-60px); }
.hx-scroll-right { transform: translateX(60px); }
.hx-scroll-up { transform: translateY(-40px); }
.hx-scroll-down { transform: translateY(40px); }

.hx-scroll-active {
  opacity: 1;
  transform: translate(0);
}

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

/* Section */
.hx-testimonial-zone {
  padding: 110px 0;
  background: linear-gradient(135deg, #f6f9ff, #ffffff);
  overflow: hidden;
}

/* Header */
.hx-testimonial-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(68, 114, 202, 0.12);
  color: var(--p1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hx-testimonial-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a2540;
}

.hx-testimonial-header p {
  font-size: 1.05rem;
  color: #4a5d73;
  margin-top: 10px;
}

/* Slider */
.hx-testimonial-slider {
  overflow: hidden;
  width: 100%;
}

/* Track */
.hx-testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 10px;
  animation: scrollTestimonials 35s linear infinite;
}

/* Pause on Hover */
.hx-testimonial-slider:hover .hx-testimonial-track {
  animation-play-state: paused;
}

/* Cards */
.hx-testimonial-card {
  width: 320px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hx-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.15);
}

.hx-testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.hx-testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 4px;
  color: #0a2540;
}

.hx-testimonial-card span {
  font-size: 14px;
  color: #6b7a90;
}

.hx-rating {
  color: #f4b400;
  font-size: 18px;
  margin: 10px 0;
}

.hx-testimonial-card p {
  font-size: 0.95rem;
  color: #4a5d73;
  line-height: 1.6;
}

/* Auto Scroll Animation */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hx-testimonial-card {
    width: 280px;
  }

  .hx-testimonial-header h2 {
    font-size: 2.2rem;
  }
}

/* ===============================
   QUOTE SECTION
================================ */
.quote-section {
  padding: clamp(80px, 10vh, 140px) 0;
  background: #ffffff;
}

/* Outer Card */
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #ffffff;
  
  overflow: hidden;
}

/* ===============================
   LEFT IMAGE
================================ */
.quote-image {
  height: 100%;
}

.quote-image img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

/* ===============================
   FORM SIDE
================================ */
.quote-form {
  padding: clamp(40px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tag */
.quote-tag {
  display: inline-block;
  background: var(--p1);
  color: var(--p5);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
}

/* Title */
.quote-form h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 12px;
}

/* Subtitle */
.quote-subtitle {
  font-size: 1rem;
  color: #5a6b7f;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ===============================
   FORM
================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dbe1ea;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #ff6b2c;
}

.quote-form textarea {
  min-height: 120px;
  resize: none;
  margin-bottom: 24px;
}

/* Button */
.quote-btn {
  background: var(--p3);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

@media (hover: hover) {
  .quote-btn:hover {
    background: var(--p1);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,107,44,0.35);
  }
}

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

/* Tablets */
@media (max-width: 992px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
  }

  .quote-image {
    height: 300px;
  }
}

/* Phones */
@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 32px 22px;
  }
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

/* SHOW POPUP */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP BOX */
.popup-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: popupScale 0.4s ease;
}

/* ICON */
.popup-icon {
  width: 70px;
  height: 70px;
  background: #28a745;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* TEXT */
.popup-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-box p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

/* BUTTON */
.popup-btn {
  background: #0066ff;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  background: #004fcc;
}

/* ANIMATION */
@keyframes popupScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



/* Footer Area */
.hx-footer-area {
  background: var(--dark);
  color: #ffffff;
  padding: 80px 0 30px;
}

/* Brand */
.hx-footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.hx-footer-brand p {
  color: #cfdee7;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

/* Titles */
.hx-footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Links */
.hx-footer-links {
  list-style: none;
  padding: 0;
}

.hx-footer-links li {
  margin-bottom: 10px;
}

.hx-footer-links a {
  color: #cfdee7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.hx-footer-links a:hover {
  color: #ffffff;
}

/* Contact */
.hx-footer-contact {
  list-style: none;
  padding: 0;
}

.hx-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #cfdee7;
}

.hx-footer-contact i {
  margin-top: 4px;
  color: #92b4f4;
}

.hx-footer-contact a {
  color: #cfdee7;
  text-decoration: none;
}

/* Payments */
.hx-payment-methods {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hx-payment-methods img {
  height: 100px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Bottom */
.hx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.hx-footer-bottom p {
  font-size: 0.9rem;
  color: #cfdee7;
}

/* ===============================
   DISCLAIMER
================================ */
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 15px;
  margin-top: 10px;
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-disclaimer strong {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .hx-footer-brand p {
    max-width: 100%;
  }

  .hx-footer-area {
    text-align: center;
  }

  .hx-footer-contact li {
    justify-content: center;
  }

  .hx-payment-methods {
    justify-content: center;
  }
}

/* Scroll To Top Button */
.hx-scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--p5);
  color: var(--p1);
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Visible State */
.hx-scroll-top-btn.hx-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover Effect */
.hx-scroll-top-btn:hover {
  background: var(--p1);
  color: var(--p5);
  transform: translateY(-5px);
}

/* Icon Animation */
.hx-scroll-top-btn i {
  animation: hxBounce 1.8s infinite;
}

@keyframes hxBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .hx-scroll-top-btn {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
}

/* Page Banner */
.hx-page-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;

  color: #ffffff;
  overflow: hidden;
}

/* Overlay */
.hx-banner-overlay {
  position: absolute;
  inset: 0;
   background: linear-gradient(135deg, #f8fbff, #eef4ff, #ffffff);
 background-attachment: fixed;
  box-shadow: rgba(0,0,0,0.35);
}

/* Content */
.hx-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--p2);
}

.hx-banner-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--p2);
}

.hx-banner-content p {
  font-size: 1.1rem;
  color: var(--p3);
  margin-bottom: 20px;
}

/* Breadcrumb */
.hx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.hx-breadcrumb a {
  color: var(--p1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hx-breadcrumb a:hover {
  color: #ffffff;
}

/* Banner Animation */
.hx-page-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.hx-page-anim.hx-page-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hx-page-banner {
    min-height: 280px;
  }

  .hx-banner-content h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .hx-page-banner {
    min-height: 240px;
    text-align: center;
  }

  .hx-banner-content {
    margin: auto;
  }

  .hx-breadcrumb {
    justify-content: center;
  }
}


/* SECTION */
.ux-faq-wrap {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fbff, #eef4ff, #ffffff);
}

/* HEADER */
.ux-faq-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.ux-faq-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0a369d;
}

.ux-faq-header p {
  margin-top: 10px;
  color: #666;
}

/* GRID SPACING */
.ux-faq-grid {
  row-gap: 25px;
}

/* ITEM */
.ux-faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid #eef2f7;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.ux-faq-item:hover {
  transform: translateY(-3px);
}

/* QUESTION */
.ux-faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  color: #1a1a1a;
}

/* ICON */
.ux-faq-icon {
  position: absolute;
  right: 0;
  top: 2px;
  width: 18px;
  height: 18px;
}

.ux-faq-icon::before,
.ux-faq-icon::after {
  content: "";
  position: absolute;
  background: #0a369d;
  transition: 0.3s;
}

.ux-faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
}

.ux-faq-icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
}

/* OPEN STATE (minus icon) */
.ux-faq-item.open .ux-faq-icon::after {
  transform: scaleY(0);
}

/* ANSWER */
.ux-faq-answer {
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ux-faq-answer p {
  margin-top: 12px;
  color: #555;
  line-height: 1.7;
}

/* CLOSED */
.ux-faq-item:not(.open) .ux-faq-answer {
  max-height: 0;
}

/* OPEN DEFAULT */
.ux-faq-item.open .ux-faq-answer {
  max-height: 200px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ux-faq-header h2 {
    font-size: 26px;
  }
}


/* About Page */
.hx-about-page {
  padding: 100px 0;
  background: #ffffff;
}

/* Intro */
.hx-about-intro {
  text-align: center;
  margin-bottom: 70px;
}

.hx-about-intro h2 {
  font-size: 3rem;
  font-weight: 700;
}

.hx-about-intro p {
  max-width: 900px;
  margin: 15px auto 0;
  color: #555;
}

/* Blocks */
.hx-about-block {
  margin-bottom: 80px;
}

.hx-about-block h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hx-about-block p {
  color: #555;
  line-height: 1.7;
}

/* Images */
.hx-about-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

/* Cards */
.hx-about-card,
.hx-why-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  height: 100%;
}

.hx-about-card:hover,
.hx-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.hx-about-card i,
.hx-why-card i {
  font-size: 42px;
  color: var(--p1);
  margin-bottom: 15px;
}

/* Why Section */
.hx-about-why {
  margin-top: 80px;
}

.hx-about-why h3 {
  font-size: 2.4rem;
  font-weight: 700;
}

/* Scroll Animations */
.hx-about-anim-left,
.hx-about-anim-right,
.hx-about-anim-top {
  opacity: 0;
  transition: all 0.9s ease;
}

.hx-about-anim-left { transform: translateX(-60px); }
.hx-about-anim-right { transform: translateX(60px); }
.hx-about-anim-top { transform: translateY(40px); }

.hx-about-visible {
  opacity: 1;
  transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hx-about-block {
    text-align: center;
  }
}

/* Pricing Section */
.hx-pricing-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.hx-pricing-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hx-pricing-header p {
  max-width: 750px;
  margin: 15px auto 0;
  color: #555;
}

/* Pricing Section */
.hx-pricing-compare {
  padding: 100px 0;
  background: #ffffff;
}

/* Header */
.hx-pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.hx-pricing-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

/* Grid */
.hx-pricing-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Cells */
.hx-grid-cell {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #e6ecf5;
  border-right: 1px solid #e6ecf5;
  font-size: 0.95rem;
}

.hx-grid-cell:last-child {
  border-right: none;
}

/* Feature Column */
.hx-feature-label,
.hx-feature-head {
  text-align: left;
  font-weight: 600;
  background: #f8faff;
}

/* Plan Headers */
.hx-plan-head {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Featured Plan */
.hx-featured {
  background: linear-gradient(135deg, var(--p1), #4472ca);
  color: #ffffff;
}

.hx-featured .hx-grid-cell {
  color: #fff;
}

/* Badge */
.hx-badge {
  position: absolute;
  margin-top: -35px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

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

  .hx-grid-cell {
    text-align: left;
    border-right: none;
  }

  .hx-plan-head {
    background: #f0f4ff;
  }
}

/* FAQ Section */
.hx-faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.hx-faq-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

.hx-faq-header p {
  max-width: 850px;
  margin: 15px auto 0;
  color: #555;
}

/* FAQ List */
/* FAQ List - Two Column Layout */
.hx-faq-list {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}


/* Item */
.hx-faq-item {
  border-bottom: 1px solid #e6ecf5;
  padding-right: 10px;
}


/* Question */
.hx-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 10px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.hx-faq-question:hover {
  color: var(--p1);
}

/* Icon */
.hx-faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Answer */
.hx-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  transition: all 0.4s ease;
  color: #555;
  line-height: 1.7;
}

/* Active */
.hx-faq-item.active .hx-faq-answer {
  max-height: 260px;
  padding-bottom: 20px;
}

.hx-faq-item.active .hx-faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hx-faq-list {
    grid-template-columns: 1fr;
  }
}


/* Contact Section */
.hx-contact-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-contact-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

/* Form */
.hx-form-group {
  margin-bottom: 20px;
}

.hx-form-group input,
.hx-form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.hx-form-group input:focus,
.hx-form-group textarea:focus {
  outline: none;
  border-color: var(--p1);
}

/* Error */
.hx-error {
  color: red;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

/* Button */
.hx-btn-primary {
  background: var(--p1);
  color: #fff;
  padding: 14px 35px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

/* Image */
.hx-contact-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

/* Success Popup */
.hx-success-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.hx-success-popup.show {
  opacity: 1;
  visibility: visible;
}

/* Privacy Policy Section */
.hx-privacy-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-privacy-content {
  max-width: 900px;
  margin: auto;
  color: #333;
  line-height: 1.75;
  font-size: 0.95rem;
}

.hx-privacy-content h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.hx-privacy-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.hx-privacy-content ul li {
  margin-bottom: 8px;
}

.hx-privacy-note {
  margin-top: 40px;
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .hx-privacy-section {
    padding: 70px 0;
  }
}

/* Privacy Policy Contact Details */
.hx-policy-contact {
  margin-top: 25px;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
}

.hx-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
}

.hx-policy-item i {
  color: var(--p1);
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: var(--p1);
  text-decoration: none;
}

.hx-policy-item a:hover {
  text-decoration: underline;
}

/* Terms & Conditions Section */
.hx-terms-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-terms-content {
  max-width: 900px;
  margin: auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
}

.hx-terms-content h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.hx-terms-note {
  margin-top: 40px;
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

/* Contact Details (reused style) */
.hx-policy-contact {
  margin-top: 25px;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
}

.hx-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hx-policy-item i {
  color: var(--p1);
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: var(--p1);
  text-decoration: none;
}

.hx-policy-item a:hover {
  text-decoration: underline;
}

/* Disclaimer Page */
.hx-disclaimer-page {
  padding: 100px 0;
  background: #ffffff;
}

.hx-disclaimer-content {
  max-width: 900px;
  margin: auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
}

.hx-disclaimer-content h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.hx-disclaimer-note {
  margin-top: 40px;
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

/* Reused Contact Styles */
.hx-policy-contact {
  margin-top: 25px;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
}

.hx-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hx-policy-item i {
  color: var(--p1);
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: var(--p1);
  text-decoration: none;
}

.hx-policy-item a:hover {
  text-decoration: underline;
}

/* Cancellation Policy Section */
.hx-cancellation-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-cancellation-content {
  max-width: 900px;
  margin: auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
}

.hx-cancellation-content h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.hx-cancellation-note {
  margin-top: 40px;
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

/* Contact block reused */
.hx-policy-contact {
  margin-top: 25px;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
}

.hx-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hx-policy-item i {
  color: var(--p1);
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: var(--p1);
  text-decoration: none;
}

.hx-policy-item a:hover {
  text-decoration: underline;
}

/* Cookies Policy Section */
.hx-cookies-section {
  padding: 100px 0;
  background: #ffffff;
}

.hx-cookies-content {
  max-width: 900px;
  margin: auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
}

.hx-cookies-content h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.hx-cookies-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.hx-cookies-content ul li {
  margin-bottom: 8px;
}

.hx-cookies-note {
  margin-top: 40px;
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

/* Contact block (reused) */
.hx-policy-contact {
  margin-top: 25px;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
}

.hx-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hx-policy-item i {
  color: var(--p1);
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: var(--p1);
  text-decoration: none;
}

.hx-policy-item a:hover {
  text-decoration: underline;
}

/* ===== COOKIE CONSENT BANNER ===== */

.qs-cookie-banner {
  position: fixed !important;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  z-index: 2147483647; /* higher than anything */
  display: block;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.qs-cookie-banner.show {
  transform: translateY(0);
}

.qs-cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.qs-cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cfdee7;
}

.qs-cookie-content a {
  color: #92b4f4;
  text-decoration: underline;
}

/* Buttons */
.qs-cookie-actions {
  display: flex;
  gap: 10px;
}

.qs-btn-accept {
  background: var(--p1);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.qs-btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .qs-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Device SERVICES */
.hx-Device-services {
  padding: 100px 0;
  background: #ffffff;
}

.hx-Device-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.hx-Device-intro h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 20px;
}

.hx-Device-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Images */
.hx-Device-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.hx-img-box {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hx-img-box img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hx-img-box:hover img {
  transform: scale(1.08);
}

/* Content */
.hx-Device-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.hx-Device-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.hx-Device-list {
  margin-top: 25px;
  padding-left: 0;
  list-style: none;
}

.hx-Device-list li {
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.hx-Device-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--p1);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hx-Device-images {
    grid-template-columns: 1fr;
  }

  .hx-Device-intro h2 {
    font-size: 1.8rem;
  }
}

.scroll-animate {
  opacity: 0;
  transition: all 0.9s ease;
}

.from-bottom {
  transform: translateY(40px);
}

.from-left {
  transform: translateX(-40px);
}

.from-right {
  transform: translateX(40px);
}

.scroll-animate.active {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* NETWORK SERVICES */
.hx-network-services {
  padding: 100px 0;
  background: #ffffff;
}

.hx-network-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.hx-network-intro h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 20px;
}

.hx-network-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Images */
.hx-network-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.hx-img-box {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hx-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hx-img-box:hover img {
  transform: scale(1.08);
}

/* Content */
.hx-network-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.hx-network-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.hx-network-list {
  margin-top: 25px;
  padding-left: 0;
  list-style: none;
}

.hx-network-list li {
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.hx-network-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--p1);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hx-network-images {
    grid-template-columns: 1fr;
  }

  .hx-network-intro h2 {
    font-size: 1.8rem;
  }
}

/* COMPUTER SERVICES */
.hx-computer-services {
  padding: 100px 0;
  background: #ffffff;
}

.hx-computer-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.hx-computer-intro h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 20px;
}

.hx-computer-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Images */
.hx-computer-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.hx-img-box {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hx-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hx-img-box:hover img {
  transform: scale(1.08);
}

/* Content */
.hx-computer-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.hx-computer-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.hx-computer-list {
  margin-top: 25px;
  list-style: none;
  padding-left: 0;
}

.hx-computer-list li {
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.hx-computer-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--p1);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hx-computer-images {
    grid-template-columns: 1fr;
  }

  .hx-computer-intro h2 {
    font-size: 1.8rem;
  }
}

/* SMART HOME SERVICES */
.hx-smart-services {
  padding: 100px 0;
  background: #ffffff;
}

.hx-smart-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.hx-smart-intro h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 20px;
}

.hx-smart-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Images */
.hx-smart-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.hx-img-box {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hx-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hx-img-box:hover img {
  transform: scale(1.08);
}

/* Content */
.hx-smart-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.hx-smart-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.hx-smart-list {
  margin-top: 25px;
  list-style: none;
  padding-left: 0;
}

.hx-smart-list li {
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.hx-smart-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--p1);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hx-smart-images {
    grid-template-columns: 1fr;
  }

  .hx-smart-intro h2 {
    font-size: 1.8rem;
  }
}

/* ===============================
   UNIVERSAL PAGE BANNER
================================ */
.qs-page-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--p1), #4472ca);
  color: #ffffff;
}

.qs-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.qs-banner-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.qs-banner-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.qs-banner-content p {
  font-size: 1rem;
  line-height: 1.7;
}

.qs-breadcrumb {
  margin-top: 15px;
  font-size: 0.9rem;
}

.qs-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

/* ===============================
   UNIVERSAL MEDIA SECTION
================================ */
.qs-media-section {
  padding: 100px 0;
  background: #ffffff;
}

.qs-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.qs-media-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.qs-media-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 20px;
}

.qs-media-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 15px;
}

.qs-media-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.qs-media-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.qs-media-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--p1);
  font-weight: bold;
}

/* Button */
.qs-btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--p1);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.qs-btn-primary:hover {
  background: #4472ca;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .qs-media-row {
    grid-template-columns: 1fr;
  }

  .qs-banner-content h1 {
    font-size: 2rem;
  }
}

/* ===============================
   PAGE BANNER (UNIVERSAL)
================================ */
.qs-page-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--p1), #4472ca);
  color: #ffffff;
}

.qs-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.qs-banner-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.qs-banner-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
}

.qs-banner-content p {
  font-size: 1rem;
  line-height: 1.7;
}

.qs-breadcrumb {
  margin-top: 15px;
  font-size: 0.9rem;
}

.qs-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

/* ===============================
   MEDIA CONTENT SECTION
================================ */
.qs-media-section {
  padding: 100px 0;
  background: #ffffff;
}

.qs-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.qs-media-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.qs-media-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 10px;
}

.qs-price {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.qs-media-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.qs-media-points li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
}

.qs-media-points li::before {
  content: "–";
  position: absolute;
  left: 0;
}

.qs-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 25px;
}

/* Button */
.qs-btn-primary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--p1);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.qs-btn-primary:hover {
  background: #4472ca;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .qs-media-row {
    grid-template-columns: 1fr;
  }

  .qs-banner-content h1 {
    font-size: 2rem;
  }
}

.qs-animate {
  opacity: 0;
  transition: all 0.9s ease;
}

.from-left { transform: translateX(-40px); }
.from-right { transform: translateX(40px); }
.from-bottom { transform: translateY(40px); }

.qs-animate.active {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* MODAL */
.qs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.qs-modal {
  background: #fff;
  max-width: 900px;
  width: 95%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
}

.qs-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qs-modal-form {
  padding: 20px;
  position: relative;
}
.qs-modal-form h3{
  text-align: center;
}

.qs-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.qs-field {
  margin-bottom: 16px;
}
.qs-field label {
  margin-bottom: 4px;
  font-size: 14px;
}

.qs-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 8px;
}

.qs-input i {
  margin-right: 8px;
  color: var(--p1);
}

.qs-input input,
.qs-input select {
  border: none;
  width: 100%;
  outline: none;
}

.qs-error {
  color: red;
  font-size: 12px;
}

.qs-slots label {
  margin-right: 14px;
  margin-bottom: 4px;
}

.qs-submit {
  width: 100%;
  padding: 12px;
  background: var(--p1);
  color: #fff;
  border: none;
  border-radius: 50px;
}

/* SUCCESS */
.qs-success {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
}

.qs-success-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 14px;
}

.qs-success-box i {
  color: green;
  font-size: 50px;
}
.qs-success-box button {
  background-color: var(--p1);
  color: #fff;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .qs-modal { grid-template-columns: 1fr; }
  .qs-modal-image { display: none; }
}

/* ===============================
   404 ERROR SECTION
================================ */
.qs-error-section {
  padding: 120px 0;
  background: #ffffff;
  text-align: center;
}

.qs-error-box {
  max-width: 600px;
  margin: auto;
}

.qs-error-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p1);
  margin-bottom: 15px;
}

.qs-error-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}





