
:root{
--p1:#0a369d;--p2:#4472ca;--p3:#5e7ce2;--p4:#92b4f4;--p5:#cfdee7;
--dark:#1a1a1a;
}
/* Global Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body{font-family:'Segoe UI',sans-serif;color:var(--dark);scroll-behavior:smooth;}
.navbar{transition:all .3s ease;}
.navbar.scrolled{background:#fff;box-shadow:0 4px 20px rgba(0,0,0,.1);}
.nav-link{position:relative;margin:0 10px;}
.nav-link.active::after{
content:'';position:absolute;left:0;bottom:-6px;width:100%;height:3px;
background:linear-gradient(90deg,var(--p1),var(--p3));border-radius:2px;
}
.btn-primary{background:var(--p1);border:none;}
.btn-primary:hover{background:var(--p2);}


/* Navbar Logo */
.hx-navbar-logo img {
  height: 50px;
  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: 38px;
}

/* 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: 42px;
  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: #cfdee7;
  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;
}

/* Hero Section */
.hero-section {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #0a369d,
    #4472ca,
    #5e7ce2
  );
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* Text Content */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #cfdee7;
}

.hero-content p {
  margin: 20px 0 30px;
  font-size: 1.1rem;
  color: #e9eefc;
  max-width: 520px;
}

/* Buttons */
.hero-buttons .btn {
  padding: 12px 28px;
  margin-right: 12px;
  font-size: 16px;
  border-radius: 30px;
}

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

.btn-outline-light:hover {
  background: #ffffff;
  color: #0a369d;
}

/* Icons */
.hero-icons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.icon-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(6px);
  animation: float 3s ease-in-out infinite;
}

.icon-box:nth-child(2) {
  animation-delay: 0.5s;
}

.icon-box:nth-child(3) {
  animation-delay: 1s;
}

.icon-box i {
  font-size: 24px;
  margin-bottom: 8px;
  color: #ffffff;
}

.icon-box span {
  font-size: 14px;
  display: block;
}

/* Image */
.hero-image img {
  width: 100%;
  max-width: 480px;
  animation: fadeInRight 1.2s ease;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

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

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

  .hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Text Content */
.section-tag {
  display: inline-block;
  color: var(--p1);
  font-weight: 600;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: #555555;
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Mission Card */
.mission-card {
  display: flex;
  gap: 18px;
  background: #cfdee7;
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card i {
  font-size: 34px;
  color: var(--p1);
}

.mission-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Image Collage */
.about-images .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Feature Cards */
.about-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.about-card i {
  font-size: 40px;
  color: var(--p1);
  margin-bottom: 18px;
}

.about-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.about-card p {
  color: #555555;
  font-size: 0.98rem;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* 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: 992px) {
  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-images {
    margin-top: 40px;
  }
}

/* Service Banner */
.service-banner {
  padding: 100px 0;
  background: linear-gradient(
    120deg,
    #0a369d,
    #4472ca,
    #5e7ce2
  );
  color: #ffffff;
  overflow: hidden;
}

/* Left Content */
.service-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.service-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.05rem;
  color: #e6ecff;
  max-width: 520px;
}

/* Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 28px 24px;
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card i {
  font-size: 36px;
  color: #cfdee7;
  margin-bottom: 14px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #f1f4ff;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

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

.scroll-left {
  transform: translateX(-60px);
}

.scroll-right {
  transform: translateX(60px);
}

.scroll-left.active,
.scroll-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .service-text {
    text-align: center;
    margin-bottom: 40px;
  }

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

  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* Issues Section */
.issues-section {
  padding: 100px 0;
  background: #f8faff;
}

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

.issues-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.issues-subtitle {
  max-width: 700px;
  margin: auto;
  color: #555555;
  font-size: 1.05rem;
}

/* Issue Cards */
.issue-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.issue-card i {
  font-size: 42px;
  color: var(--p1);
  margin-bottom: 18px;
}

.issue-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.issue-card p {
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Hover Effect */
.issue-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

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

.scroll-left {
  transform: translateX(-60px);
}

.scroll-right {
  transform: translateX(60px);
}

.scroll-left.active,
.scroll-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .issues-section h2 {
    font-size: 2.2rem;
  }
}

/* Section */
.hx-process-area {
  padding: 100px 0;
  background: #ffffff;
}

/* 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: #0a369d;
  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: #0a369d;
  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: 100px 0;
 background: linear-gradient(
    135deg,
    #0a369d,
    #4472ca,
    #5e7ce2
  );
  overflow: hidden;
}

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

.hx-testimonial-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.hx-testimonial-header p {
  max-width: 760px;
  margin: 12px auto 0;
  color: white;
}

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

/* Track (GRID BASED – RESPONSIVE) */
.hx-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 30px;
  transition: transform 0.7s ease;
  
}

/* Cards */
.hx-testimonial-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.hx-testimonial-card:hover {
  transform: translateY(-8px);
}

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

.hx-testimonial-card h5 {
  font-weight: 600;
}

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

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

.hx-testimonial-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive Columns */
@media (min-width: 768px) {
  .hx-testimonial-track {
    grid-auto-columns: calc(50% - 15px);
  }
}

@media (min-width: 1200px) {
  .hx-testimonial-track {
    grid-auto-columns: calc(33.333% - 20px);
  }
}

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

.hx-anim-left {
  transform: translateX(-60px);
}

.hx-anim-up {
  transform: translateY(40px);
}

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

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

/* Brand */
.hx-footer-brand img {
  height: 85px;
  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;
}

/* 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: #0a369d;
  color: #ffffff;
  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: #4472ca;
  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;
  background: linear-gradient(
    135deg,
    #0a369d,
    #4472ca,
    #5e7ce2
  );
  color: #ffffff;
  overflow: hidden;
}

/* Overlay */
.hx-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

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

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

.hx-banner-content p {
  font-size: 1.1rem;
  color: #e9eefc;
  margin-bottom: 20px;
}

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

.hx-breadcrumb a {
  color: #cfdee7;
  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;
  }
}


/* 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: #0a369d;
  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, #0a369d, #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 */
.hx-faq-list {
  max-width: 900px;
  margin: auto;
}

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

/* 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: #0a369d;
}

/* 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);
}

/* 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: #0a369d;
}

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

/* Button */
.hx-btn-primary {
  background: #0a369d;
  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: #0a369d;
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: #0a369d;
  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: #0a369d;
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: #0a369d;
  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: #0a369d;
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: #0a369d;
  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: #0a369d;
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: #0a369d;
  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: #0a369d;
  font-size: 18px;
  margin-top: 3px;
}

.hx-policy-item a {
  color: #0a369d;
  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: #0a369d;
  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;
  }
}



