:root {
  --service-nav-bg: #983434;
}

.service-top-bar {
  background: var(--service-nav-bg) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-top-bar .contact-info span {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
  margin-right: 30px;
}

.service-top-bar .contact-info .contact-phone {
  color: white !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.service-top-bar .contact-info .contact-email {
  color: white !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}

.service-top-bar .social-icons a {
  color: #fff;
  font-size: 14px;
  margin-left: 15px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.service-top-bar .social-icons a:hover {
  opacity: 1;
}

/* Service Header */
html body header.service-header {
  background: #f9f4f0 !important;
  background-image: none !important;
  background-color: #f9f4f0 !important;
  box-shadow: 0px 0px 25px 0px #0000000f !important;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.service-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.service-logo-text .brand-name {
  font-family: "Rethink Sans" !important;
  font-weight: 400 !important;
  font-size: 13.07px !important;
  line-height: 10px !important;
  color: #0f172a !important;
}

.service-logo-text .product-name {
  font-family: "Rethink Sans" !important;
  font-weight: 700 !important;
  font-size: 26.13px !important;
  color: #0f172a !important;
}

/* Navbar */
.service-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.service-nav ul li a {
  text-decoration: none;
  color: #000000 !important;
  font-family: "Rethink Sans" !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 15px !important;
  padding-bottom: 15px;
  position: relative;
  transition: color 0.3s;
}

.service-nav ul li a:hover,
.service-nav ul li a.active {
  color: #000000 !important;
}

/* Active Indicator */
.service-nav ul li a.active::after,
.service-nav ul li a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: 2px solid var(--service-nav-bg);
  background-color: transparent;
}

/* Login Button */
.btn-service-login {
  background: var(--service-nav-bg);
  color: white !important;
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 15px;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
  display: inline-block;
}

.btn-service-login:hover {
  background: #7a2a2a;
  transform: translateY(-1px);
}

/* Service Hero Section */
.service-hero-section {
  position: relative;
  padding: 10px 0 20px;
  background: #ebdacc;
  overflow: hidden;
  color: #0f172a;
  text-align: center;
}

/* Background Animation Container */
.hero-bg-animation {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.hero-row {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: flex;
  background: #00000045;
}

.hero-row-1 {
  height: 120px;
}

.hero-row-2 {
  height: 250px;
}

/* Marquee Tracks */
.marquee-track-1,
.marquee-track-2 {
  display: flex;
  gap: 5px;
  animation: scroll 60s linear infinite;
  width: max-content;
}

.marquee-track-2 {
  animation-direction: reverse;
}

.hero-row img {
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.3;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(152, 52, 52, 0.6) 0%,
      rgba(152, 52, 52, 0.85) 100%);
  z-index: 2;
  display: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 50px;
  display: block !important;
}

.service-hero-section h1 {
  font-family: "Rethink Sans";
  font-weight: 800;
  font-size: 53.1px;
  line-height: 58px;
  margin-bottom: 10px;
  letter-spacing: 0%;
  text-align: center;
  color: #0f172a;
}

.btn-phone {
  background: #983434;
  ;
}

.btn-email i {
  color: #983434;
}

.hero-subhead {
  font-family: "DM Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 15px;
  color: #4b5563;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0%;
}

.icon-wrapper {
  width: 32px;
  height: 32px;
  background: var(--service-nav-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.hero-feature-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.btn-service-white {
  background: var(--service-nav-bg);
  color: white;
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  cursor: pointer;
}

.btn-service-white:hover {
  background: #7a2a2a;
}

.btn-service-outline {
  position: relative;
  background: transparent;
  color: var(--service-nav-bg);
  border: 1px solid var(--service-nav-bg);
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-service-outline:hover {
  background: var(--service-nav-bg);
  color: white;
}

/* Dashboard Preview */
#hero-dashboard-image {
  margin: 0 auto !important;
  display: block !important;
  border-radius: 12px 12px 0 0 !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.dashboard-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   WHO THIS SERVICE IS BEST SUITED FOR SECTION
   ======================================== */

.suited-for-section {
  background-color: #ffffff;
  padding: 10px 10px;
  overflow-x: hidden;
}

/* --- 1. The Proportional Scaling Engine --- */
.scale-wrapper {
  container-type: inline-size;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.semi-circle-stage {
  position: relative;
  width: 100cqi;
  height: 52cqi;
}

/* --- 2. Geometry Backgrounds (Scaled in cqi) --- */
.glow-dome {
  position: absolute;
  bottom: 4.16cqi;
  left: 50%;
  transform: translateX(-50%);
  width: 80cqi;
  height: 40cqi;
  background: radial-gradient(70.74% 74.61% at 50.05% 100%,
      #ffffff 0%,
      #ebdacc 100%);
  border-radius: 80cqi 80cqi 0 0;
  z-index: 1;
  pointer-events: none;
}

.arc-ring {
  position: absolute;
  bottom: 4.16cqi;
  left: 50%;
  transform: translateX(-50%);
  border: max(1px, 0.1cqi) solid rgba(0, 0, 0, 0.1);
  border-bottom: none;
  z-index: 2;
  pointer-events: none;
}

/* The 4 perfectly spaced concentric rings */
.r1 {
  width: 36.66cqi;
  height: 18.33cqi;
  border-radius: 36.66cqi 36.66cqi 0 0;
  border-color: rgba(0, 0, 0, 0.04);
}

.r2 {
  width: 58.33cqi;
  height: 29.16cqi;
  border-radius: 58.33cqi 58.33cqi 0 0;
  border-color: rgba(0, 0, 0, 0.04);
}

.r3 {
  width: 80cqi;
  height: 40cqi;
  border-radius: 80cqi 80cqi 0 0;
}

.r4 {
  width: 95cqi;
  height: 45.5cqi;
  border-radius: 95cqi 95cqi 0 0;
}

.arc-line {
  position: absolute;
  bottom: 4.16cqi;
  left: 50%;
  width: 1px;
  height: 46cqi;
  /* Split color exactly at the dome's edge (40cqi / 46cqi = ~86.9%) */
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.04) 86.9%,
      rgba(0, 0, 0, 0.1) 86.9%,
      rgba(0, 0, 0, 0.1) 100%);
  transform-origin: bottom center;
  z-index: 2;
  pointer-events: none;
}

/* --- 3. Exact Typography (Center Text) --- */
.center-text {
  position: absolute;
  bottom: 3.33cqi;
  left: 50%;
  transform: translateX(-50%);
  width: 50cqi;
  text-align: center;
  z-index: 10;
}

.center-text h2 {
  font-family: "Rethink Sans";
  font-weight: 700;
  font-size: 3.5cqi;
  line-height: 4.33cqi;
  letter-spacing: 0%;
  color: #1f2937;
  margin-bottom: 1cqi;
}

.center-text p {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 1.66cqi;
  line-height: 2.83cqi;
  letter-spacing: 0%;
  color: #6b7280;
  padding-bottom: 3cqi;
}

/* --- 4. Exact Typography (Floating Badges) --- */
.badge {
  position: absolute;
  transform: translate(-50%, 50%);
  background: #ffffff;
  border: max(1px, 0.12cqi) solid var(--service-nav-bg);
  padding: 0.66cqi 1cqi;
  width: 23cqi;
  justify-content: flex-start;
  border-radius: 5cqi;
  display: flex;
  align-items: center;
  gap: 0.83cqi;
  box-shadow: 0 0.33cqi 1.25cqi rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  z-index: 20;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
  font-family: "Inter";
  font-weight: 600;
  font-size: 1.23cqi;
  line-height: 1.78cqi;
  letter-spacing: 0%;
  color: #374151;
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -0.5cqi;
  }
}

.badge:hover {
  box-shadow: 0 0.5cqi 1.66cqi rgba(214, 68, 45, 0.12);
  transform: translate(-50%, 50%) translateY(-0.25cqi);
}

.icon {
  width: 1.5cqi;
  height: 1.5cqi;
  min-width: 1.5cqi;
  flex-shrink: 0;
  background: var(--service-nav-bg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.83cqi;
  font-weight: bold;
}

.icon img {
  width: 55%;
  height: auto;
  filter: brightness(0) invert(1);
  display: block;
}

/* Top Badge */
.b-top {
  bottom: 45cqi;
  left: 50%;
  animation-delay: 0s;
}

/* Left Side Badges */
.b-left-1 {
  bottom: 37cqi;
  left: 33cqi;
  animation-delay: 0.2s;
}

.b-left-2 {
  bottom: 29cqi;
  left: 23cqi;
  animation-delay: 0.4s;
}

.b-left-3 {
  bottom: 21cqi;
  left: 17cqi;
  animation-delay: 0.6s;
}

.b-left-4 {
  bottom: 13cqi;
  left: 13cqi;
  animation-delay: 0.8s;
}

.b-left-5 {
  bottom: 5cqi;
  left: 11cqi;
  animation-delay: 1s;
}

/* Right Side Badges */
.b-right-1 {
  bottom: 37cqi;
  left: 67cqi;
  animation-delay: 0.1s;
}

.b-right-2 {
  bottom: 29cqi;
  left: 77cqi;
  animation-delay: 0.3s;
}

.b-right-3 {
  bottom: 21cqi;
  left: 83cqi;
  animation-delay: 0.5s;
}

.b-right-4 {
  bottom: 13cqi;
  left: 87cqi;
  animation-delay: 0.7s;
}

.b-right-5 {
  bottom: 5cqi;
  left: 89cqi;
  animation-delay: 0.9s;
}

/* ----------------------------------
   Service Tabs Section
   ---------------------------------- */
.service-tabs-section {
  padding-bottom: 60px;
  background-color: #EBDACC;
  /* Progress Section Background */
}

/* Full-Width Sticky Tabs Header Wrapper */
.service-tabs-section .tabs-header-wrapper {
  position: sticky;
  top: 50px;
  z-index: 999;
  background-color: #EBDACC;
  width: 100%;
  box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border-top: 1px solid #E5E7EB;
}

.service-tabs-section .tabs-header-inner {
  padding-top: 5px;
}

.service-tabs-section .tabs-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.service-tabs-section .tabs-header::-webkit-scrollbar {
  display: none;
}

.tab-item {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  padding: 15px 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  isolation: isolate;
}

.tab-item.active {
  color: var(--service-nav-bg);
  font-weight: 700;
}

/* Tab Indicator (Progress Bar) */
.tab-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #983434;
  /* Tab Progress Color */
  transition: width 0s linear;
}

.tab-item.active::after {
  width: 100%;
  transition: width 5s linear;
}

/* Tab Content Areas */
.tab-content {
  display: block !important;
  padding-top: 20px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.tab-visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

.tab-headline {
  text-align: center;
  margin-bottom: 40px;
}

.ser-tab-badge {
  display: inline-block;
  color: var(--service-nav-bg);
  font-family: "DM Sans";
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.tab-headline h2 {
  font-family: "Rethink Sans";
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #111827;
}

/* ----------------------------------
   Service Tab 1 (Masonry Grid)
   ---------------------------------- */
.tab-headline p {
  font-family: "DM Sans";
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.masonry-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.masonry-grid .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-tabs-section .card {
  border-radius: 16px;
  position: relative;
}

.masonry-grid .col>.card:last-child {
  flex: 1;
}

.service-tabs-section .white-card {
  background-color: #ffffff;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tabs-section .white-card h4 {
  font-family: "Rethink Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px 0;
}

.service-tabs-section .white-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.service-tabs-section .red-card {
  background-color: var(--service-nav-bg);
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-tabs-section .red-card .text-content {
  padding: 40px 40px 25px 40px;
}

.service-tabs-section .red-card h3 {
  font-family: "Rethink Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.service-tabs-section .red-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
  color: #fff;
}

.service-tabs-section .red-card .image-wrapper {
  padding: 0 40px 40px 40px;
}

.service-tabs-section .red-card .img-flush-bottom {
  padding-bottom: 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.service-tabs-section .red-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.service-tabs-section .red-card .img-flush-bottom img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: -21px;
}

@media (max-width: 900px) {
  .masonry-grid {
    flex-direction: column;
  }

  .masonry-grid .col>.card:last-child {
    flex: none;
  }
}

@media (max-width: 600px) {

  .service-tabs-section .red-card .text-content,
  .service-tabs-section .white-card {
    padding: 30px 25px;
  }

  .service-tabs-section .red-card .image-wrapper {
    padding: 0 25px 30px 25px;
  }

  .service-tabs-section .red-card .img-flush-bottom {
    padding-bottom: 0;
  }
}

/* ----------------------------------
   Wide Bottom Card
   ---------------------------------- */
.service-tabs-section .wide-card {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 220px;
}

.service-tabs-section .wide-card .text-content {
  flex: 0 0 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tabs-section .wide-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 30px;
  padding-left: 20px;
}

.service-tabs-section .wide-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top left;
  border-top-left-radius: 12px;
  box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: -2px;
  padding-right: 40px;
}

@media (max-width: 900px) {
  .service-tabs-section .wide-card {
    flex-direction: column;
  }

  .service-tabs-section .wide-card .text-content {
    flex: none;
    width: 100%;
    padding-bottom: 20px;
  }

  .service-tabs-section .wide-card .image-wrapper {
    padding-top: 0;
    padding-left: 20px;
  }

  .service-tabs-section .wide-card .image-wrapper img {
    border-top-left-radius: 12px;
  }
}

@media (max-width: 600px) {
  .service-tabs-section .wide-card .image-wrapper {
    padding-left: 0;
  }

  .service-tabs-section .wide-card .image-wrapper img {
    border-top-left-radius: 0;
  }
}

/* ----------------------------------
   Service Tab 2 (Advanced Invoicing)
   ---------------------------------- */

.banner-card {
  flex-direction: row;
  align-items: stretch;
  min-height: 240px;
  margin-bottom: 24px;
  width: 100%;
}

.banner-card .text-content {
  flex: 0 0 45%;
}

.banner-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  padding: 30px 30px 0 0;
}

.banner-img-1 {
  width: 70%;
  height: auto;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: -5px;
}

.banner-img-2 {
  width: 35%;
  height: auto;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: -5px;
}

.bottom-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.bottom-grid .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tall-card {
  flex: 1;
  flex-direction: column;
}

.tall-card .text-content {
  padding-bottom: 20px;
  flex: none;
}

.tall-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 40px;
}

.tall-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
  margin-bottom: -5px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.bottom-grid .col>.white-card {
  flex: 1;
}

@media (max-width: 900px) {
  .banner-card {
    flex-direction: column;
  }

  .banner-card .text-content {
    flex: none;
    width: 100%;
    padding-bottom: 20px;
  }

  .banner-card .image-wrapper {
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }

  .banner-img-1,
  .banner-img-2 {
    border-radius: 8px;
    margin-bottom: 0;
  }

  .bottom-grid {
    flex-direction: column;
  }

  .tall-card,
  .bottom-grid .col>.white-card {
    flex: none;
  }
}

@media (max-width: 500px) {
  .banner-card .image-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .banner-img-1,
  .banner-img-2 {
    width: 100%;
  }

  .tall-card .image-wrapper {
    padding: 0 20px;
  }
}

/* ========================================
   SERVICE TAB 6 CUSTOM GRID (More Features)
   (Migrated from billing.css)
   ======================================== */
.b-tab6-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.b-tab6-right-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b-tab6-card {
  border-radius: 12px;
  position: relative;
}

.b-tab6-red-card {
  background-color: #983434;
  /* Service Red */
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.b-tab6-red-card .text-content {
  padding: 40px 40px 0 40px;
  position: relative;
  z-index: 10;
}

.b-tab6-red-card h3 {
  font-family: "Rethink Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.b-tab6-red-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.b-tab6-red-card .image-wrapper {
  position: relative;
  flex: 1;
  min-height: 280px;
  margin-top: 20px;
}

.b-tab6-inv-img {
  position: absolute;
  border-radius: 6px;
  height: auto;
}

.b-tab6-inv-left {
  width: 55%;
  bottom: -15%;
  left: 5%;
  z-index: 1;
}

.b-tab6-inv-center {
  width: 65%;
  bottom: -5%;
  left: 18%;
  z-index: 2;
}

.b-tab6-inv-right {
  width: 35%;
  bottom: -20%;
  right: 5%;
  z-index: 3;
}

.b-tab6-white-card {
  background-color: #ffffff;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  flex: 1;
  min-height: 150px;
}

.b-tab6-white-card h4 {
  font-family: "Rethink Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px 0;
}

.b-tab6-white-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.b-tab6-barcode-card {
  position: relative;
  overflow: hidden;
  padding-right: 160px;
}

.b-tab6-barcode-img {
  position: absolute;
  right: -10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 160px;
  height: auto;
  pointer-events: none;
}

@media (max-width: 900px) {
  .b-tab6-tools-grid {
    grid-template-columns: 1fr;
  }

  .b-tab6-red-card .image-wrapper {
    min-height: 350px;
  }

  .b-tab6-white-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {

  .b-tab6-red-card .text-content,
  .b-tab6-white-card {
    padding: 30px 25px;
  }

  .b-tab6-red-card .image-wrapper {
    min-height: 250px;
  }

  .b-tab6-inv-left {
    width: 60%;
    left: -5%;
  }

  .b-tab6-inv-center {
    width: 70%;
    left: 15%;
  }

  .b-tab6-inv-right {
    width: 45%;
    right: -5%;
  }

  .b-tab6-barcode-card {
    padding-right: 25px;
    padding-bottom: 120px;
  }

  .b-tab6-barcode-img {
    right: 10px;
    bottom: 10px;
    transform: none;
    width: 120px;
  }
}

/* ========================================
   SERVICE TAB 7 CUSTOM GRID (Insights & Reports)
   (Migrated from billing.css)
   ======================================== */
.b-tab7-reports-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.b-tab7-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-tab7-card {
  border-radius: 12px;
  position: relative;
}

.b-tab7-white-card {
  background-color: #ffffff;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  min-height: 120px;
}

.b-tab7-white-card h4 {
  font-family: "Rethink Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
}

.b-tab7-white-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.b-tab7-red-card {
  background-color: #983434;
  /* Service Red */
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.b-tab7-tall-card {
  flex: 1;
}

.b-tab7-red-card .text-content {
  padding: 30px 30px 15px 30px;
}

.b-tab7-red-card h3 {
  font-family: "Rethink Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.b-tab7-red-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.b-tab7-image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 40px;
  margin-top: 10px;
}

.b-tab7-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: -2px;
}

.b-tab7-profit-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 40px;
  margin-top: 10px;
  min-height: 140px;
}

.b-tab7-profit-wrapper .b-tab7-img-back {
  width: 80%;
  height: auto;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: -2px;
}

.b-tab7-profit-wrapper .b-tab7-img-front {
  position: absolute;
  bottom: -2px;
  right: 30px;
  width: 70%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  z-index: 2;
}

@media (max-width: 900px) {
  .b-tab7-reports-grid {
    flex-direction: column;
  }

  .b-tab7-tall-card {
    flex: none;
  }
}

@media (max-width: 500px) {

  .b-tab7-red-card .text-content,
  .b-tab7-white-card {
    padding: 25px 20px;
  }

  .b-tab7-image-wrapper,
  .b-tab7-profit-wrapper {
    padding: 0 20px;
  }

  .b-tab7-profit-wrapper .b-tab7-img-front {
    right: 15px;
    width: 80%;
  }
}

/* ========================================
   INTEGRATIONS TAB (Migrated from laundry.css)
   ======================================== */

.service-tabs-section .theme-green {
  background: #983434 !important;
  /* Force Service Red override */
  box-shadow: none;
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.integrations-split-card {
  display: flex;
  flex-direction: column;
  padding: 40px 40px 0 40px;
}

.integrations-split-card .text-content {
  flex: 1;
  margin-bottom: 40px;
}

.integrations-split-card h2,
.integrations-split-card p {
  color: white;
}

.integrations-split-card .image-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.integrations-split-card .image-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.integrations-full-card {
  background-color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
  border-radius: 16px;
}

.integrations-full-card h2 {
  margin-bottom: 12px;
  color: #000;
}

.integrations-full-card p {
  color: #555;
  line-height: 1.6;
}

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

  .integrations-split-card {
    padding: 32px 32px 0 32px;
    text-align: center;
  }

  .integrations-split-card .text-content {
    margin-bottom: 32px;
  }

  .integrations-full-card {
    padding: 32px;
    text-align: center;
  }
}

/* =========================================
   Accounting & Expenses Section (from billing)
========================================= */

.laundry-accounting-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.accounting-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.accounting-header h2 {
  font-family: "Rethink Sans";
  font-size: 48px;
  font-weight: 800;
  color: black;
  margin-bottom: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.accounting-header p {
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.accounting-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.accounting-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 120px;
  z-index: 10;
  box-shadow:
    0 -4px 20px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.acc-content {
  flex: 1;
  padding: 60px;
}

.acc-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.acc-image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.acc-content h3 {
  font-family: "Rethink Sans";
  font-size: 31.5px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.acc-content p {
  font-family: "DM Sans";
  font-size: 15.6px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.acc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acc-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: "DM Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Light theme icon bubble (#EBDACC & #DEB695 cards) */
.acc-theme-light .icon-wrap {
  background: #d6442d;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
}

.acc-theme-light .icon-wrap img {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) invert(1);
}

/* Dark theme icon bubble (#983434 & #611B1B cards) */
.acc-theme-dark-green .icon-wrap,
.acc-theme-dark-black .icon-wrap {
  background: #ffffff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
}

.acc-theme-dark-green .icon-wrap img,
.acc-theme-dark-black .icon-wrap img {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) saturate(100%) invert(31%) sepia(35%) saturate(3048%) hue-rotate(331deg) brightness(84%) contrast(92%);
}

.acc-theme-dark-green .icon-wrap i,
.acc-theme-dark-black .icon-wrap i {
  display: block;
  width: 14px;
  height: 14px;
  background-color: #d6442d;
  -webkit-mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
  mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
  content: "";
}

/* Hide ::before font awesome content */
.acc-theme-light .icon-wrap i::before,
.acc-theme-dark-green .icon-wrap i::before,
.acc-theme-dark-black .icon-wrap i::before {
  display: none;
}

/* First 2 cards point colors - Dark Text */
.accounting-card:nth-child(1) .acc-content h3,
.accounting-card:nth-child(1) .acc-content p,
.accounting-card:nth-child(1) .acc-feature-list li,
.accounting-card:nth-child(2) .acc-content h3,
.accounting-card:nth-child(2) .acc-content p,
.accounting-card:nth-child(2) .acc-feature-list li {
  color: #08352c;
}

/* Last 2 cards point colors - White Text */
.accounting-card:nth-child(3) .acc-content h3,
.accounting-card:nth-child(3) .acc-content p,
.accounting-card:nth-child(3) .acc-feature-list li,
.accounting-card:nth-child(4) .acc-content h3,
.accounting-card:nth-child(4) .acc-content p,
.accounting-card:nth-child(4) .acc-feature-list li {
  color: #ffffff;
}

/* Responsive Accounting */
@media (max-width: 991px) {
  .laundry-accounting-section {
    padding: 60px 0;
  }

  .accounting-card {
    flex-direction: column-reverse;
    position: relative;
    top: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
  }

  .acc-content {
    padding: 30px 20px;
    text-align: left;
  }

  .acc-image-wrapper {
    padding: 30px 20px 0;
  }

  .acc-content h3 {
    font-size: 24px;
  }
}

/* =========================================
   Service Quick Action Section
========================================= */

.quick-action-section {
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.quick-container {
  max-width: 1200px;
  width: 100%;
}

.quick-label {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 12px;
  display: block;
}

.quick-main-header {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  color: #0F172A;
  text-align: center;
  margin: 0 auto 20px auto;
  max-width: 900px;
}

.quick-subtext {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #696969;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

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

/* Left Image Box */
.sq-image-col {
  /* Service Crimson Frame */
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sq-image-col img {
  width: 108%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Right Features Stack */
.sq-features-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sq-list-item {
  background-color: #EBDACC;
  /* Light Peach */
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s ease;
}

.sq-list-item:hover {
  transform: translateX(5px);
}

.sq-icon-wrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #983434;
  /* Service Crimson */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sq-list-item p {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Constraints */
@media (max-width: 991px) {
  .service-quick-grid {
    grid-template-columns: 1fr;
  }

  .sq-image-col {
    order: 2;
    /* Put image below feature stack on mobile */
  }

  .sq-features-col {
    order: 1;
    /* Keep features on top */
  }

  .quick-main-header {
    font-size: 36px;
    line-height: 44px;
  }

  .quick-subtext {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 576px) {
  .sq-list-item {
    padding: 20px;
    gap: 15px;
  }

  .sq-icon-wrapper {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }

  .sq-list-item p {
    font-size: 16px;
  }
}

/* --- Customer Dashboard Section (Migrated from billing) --- */
.billing-dashboard-section {
  background: #983434;
  /* Muted peach to replace #ff9f7b */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.billing-dashboard-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.billing-dashboard-title {
  font-family: "Rethink Sans";
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  color: #ffffff;
  /* Changed from #f9f9f9 since bg is lighter */
  margin-bottom: 24px;
}

.billing-dashboard-description {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #E8F6ED;
  /* Changed from #e8f6ed */
  max-width: 750px;
  margin: 0 auto;
}

.billing-dashboard-image-container {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.billing-dashboard-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .billing-dashboard-title {
    font-size: 32px;
    line-height: 40px;
  }

  .billing-dashboard-section {
    padding-top: 60px;
  }
}

/* --- Auto-Scrolling Dashboard Cards --- */
.dash-scroll-section {
  background: #EBDACC;
  /* Replaced #ffece5 */
  padding: 30px 0 50px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.dash-scroll-track {
  display: flex;
  gap: 30px;
  animation: dash-scroll 40s linear infinite;
  width: max-content;
  padding-left: 20px;
}

.dash-scroll-track:hover {
  animation-play-state: paused;
}

.dash-scroll-card {
  background: #ffffff;
  /* Muted peach bg */
  border-radius: 12px;
  padding: 24px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: normal;
  transition: transform 0.3s ease;
}

.dash-scroll-card:hover {
  transform: translateY(-5px);
}

.dash-card-icon {
  background: #983434;
  /* Service Crimson */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.dash-card-icon img {
  width: 20px;
  height: auto;
  display: block;
}

.dash-card-title {
  font-family: "Rethink Sans";
  font-weight: 700;
  font-size: 20px;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.dash-card-desc {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}

@keyframes dash-scroll {
  0% {
    transform: translateX(0);
  }

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

/* --- Instant E-Way Bill Generation Section --- */
.eway-bill-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.eway-header {
  margin-bottom: 50px;
}

.eway-pill {
  display: inline-block;
  color: #983434;
  /* Service Crimson */
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.eway-title {
  font-family: "Rethink Sans", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.eway-subtitle {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.eway-content-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  justify-content: space-between;
  gap: 20px;
  align-items: stretch;
  margin: 0 auto;
  max-width: 1200px;
  /* Added max-width matching billing.css */
}

.eway-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.eway-feature-card {
  background: #EBDACC;
  /* Muted peach */
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease;
}

.eway-feature-card:hover {
  transform: translateY(-5px);
}

.eway-icon-circle {
  width: 40px;
  height: 40px;
  background: #983434;
  /* Service Crimson */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
}

.eway-icon-circle img {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
}

.eway-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: "Rethink Sans", sans-serif;
}

.eway-feature-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

.eway-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #983434;
  /* Service Crimson */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.eway-main-img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.eway-overlay-img {
  position: absolute;
  bottom: -18px;
  right: 20px;
  width: 80%;
  z-index: 3;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .eway-content-grid {
    grid-template-columns: 1fr;
  }

  .eway-features-grid {
    order: 2;
  }

  .eway-image-frame {
    order: 1;
    max-width: 600px;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 768px) {
  .eway-features-grid {
    grid-template-columns: 1fr;
  }

  .eway-title {
    font-size: 32px;
  }

  .eway-overlay-img {
    width: 90%;
    bottom: -20px;
    right: 10px;
  }
}

/* --- WhatsApp Chatbot Section --- */
.wa-chatbot-section {
  padding: 80px 20px;
  background-color: #ffffff;
  max-width: 1500px !important;
  margin: 0 auto;
}

.new-wa-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.pricing-highlight {
  color: #983434;
  /* Service Crimson */
}

/* --- New Mobile App Section (ex-app) --- */
.ex-app-card {
  background-color: #983434;
  /* Service Crimson */
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ex-center-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.ex-app-label {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ex-app-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.ex-arrow-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto;
}

.ex-content-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  width: 100%;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.ex-features-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.ex-center-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.left-features .ex-feature-box,
.right-features .ex-feature-box {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px;
  border: none;
  box-shadow: none;
}

.ex-icon-circle {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ex-icon-circle img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(3015%) hue-rotate(344deg) brightness(87%) contrast(90%);
}

.ex-feature-box h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Rethink Sans", sans-serif;
}

.ex-feature-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ex-phone-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ex-phone-img {
  max-width: 320px;
  display: block;
  margin-bottom: 0px;
  margin-top: auto;
}

.ex-play-store {
  margin-top: 40px;
  text-align: center;
  z-index: 3;
}

.ex-play-store img {
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .ex-content-grid {
    grid-template-columns: 1fr;
  }

  .ex-phone-col {
    order: 1;
    margin-bottom: 40px;
  }

  .ex-phone-img {
    margin-bottom: 0;
  }

  .left-features {
    order: 2;
  }

  .right-features {
    order: 3;
  }

  .ex-app-card {
    padding: 40px;
  }

  .ex-play-store {
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }
}

.new-wa-subtitle {
  color: #983434;
  /* Service Crimson */
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.new-wa-title {
  font-family: "Rethink Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.new-wa-mascot-box img {
  height: 120px;
  width: auto;
}

.new-wa-orange-card {
  background-color: #983434;
  /* Service Crimson */
  background-image: url("../images/billing/bot-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.new-wa-owner-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 16px;
}

.new-wa-card-title {
  color: #ffffff;
  font-family: "Rethink Sans", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
}

.new-wa-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-wa-feat-item {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.new-wa-feat-icon {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #983434;
  /* Service Crimson */
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.new-wa-feat-icon::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #983434;
  /* Service Crimson Theme */
  -webkit-mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
  mask: url("../images/hero-center-logo.svg") no-repeat center/contain;
}

.new-wa-feat-icon img {
  width: 14px;
  height: auto;
}

.new-wa-feat-text h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Rethink Sans", sans-serif;
}

.new-wa-feat-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.new-wa-right-col {
  display: flex;
  justify-content: center;
}

.new-wa-right-col .wa-phone-mockup {
  max-width: 320px;
}

@media (max-width: 1024px) {
  .new-wa-orange-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .new-wa-header-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .new-wa-title {
    font-size: 32px;
  }

  .new-wa-card-title {
    font-size: 28px;
  }
}

/* ========================================================= */
/* Expenses App Redesign */
/* ========================================================= */

.mobile-app-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.mobile-app-subtitle {
  color: #983434;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

.mobile-app-title {
  font-family: "Rethink Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

.mobile-app-description {
  text-align: center;
  color: #666666;
  font-size: 16px;
  margin-bottom: 50px;
}

.ex-app-card {
  background-color: #983434;
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ex-center-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.ex-app-label {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ex-app-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.ex-arrow-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto;
}

.ex-content-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  width: 100%;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.ex-features-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.ex-center-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.left-features .ex-feature-box,
.right-features .ex-feature-box {
  background: rgba(0, 0, 0, 0.08);
  /* Darker subtle overlay */
  border-radius: 12px;
  padding: 24px;
  border: none;
  box-shadow: none;
}

.ex-icon-circle {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ex-icon-circle img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(3015%) hue-rotate(344deg) brightness(87%) contrast(90%);
  /* Approximate #983434 */
  /* Turn checkmark to Crimson */
}

.ex-feature-box h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Rethink Sans", sans-serif;
}

.ex-feature-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ex-phone-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Anchor image to bottom */
}

.ex-phone-img {
  max-width: 320px;
  display: block;
  margin-bottom: 0px;
  margin-top: auto;
}

.ex-play-store {
  margin-top: 40px;
  text-align: center;
  z-index: 3;
}

.ex-play-store img {
  height: 44px;
  /* make it a bit prominent */
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .ex-content-grid {
    grid-template-columns: 1fr;
  }

  .ex-phone-col {
    order: 1;
    /* Bring phone to top */
    margin-bottom: 40px;
  }

  .ex-phone-img {
    margin-bottom: 0;
    /* Reset */
  }

  .left-features {
    order: 2;
  }

  .right-features {
    order: 3;
  }

  .ex-app-card {
    padding: 40px;
  }

  .ex-play-store {
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }
}

/* --- GST Filing & Compliance Section (Migrated from billing) --- */
.gst-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
}

.gst-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 5%;
  align-items: stretch;
}

/* Left Content Styles */
.gst-content-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.gst-subtitle {
  color: #983434;
  /* Service Crimson */
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 10px 0;
  font-family: "Inter";
}

.gst-title {
  font-size: 42px;
  color: #2d333a;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Inter";
}

.gst-highlight-wrapper {
  position: relative;
  display: inline-block;
}

.gst-description {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 95%;
  font-family: "Inter";
}

/* Features Grid Styles */
.gst-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 40px;
}

.gst-feature-item {
  display: flex;
  flex-direction: column;
}

.gst-icon-circle {
  width: 42px;
  height: 42px;
  background: #983434;
  /* Service Crimson */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gst-icon-circle img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.gst-feature-item h3 {
  font-size: 18px;
  color: #111827;
  margin: 0 0 12px 0;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Inter";
}

.gst-feature-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-family: "Inter";
}

/* Right Content Styles */
.gst-content-right {
  flex: 0 0 45%;
  position: relative;
}

.gst-green-bg {
  background: #EBDACC;
  /* Muted Peach */
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Overlapping Image Styles */
.img-gst-1 {
  position: absolute;
  top: 10%;
  left: 0px;
  width: 420px;
  border-radius: 8px;
  z-index: 1;
}

.img-gst-2 {
  position: absolute;
  top: 47%;
  right: 0;
  width: 420px;
  border-radius: 8px;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .gst-container {
    flex-direction: column;
  }

  .gst-content-left {
    flex: 1 1 100%;
  }

  .gst-content-right {
    flex: 1 1 100%;
    margin-top: 60px;
  }

  .img-gst-1 {
    top: 5%;
    left: 10%;
    width: 45%;
  }

  .img-gst-2 {
    top: 40%;
    right: 10%;
    width: 45%;
  }

  .gst-green-bg {
    height: 500px;
  }
}

/* --- Pricing Section (Migrated from billing) --- */
.pricing-section {
  padding: 40px 20px;
  background-color: #f9fafb;
  text-align: center;
}

.pricing-title-wrapper {
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.pricing-title {
  font-size: 36px;
  color: #2d333a;
  font-weight: 700;
  font-family: "Inter";
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

/* Custom underline for "Pricing Plans" */
.pricing-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.pricing-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background-color: #EBDACC;
  /* Muted Peach underline */
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  align-items: stretch;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1;
  min-width: 260px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Most Popular Card Styles */
.pricing-card.popular {
  background-color: #f6eaea;
  /* Light Crimson Tint to replace light orange #fff2ed */
  border: 1px solid #983434;
  /* Service Crimson */
  transform: scale(1.02);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #983434;
  /* Service Crimson */
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
  font-family: "Inter";
}

.plan-period {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 25px;
}

.pricing-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #983434;
  /* Service Crimson */
  color: white;
  font-weight: 600;
  font-size: 12px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 25px;
  transition: background-color 0.2s;
  width: 100%;
}

.pricing-btn:hover {
  background-color: #7a2a2a;
  /* Darker Crimson */
}

/* Feature List */
.features-header {
  font-size: 13px;
  font-weight: 700;
  color: #983434;
  /* Service Crimson */
  text-align: left;
  margin-bottom: 15px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-feature-item {
  font-size: 13px;
  color: #374151;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.pricing-feature-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background-color: #f6eaea;
  /* Light Crimson Tint */
  color: #983434;
  /* Service Crimson */
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.disclaimer {
  font-size: 12px;
  color: #6b7280;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pricing-disclaimer {
  font-family: "Inter";
  color: #333333;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  margin-top: -40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* Add-on Section */
.addon-section {
  background-color: #EBDACC;
  /* Muted Peach to replace #ffece5 */
  border-radius: 16px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  gap: 30px;
}

.addon-text {
  flex: 1;
  padding-right: 30px;
  border-right: 1px solid #d7d7d7;
}

.addon-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  /* Dark Gray replacing #064e3b */
  margin: 0 0 5px 0;
}

.addon-text p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}

.addon-btn {
  background-color: #983434;
  /* Service Crimson */
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.addon-btn:hover {
  background-color: #7a2a2a;
  /* Darker Crimson */
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
  }

  .addon-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .addon-text {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
  }
}

/* --- FAQ Section Migrated --- */
.service-page .faq-section {
  background: #fff;
  /* Shorthand clears image */
  background-image: none;
  /* Explicitly clear just in case */
  padding: 80px 0;
}

.service-page .faq-container {
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-page .faq-left {
  background: transparent;
  padding: 0;
  width: 100%;
}

.service-page .faq-right {
  display: none;
}

.service-page .faq-section .section-sub-heading {
  /* Keeping existing style or updating if needed. User didn't specify sub-heading explicitly, focusing on 'faq billing' (title?) */
  color: #983434;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-page .faq-section .section-heading {
  font-family: "Rethink Sans";
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 50px;

  background: #983434;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Fallback */

  /* Ensure it behaves like block for alignment */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.service-page .faq-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-page .faq-item.active {
  background: #fff;
  border-color: #983434;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(152, 52, 52, 0.1);
}

.service-page .faq-question h3 {
  font-family: "Rethink Sans";
  font-weight: 600;
  /* font-size: Display 5 -> assuming ~22px based on context or user's likely system */
  font-size: 22px;
  line-height: 135%;
  letter-spacing: 0;
  color: #170f49;
  /* Neutral-800 */
  margin: 0;
  padding-right: 20px;
}

.service-page .toggle-icon {
  background: #983434;
  color: #fff;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-page .faq-answer {
  margin-top: 0;
  padding-top: 0;
  color: #6f6c8f;
  /* Neutral-600 */
  font-family: "DM Sans";
  font-weight: 400;
  /* font-size: 18pt -> 24px? That's huge. I'll use 18px */
  font-size: 18px;
  line-height: 166%;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-page .faq-item.active .faq-answer {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  max-height: 200px;
  /* Adjust as needed */
  opacity: 1;
}

.service-page .faq-answer p {
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   ORDER MANAGEMENT TAB CARDS (Service)
   ======================================== */
.ser-order-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.grid-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid-col>.card:last-child {
  flex-grow: 1;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-red {
  background-color: #983434;
  color: #ffffff;
}

.card-red .text-content {
  padding: 35px 35px 30px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-red h4 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.card-red p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #f3f4f6;
  opacity: 0.95;
}

.card-red .image-wrapper {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-red .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: -2px;
}

.card-white {
  background-color: #ffffff;
  padding: 35px;
  color: #333;
  justify-content: center;
}

.card-white h4 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #111;
}

.card-white p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

.card-horizontal {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-horizontal .text-content {
  flex: 1;
}

.wa-icon {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .ser-order-grid {
    flex-direction: column;
  }

  .grid-col>.card:last-child {
    flex-grow: 0;
  }
}

@media (max-width: 600px) {

  .card-red .text-content,
  .card-white {
    padding: 25px;
  }

  .card-red h4,
  .card-white h4 {
    font-size: 18px;
  }

  .wa-icon {
    width: 55px;
  }

  .card-horizontal {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   BILLING TAB 8 EXPENSES GRID (Service)
   ======================================== */
.b-tab8-card {
  border-radius: 12px;
  position: relative;
}

.b-tab8-red-card {
  background-color: #983434;
  color: white;
  overflow: hidden;
  display: flex;
}

.b-tab8-red-card h3 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.b-tab8-red-card p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.b-tab8-white-card {
  background-color: #ffffff;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b-tab8-white-card h4 {
  font-family: "Rethink Sans";
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
}

.b-tab8-white-card p {
  font-family: "DM Sans";
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.b-tab8-wide-banner {
  flex-direction: row;
  align-items: stretch;
  min-height: 260px;
  margin-bottom: 24px;
}

.b-tab8-wide-banner .text-content {
  flex: 0 0 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.b-tab8-voucher-wrapper {
  flex: 1;
  position: relative;
  min-height: 260px;
}

.b-tab8-voucher-img {
  position: absolute;
  border-radius: 8px;
  height: auto;
}

.b-tab8-voucher-left {
  width: 45%;
  bottom: -10%;
  left: 5%;
  z-index: 1;
}

.b-tab8-voucher-center {
  width: 45%;
  bottom: -5%;
  left: 30%;
  z-index: 3;
}

.b-tab8-voucher-right {
  width: 40%;
  top: 15%;
  right: -5%;
  z-index: 2;
}

.b-tab8-bottom-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.b-tab8-mobile-card {
  flex: 1;
  flex-direction: column;
}

.b-tab8-mobile-card .text-content {
  padding: 40px 40px 0 40px;
}

.b-tab8-phone-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 30px;
}

.b-tab8-phone-wrapper img {
  width: 55%;
  height: auto;
  display: block;
  margin-bottom: -5px;
}

.b-tab8-right-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b-tab8-right-stack .b-tab8-white-card {
  flex: 1;
  min-height: 130px;
  border-radius: 12px;
}

/* Recurring Expenses bottom card */
.exp-wide-card {
  background-color: #983434;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  min-height: 340px;
  margin-top: 24px;
}

.exp-text-content {
  flex: 0 0 35%;
  padding: 50px 40px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.exp-text-content h3 {
  font-family: "Rethink Sans";
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.exp-text-content p {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #f3f4f6;
  opacity: 0.95;
}

.exp-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.exp-img-back {
  position: absolute;
  bottom: -2px;
  left: -50px;
  width: 65%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  z-index: 1;
}

.exp-img-front {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 60%;
  height: auto;
  border-top-left-radius: 8px;
  z-index: 2;
}

@media (max-width: 900px) {
  .exp-wide-card {
    flex-direction: column;
    min-height: 500px;
  }

  .exp-text-content {
    flex: none;
    padding: 40px 30px 20px 30px;
  }

  .exp-image-wrapper {
    min-height: 250px;
  }

  .exp-img-back {
    width: 80%;
    left: 5%;
  }

  .exp-img-front {
    width: 70%;
    right: 0;
  }
}

@media (max-width: 600px) {
  .exp-wide-card {
    min-height: 450px;
  }

  .exp-text-content h3 {
    font-size: 22px;
  }

  .exp-img-back {
    width: 90%;
    left: 0;
    border-top-left-radius: 0;
  }

  .exp-img-front {
    width: 80%;
  }
}

@media (max-width: 900px) {
  .b-tab8-wide-banner {
    flex-direction: column;
  }

  .b-tab8-wide-banner .text-content {
    flex: none;
    width: 100%;
    padding-bottom: 20px;
  }

  .b-tab8-voucher-wrapper {
    min-height: 280px;
  }

  .b-tab8-bottom-grid {
    flex-direction: column;
  }

  .b-tab8-right-stack .b-tab8-white-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {

  .b-tab8-wide-banner .text-content,
  .b-tab8-mobile-card .text-content,
  .b-tab8-white-card {
    padding: 30px 25px;
  }

  .b-tab8-voucher-left {
    width: 50%;
    left: -5%;
  }

  .b-tab8-voucher-center {
    width: 55%;
    left: 20%;
  }

  .b-tab8-voucher-right {
    width: 50%;
    right: -10%;
  }
}

/* ========================================
   BILLING TAB 4 INVENTORY MANAGEMENT GRID (Service)
   ======================================== */
.b-tab4-top-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.b-tab4-bottom-row {
  display: flex;
  gap: 24px;
}

.b-tab4-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b-tab4-card {
  border-radius: 12px;
  position: relative;
}

.b-tab4-white-card {
  background-color: #ffffff;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.b-tab4-right-stack .b-tab4-white-card {
  flex: 1;
}

.b-tab4-bottom-row .b-tab4-white-card {
  flex: 1;
}

.b-tab4-white-card h4 {
  font-family: "Rethink Sans";
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px 0;
}

.b-tab4-white-card p {
  font-family: "DM Sans";
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.b-tab4-red-card {
  background-color: #983434;
  color: white;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.b-tab4-red-card .text-content {
  padding: 40px 40px 20px 40px;
}

.b-tab4-red-card h3 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.b-tab4-red-card p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.b-tab4-red-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 35px;
}

.b-tab4-red-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: -5px;
}

@media (max-width: 900px) {

  .b-tab4-top-row,
  .b-tab4-bottom-row {
    flex-direction: column;
  }

  .b-tab4-red-card {
    flex: none;
  }

  .b-tab4-right-stack .b-tab4-white-card {
    min-height: 140px;
  }
}

/* ========================================
   BILLING TAB 3 PURCHASE MANAGEMENT GRID (Service)
   ======================================== */
.b-tab3-top-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.b-tab3-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b-tab3-card {
  border-radius: 12px;
  position: relative;
}

.b-tab3-white-card {
  background-color: #ffffff;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.b-tab3-white-card h4 {
  font-family: "Rethink Sans";
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px 0;
}

.b-tab3-white-card p {
  font-family: "DM Sans";
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.b-tab3-red-card {
  background-color: #983434;
  color: white;
  display: flex;
  overflow: hidden;
}

.b-tab3-tall-card {
  flex-direction: column;
  flex: 1;
}

.b-tab3-tall-card .text-content {
  padding: 40px 40px 20px 40px;
}

.b-tab3-tall-card h3 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.b-tab3-tall-card p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.b-tab3-tall-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 35px;
}

.b-tab3-tall-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: -2px;
}

.b-tab3-wide-card {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 220px;
}

.b-tab3-wide-card .text-content {
  flex: 0 0 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b-tab3-wide-card h3 {
  font-family: "Rethink Sans";
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.b-tab3-wide-card p {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.b-tab3-wide-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 30px;
  padding-left: 20px;
}

.b-tab3-wide-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top left;
  border-top-left-radius: 12px;
  box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.05);
  margin-right: 30px;
}

@media (max-width: 900px) {
  .b-tab3-top-grid {
    flex-direction: column;
  }

  .b-tab3-tall-card {
    flex: none;
  }

  .b-tab3-wide-card {
    flex-direction: column;
  }

  .b-tab3-wide-card .text-content {
    flex: none;
  }
}

/* ========================================
   BILLING TAB 2 ADVANCED INVOICING GRID (Service)
   ======================================== */
.b-tab2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.b-tab2-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: none;
}

.b-tab2-red-card {
  background-color: #983434;
  color: white;
}

.b-tab2-red-card h3 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.b-tab2-red-card p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.b-tab2-white-card {
  background-color: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b-tab2-white-card h4 {
  font-family: "Rethink Sans";
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
}

.b-tab2-white-card p {
  font-family: "DM Sans";
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.b-tab2-banner-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
  min-height: 240px;
}

.b-tab2-banner-card .text-content {
  flex: 1;
  padding: 20px 20px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 35%;
}

.b-tab2-banner-card .image-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  padding: 30px 30px 0 0;
  overflow: hidden;
}

.b-tab2-banner-card .banner-img-1 {
  width: 70%;
  height: auto;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: -10px;
}

.b-tab2-banner-card .banner-img-2 {
  width: 40%;
  height: auto;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: -10px;
}

.b-tab2-tall-card {
  display: flex;
  flex-direction: column;
}

.b-tab2-tall-card .text-content {
  padding: 40px 40px 20px 40px;
}

.b-tab2-tall-card .image-wrapper {
  flex: 1;
  position: relative;
  padding: 0 20px;
}

.b-tab2-tall-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
  margin-bottom: -10px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.b-tab2-right-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-tab2-right-stack .b-tab2-white-card {
  flex: 1;
}

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

  .b-tab2-banner-card {
    flex-direction: column;
  }

  .b-tab2-banner-card .text-content {
    max-width: 100%;
    padding: 30px;
  }

  .b-tab2-banner-card .image-wrapper {
    min-height: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
  }

  .b-tab2-banner-card .banner-img-1,
  .b-tab2-banner-card .banner-img-2 {
    border-radius: 8px;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .b-tab2-banner-card .image-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .b-tab2-banner-card .banner-img-1,
  .b-tab2-banner-card .banner-img-2 {
    width: 100%;
  }
}

/* ========================================
   MULTIPLE INVOICE FORMATS SECTION (Service)
   ======================================== */
.ser-showcase-section {
  padding: 80px 20px;
  background: #ffffff;
}

.ser-showcase-container {
  max-width: 1250px;
  margin: 0 auto;
}

.ser-showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.ser-showcase-badge {
  display: block;
  color: #983434;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "DM Sans";
}

.ser-showcase-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
  line-height: 1.2;
  font-family: "Rethink Sans";
}

.ser-showcase-header p {
  font-size: 17px;
  color: #6b7280;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.5;
  font-family: "DM Sans";
}

.ser-showcase-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.ser-showcase-side-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ser-showcase-feature-card {
  background-color: #FFF1F1;
  padding: 20px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ser-showcase-icon-circle {
  width: 40px;
  height: 40px;
  background-color: #983434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ser-showcase-icon-circle img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.ser-showcase-icon-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ser-showcase-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.4;
  font-family: "Rethink Sans";
}

.ser-showcase-feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-family: "DM Sans";
}

.ser-showcase-center-col {
  background-color: #983434;
  flex: 1.4;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 550px;
}

.ser-showcase-center-col .ser-showcase-img {
  position: absolute;
  border-radius: 8px;
}

.ser-img-1 {
  top: 2%;
  left: 40%;
  transform: translateX(-50%);
  width: 68%;
  z-index: 1;
}

.ser-img-3 {
  bottom: 1px;
  left: -2%;
  width: 75%;
  z-index: 2;
  margin-bottom: -25px;
}

.ser-img-4 {
  bottom: -2px;
  right: 1%;
  width: 61%;
  z-index: 3;
  margin-bottom: -25px;
}

.ser-img-2 {
  top: 17%;
  right: 10%;
  width: 40%;
  z-index: 2;
}

@media (max-width: 1100px) {
  .ser-showcase-grid {
    flex-direction: column;
  }

  .ser-showcase-center-col {
    order: -1;
    min-height: 500px;
    width: 100%;
  }

  .ser-showcase-side-col {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ser-showcase-feature-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .ser-showcase-header h2 {
    font-size: 32px;
  }

  .ser-showcase-side-col {
    flex-direction: column;
  }

  .ser-showcase-feature-card {
    flex: 1 1 100%;
  }

  .ser-showcase-center-col {
    min-height: 420px;
  }
}

/* ========================================
   MULTI-USER ACCESS SECTION (Service)
   ======================================== */
.ser-mu-section {
  padding: 80px 20px;
  background: #ffffff;
}

.ser-mu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  align-items: start;
}

.ser-mu-text-block {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}

.ser-mu-image-block {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ser-mu-subtitle {
  color: #983434;
  font-family: "DM Sans";
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.ser-mu-title {
  font-family: "Rethink Sans";
  font-size: 42px;
  font-weight: 700;
  color: #333333;
  line-height: 1.25;
  margin: 0 0 20px 0;
}

.ser-mu-desc {
  font-family: "DM Sans";
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 95%;
}

.ser-mu-main-img {
  width: 80%;
  max-width: 550px;
  height: auto;
  display: block;
  padding-top: 50px;
}

.ser-mu-feat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ser-mu-icon {
  width: 42px;
  height: 42px;
  background: #983434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ser-mu-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.ser-mu-feat-item h3 {
  font-family: "Rethink Sans";
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ser-mu-feat-item p {
  font-family: "DM Sans";
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .ser-mu-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ser-mu-text-block {
    grid-column: span 2;
  }

  .ser-mu-image-block {
    grid-column: span 2;
    grid-row: auto;
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .ser-mu-container {
    grid-template-columns: 1fr;
  }

  .ser-mu-text-block,
  .ser-mu-image-block {
    grid-column: 1;
  }
}

/* ========================================
   ONBOARDING & SUPPORT SECTION (Service)
   ======================================== */
.ser-ob-section {
  padding: 100px 20px;
  background: #983434;
  color: white;
}

.ser-ob-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.ser-ob-left {
  flex: 0 0 45%;
  position: sticky;
  top: 120px;
  padding-bottom: 40px;
}

.ser-ob-subtitle {
  font-family: "DM Sans";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px 0;
}

.ser-ob-title {
  font-family: "Rethink Sans";
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 24px 0;
}

.ser-ob-desc {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

.ser-ob-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ser-ob-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  color: #111827;
}

.ser-ob-card h3 {
  font-family: "Rethink Sans";
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.ser-ob-card p {
  font-family: "DM Sans";
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.ser-ob-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ser-ob-list li {
  font-family: "DM Sans";
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ser-ob-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #983434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ser-ob-icon img {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .ser-ob-container {
    flex-direction: column;
    gap: 40px;
  }

  .ser-ob-left {
    position: static;
    flex: none;
    width: 100%;
  }
}