body {
  background: #fcfbf9;
  font-family: "Afacad", sans-serif;
  color: #2d2d2d;
  overflow-x: hidden;
}

* {
  font-family: "Afacad", sans-serif;
}

p {
  font-family: "Afacad", sans-serif;
  font-size: 1.2rem;
}
.subpara {
  margin: auto;
  width: 75%;
}
/* @media (min-width: 1400px) {
  p {
    font-size: 1.3rem !important;
   
  }
} */
.cta-section {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

html body section {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

/* Base (mobile-first) */
/* html body section,
html body section[class],
html body section[id] {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  padding-left: 25px !important;
  padding-right: 25px !important;
} */

/* Tablets ≥768px */
@media (max-width: 1300px) {
  html body section,
  html body section[class],
  html body section[id] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Desktops ≥1200px */
/* @media (min-width: 1400px) {

  html body section,
  html body section[class],
  html body section[id] {

    padding-left: 50px !important;
    padding-right: 50px !important;
  }
} */

.bg-light {
  background-color: #f6f2ff !important;
}

.btn-light {
  color: #6927ff !important;
}

hr {
  border: none !important;
  height: 1px !important;
  width: 100% !important;
  margin: 0 !important;
  background: linear-gradient(
    to right,
    rgba(44, 30, 85, 0),
    rgba(44, 30, 85, 1) 20%,
    rgba(44, 30, 85, 1) 80%,
    rgba(44, 30, 85, 0)
  ) !important;
}

.dot {
  top: -3px !important;
  width: 6px !important;
  height: 6px !important;
}

.navbar {
  padding: 0;
  position: sticky;
  top: 0;
  background: #fcfbf9;
  z-index: 9999;
  transition: box-shadow 0.3s ease-in-out;
}

/* Shadow appears when scrolled */
.navbar.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Playfair", serif;
  font-weight: bolder;
  font-size: 2.5rem;
}

.btn-purple {
  background-color: #6927ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  border: 2px solid #6927ff;
}

.btn-purple:hover {
  background-color: #ffffff;
  border: 2px solid #6927ff;
}

.cart-btn {
  background-color: #6927ff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  color: white;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero-section {
  padding: 150px 0 0 0 !important;
  position: relative;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.3;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair" !important;
}

/* section h2 {
  font-size: 2.5rem;
  background: linear-gradient(180deg, #211E1E 27%, #6927FF 100%);
  -webkit-background-clip: text !important;
 
  background-clip: text !important;
  
  color: transparent !important;
} */

section.cta-section h2 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: white !important;
  background-clip: unset !important;
  color: white !important;
}

.hero-highlight {
  background: linear-gradient(180deg, #211e1e 27%, #6927ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* for Firefox */
  color: transparent;
}

.hero-text {
  color: #666;
  margin-top: 20px;
  font-size: 1.5rem;
  margin: auto;
  line-height: 1.6;
}

/* .w-50 {
  width: 35% !important;
} */
.search-box {
  margin-top: 30px;
}

.dropdown-flag {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 180px;
  height: 40px;
  border-left: 1px solid #dee2e6;
  background: transparent;
  font-weight: 500;
  color: #6a3ef0;
  appearance: none;
  padding-right: 10px;
  cursor: pointer;
  font-size: 0.95rem;
}

.country-select option {
  background-color: #fff;
  color: #333;
}

.country-select:focus {
  outline: none;
  box-shadow: none;
}

/* .search-input {
  padding-right: 150px !important; 
} */

.search-box .w-65 {
  width: 65% !important;
}
@media (max-width: 992px) {
  .search-box .w-65 {
    width: 80% !important;
  }
}
.form-control {
  border-radius: 8px;
  padding-top: 0.575rem !important;
  padding-bottom: 0.575rem !important;
}

/* Floating visual box in hero */
.visual-box-container {
  position: absolute;
  top: 0;
  width: 390px;
  height: 400px;
  top: 0;
  margin: 0 10% auto;
}

.main-box {
  position: relative;
  /* Needed for ::after positioning */
  border: 1px solid #7e3ff2;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* Ensures gradient stays inside the box */
}

/* Right border with vertical fade */
.main-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  /* thickness of the border */
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(126, 63, 242, 1),
    rgba(126, 63, 242, 0)
  );
}

.float-box {
  position: absolute;
  width: 140px;
  height: 80px;
  background: #fff;
  border: 1px solid #7e3ff2;
  border-radius: 8px;
}

.float-box-top {
  top: 30px;
  right: -40px;
}

.float-box-bottom {
  bottom: -20px;
  left: -40px;
}

.shadow-purple {
  box-shadow: 0 0 10px rgba(127, 63, 242, 0.3);
}

/* ========================= */
/* OTHER SECTIONS */
/* ========================= */
.gradient-divider {
  height: 180px;
  background: linear-gradient(to bottom, transparent, #dcd0ff);
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-box {
  border-radius: 12px;
  background: #f9f5ff;
  height: 100%;
  text-align: left;
  padding: 20px 5px 0 5px;
  border: 2px solid transparent;
}

.services-box:hover {
  border: 2px solid #6927ff;
}

.services-box p {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #7e7b7bf8;
  line-height: 1.6;
}

.icon-box {
  width: 30px;
  height: 30px;
  background: #5f23d8;
  color: white;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-services-img {
  border-radius: 12px;
  max-width: 100%;
}

.hero-section .search-input {
  background: url("https://cdn.jsdelivr.net/npm/bootstrap-icons/icons/search.svg")
    no-repeat 10px center;
  padding-left: 35px;
}
@media (max-width: 1200px) {
  .hero-search .search-input::placeholder {
    /* color: transparent !important; */
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .hero-search .search-input::placeholder {
    /* color: transparent !important; */
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .hero-box .search-input::placeholder {
    /* color: transparent !important; */
    font-size: 7px;
  }
  .search-box .search-input::placeholder {
    /* color: transparent !important; */
    font-size: 9px;
  }
}

@media ((min-width: 992px) and (max-width:1200px)) {
  .mega-menu .dropdown-item {
    font-size: 0.7rem !important;
  }
}
.search-input {
  background-color: transparent;
  background-size: 16px;

  /* space so text doesn't overlap icon */
}

.cta-section .search-input::placeholder {
  color: white;
}
.cta-section .col-lg-4 {
  text-align: right;
}
/* ========================= */
/* RESPONSIVE FIXES */
/* ========================= */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 20px !important;
    text-align: center;
  }

  .visual-box-container {
    width: 240px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-search .form-control {
    width: 80%;
  }

  .hero-search .form-control {
    width: 100%;
  }
  .hero-search .btn-purple {
    width: 80%;
  }

  .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .mega-dropdown .mega-menu {
    top: 55% !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    margin-top: 50px;
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 0.95rem !important;
    margin: 70px 0;
    width: 100% !important;
  }

  .visual-box-container {
    width: 220px;
    height: 240px;
  }

  .float-box {
    width: 100px;
    height: 60px;
  }

  .float-box-top {
    top: -15px;
    right: -25px;
  }

  .float-box-bottom {
    bottom: -15px;
    left: -25px;
  }
}

@media (max-width: 1068px) {
  .hero-search {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1530px;
  }
}

/* ========================= */
/* ABOUT SECTION (Dmarkio) */
/* ========================= */
.about-section {
  padding: 150px 0;
}

.about-section .section-heading {
  font-family: serif;
  color: #2c1e55;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.about-section .dot-line {
  position: relative;
  width: 100px;
  margin: 0 auto 30px;
}

.about-section .dot-line hr {
  border: none;
  border-top: 2px solid #2c1e55;
  margin: 0;
}

.about-section .dot-line .dot {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: #2c1e55;
  border-radius: 50%;
  display: block;
}

.about-section img {
  max-width: 80px;
  margin-top: 20px;
}

.about-section p {
  font-size: 1.5rem;

  line-height: 1.6;
}

/* ========================= */
/* RESPONSIVE FIXES */
/* ========================= */
@media (max-width: 992px) {
  .about-section {
    text-align: justify;
  }

  .about-section .section-heading {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .about-section img {
    max-width: 70px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

  .about-section .section-heading {
    font-size: 1.6rem;
  }

  .about-section p {
    font-size: 0.9rem;
    margin: 0px 20px;
  }

  .about-section .dot-line {
    width: 70px;
    margin-bottom: 20px;
  }

  .about-section .dot-line .dot {
    width: 10px;
    height: 10px;
    top: -5px;
  }

  .about-section img {
    max-width: 60px;
  }
}

/*service at a galance */

.dot-line {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.dot-line hr {
  border: none;
  border-top: 2px solid #2c1e55;
  margin: 0;
  width: 100%;
}

.dot-line .dot {
  position: absolute;
  top: -6px;
  /* adjust based on HR thickness */
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: #2c1e55;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .services-box p {
    text-align: justify;
  }
}

@media (max-width: 576px) {
  .services-box p {
    text-align: justify;
  }
}

.why-choose-section {
  background-color: #f5f0ff;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #2d1c56;
  font-family: "Georgia", serif;
  font-weight: 600;

  margin-bottom: 20px;
  position: relative;
}

.card {
  background-color: #fff;
  padding: 0px 20px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: #2d1c56;
  line-height: 1.5;
  height: 100%;
}

.card .stars {
  color: #6927ff;
  font-size: 23px;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.card.highlighted {
  background-color: #6927ff;
  color: #fff;
}

.card.highlighted .stars {
  color: #fff;
}
.section-heading-wrapper {
  display: inline-block;
}
.section-heading-wrapper h2 {
  background: linear-gradient(
    to bottom,
    darkblue 0%,
    darkblue 55%,
    lightblue 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  /* for Firefox */
  color: transparent;
}

/* Section Container */
.included-section {
  background-color: #fcfbf9;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Section Heading */
.section-heading-custom {
  font-size: 1.8rem;
  font-weight: 600;
  color: #4a1bb2;
  margin-bottom: 1rem;
  position: relative;
}

/* Full-width Background Box */
.included-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.included-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: #f6f2ff;
  z-index: 0;
}

/* Centered Accordion Content */
.included-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  /* margin-right: 200px; */
}

@media (max-width: 1080px) {
  .included-content {
    margin-right: 0;
  }
}

/* Accordion Styles */
.custom-accordion .accordion-item {
  border: 1px solid #d6c4f6;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: white;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background-color: #fff;
  color: #2d2d2d;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 20px 10px;
  font-size: 16px;
  font-family: "afacad";
}

.custom-accordion .accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  transform: none !important;
  background-image: none;
  margin-left: auto;
  font-weight: 500;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
}

.custom-accordion .accordion-body {
  background-color: #f8f3ff;
  color: #4a1bb2;
  padding: 1rem 1.25rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .included-content {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .included-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .included-bg-box {
    border-radius: 12px;
    height: 100%;
    max-height: none;
  }
}

@media (min-width: 993px) {
  .pricing-row .col-lg-3 {
    flex: 0 0 auto;
    width: 28% !important;
  }
}

.badge-recommended {
  position: absolute;
  top: 0;
  right: 0;
  /* width: 620px; */
  /* adjust width */
  height: 50px;
  /* adjust height */
  clip-path: polygon(200% 0, 0 0, 120% 120%);
  letter-spacing: 1px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  color: #ff9d00;
  transform: translate(20px, -20px) rotate(45deg);
  /* align nicely */
}

.trademark-section {
  padding: 60px 20px;
  background-color: #faf9f5;
  font-family: "Segoe UI", sans-serif;
}

.trademark-section h2 {
  font-size: 2rem;
  color: #3c1a7d;
  font-weight: 600;
  margin-bottom: 10px;
}

.line-break {
  width: 60px;
  height: 2px;
  background-color: #3c1a7d;
  margin: 10px 0 20px 0;
}

.subheading {
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
  color: #444;
  line-height: 1.5;
}

.checklist .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #5c3dff;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  margin-top: 2px;
}

.main-image {
  width: 100%;
  max-width: 500px;
  /* border: 2px solid #a388f5; */
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(140, 82, 255, 0.2);
}

@media (max-width: 768px) {
  .trademark-section h2 {
    font-size: 1.6rem;
  }

  .checklist li {
    flex-direction: row;
    align-items: flex-start;
  }

  .main-image {
    max-width: 100%;
  }

  .table-section table th:nth-child(1),
  .table-section .table td:nth-child(1) {
    padding-left: 5px !important;
    width: 20% !important;
  }

  .table-section .table th:nth-child(2),
  .table-section .table td:nth-child(2) {
    width: 25%;
    /* Second column */
  }

  .table-section .table th:nth-child(3),
  .table-section .table td:nth-child(3) {
    width: 25%;
    /* Third column */
  }

  .table-section .table th:nth-child(4),
  .table-section .table td:nth-child(4) {
    width: 25%;
    /* Fourth column */
  }

  .table th {
    padding: 5px !important;
  }

  th,
  td {
    font-size: 12px !important;
  }
}

.table {
  width: 100%;
  table-layout: fixed;
  /* Ensures width control works properly */
}

.table-section table th:nth-child(1),
.table-section .table td:nth-child(1) {
  padding-left: 100px;
  width: 49%;
  /* First column */
}

.table-section .table th:nth-child(2),
.table-section .table td:nth-child(2) {
  width: 17%;
  /* Second column */
}

.table-section .table th:nth-child(3),
.table-section .table td:nth-child(3) {
  width: 17%;
  /* Third column */
}

.table-section .table th:nth-child(4),
.table-section .table td:nth-child(4) {
  width: 17%;
  /* Fourth column */
}

.table th {
  padding: 30px;
}

/* Section Styling */
.testimonials-section {
  background-color: #f2edff;
}

/* Section Heading */
.section-heading-decorated {
  font-family: "Georgia", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2b1b4f;
  position: relative;
}

/* Splide Container */
.testimonial-splide {
  overflow: visible;
  padding-top: 20px;
  padding-bottom: 50px;
}

.splide__track {
  padding-right: 50px !important;
  padding-left: 50px;
}

/* Slides Scaling */
.splide__slide {
  width: 33.3333% !important;
  margin-right: 0rem !important;
  transform: scale(0.85);
  opacity: 0.7;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.splide__slide.is-active {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}

/* Testimonial Card */
.testimonial-card {
  width: 100%;
  border-radius: 15px;
  padding: 40px 60px;
  color: #fff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #6927ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Paragraphs */
.testimonial-card p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.testimonial-card .author {
  font-size: 1.1rem;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Pagination Dots */
.splide__pagination__page {
  background: #ccc;
  opacity: 1;
  height: 8px;
  width: 8px;
  transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
  background: #6a11cb;
  transform: scale(1.2);
}

/* --- Responsive Adjustments --- */

/* Large Tablets and small laptops */
@media (max-width: 1200px) {
  .testimonial-card {
    padding: 35px 40px;
    min-height: 230px;
  }

  .testimonial-card p {
    font-size: 1.15rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .splide__slide {
    transform: scale(0.97);
  }

  .testimonial-card {
    width: 90%;
    min-height: 220px;
    padding: 30px 25px;
  }

  .testimonial-card p {
    font-size: 1.1rem;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .splide__slide {
    opacity: 1;
    width: 100% !important;
  }

  .testimonial-card {
    width: 100%;
    min-height: 200px !important;
    padding: 25px 20px;
  }

  .testimonial-card p {
    font-size: 1rem;
  }

  .section-heading-decorated {
    font-size: 1.6rem;
  }

  .splide__list {
    justify-content: center !important;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .testimonial-card {
    width: 100%;
    min-height: auto;
    padding: 18px 15px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .testimonial-card .author {
    font-size: 0.9rem;
  }

  .section-heading-decorated {
    font-size: 1.4rem;
  }

  .splide__track {
    padding-right: 67px !important;
  }
}

.why-matters-section {
  /* background-color: #fcfaff; */
  /* Light lavender background */
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

.why-matters-section .section-heading {
  color: #4b2a8a;
  /* Dark purple */
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.why-matters-section .heading-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  /* Light gray/purple line */
  margin-bottom: 30px;
  position: relative;
}

/* The dot in the middle of the underline */
.why-matters-section .heading-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  /* Dark purple dot */
  border-radius: 50%;
}

.why-matters-section .section-paragraph {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
}

.features-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
}

.feature-item {
  /* text-align: center; */
  max-width: 180px;
  /* Controls the width of each feature */
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #6c3ff3;
  /* Vibrant purple */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px 5px;
  /* Centers the icon and adds space below */
  color: #fff;
  font-size: 1.8rem;
}

.feature-item p {
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .why-matters-section .text-content {
    text-align: center;
    margin-bottom: 60px;
  }

  .why-matters-section .heading-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .features-container {
    justify-content: center;
    gap: 20px;
    /* Add some space between icons on smaller screens */
  }
}

@media (max-width: 576px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    width: 70%;
    max-width: 260px;
  }
}

.service-description-section {
  background-color: #f9f6ff;
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
  /* Prevents horizontal scroll on small screens */
}

.service-description-section .section-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-description-section .heading-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin-bottom: 30px;
  position: relative;
}

.service-description-section .heading-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.service-description-section .section-paragraph {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  /* max-width: 500px; */
  font-weight: 600;
  /* Ensures text doesn't get too wide */
}

.service-description-section .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.service-description-section .feature-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
}

.service-description-section .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.service-description-section .cta-button {
  display: inline-block;
  background-color: #6c3ff3;
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-description-section .cta-button:hover {
  background-color: #5a2fdc;
  transform: translateY(-2px);
}

/* Right Column Styles */
.service-description-section .image-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.service-description-section .laptop-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  /* Keep laptop on top */
}

.service-description-section .blob-shape {
  position: absolute;
  top: -60px;
  /* Position the blob */
  right: -40px;
  width: 90%;
  z-index: 1;
  /* Place blob behind the laptop */
  pointer-events: none;
  /* Make the shape non-interactive */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-description-section .text-content {
    text-align: center;
    margin-bottom: 60px;
  }

  .service-description-section .heading-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .service-description-section .section-paragraph {
    margin-left: auto;
    margin-right: auto;
  }

  .service-description-section .feature-list {
    display: inline-block;
    /* Allows centering */
    text-align: left;
    /* Aligns list text to the left */
  }
}

.cta-heading {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-section .heading-underline {
  height: 1px;
  margin-bottom: 30px;
  position: relative;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.4) 80%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* The dot in the middle of the underline */
.cta-section .heading-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  /* White dot */
  border-radius: 50%;
}

.cta-paragraph {
  font-size: 1.2rem;
  line-height: 1.7;
  color: white;
}

/* .cta-button-wrapper {
  text-align: right;
} */

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #6c3ff3;
  /* Button text has the background color */
  padding: 10px 45px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .cta-content,
  .cta-button-wrapper {
    text-align: center;
    /* Center everything on mobile */
  }

  .cta-section .heading-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button-wrapper {
    margin-top: 40px;
    /* Add space between text and button */
  }
}

.trademark-search-section {
  /* background-color: #fcfaff; */
  /* Off-white background for the whole section */
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

.title-column-content {
  padding-right: 30px;
  /* Give some space next to the content box */
}

.trademark-search-section .section-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.trademark-search-section .heading-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin-bottom: 30px;
  position: relative;
}

.trademark-search-section .heading-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.spring-svg-wrapper {
  margin-top: 20px;
}

/* Right Column Styles */
.content-box {
  background-color: #f9f6ff;
  /* Light lavender background for the text area */
  padding: 60px;
  height: 100%;
}

.content-box .content-subheading {
  font-weight: 500;
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-family: "afacad" !important;
}

.content-box p {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.content-box strong {
  color: #000;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .title-column-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .trademark-search-section .heading-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .spring-svg-wrapper {
    margin-top: 50px;
  }

  .content-box {
    padding: 40px 30px;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Key Features Section Styles          --- */
/* --- These styles will ONLY affect this section. --- */
/* --------------------------------------------------- */

.scoped-features-section {
  background-color: #f6f2ff;
  /* padding: 120px 0; */
  font-family: "Segoe UI", sans-serif;
}

.scoped-features-container {
  width: 100%;
  /* max-width: 1350px; */
  /* Wider container for the airy look */
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* --- Section Title --- */
.scoped-features-title-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.scoped-features-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 20px 0;
}

.scoped-features-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin: 0 auto;
  position: relative;
}

.scoped-features-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

/* --- Scoped Flexbox Grid --- */
.scoped-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -20px;
  /* Negative margin to create space on the outside */
}

.scoped-feature-item {
  flex: 1;
  /* Allow items to grow */
  min-width: 280px;
  /* Minimum width before wrapping */
  max-width: 25%;
  /* On large screens, aim for 4 columns */
  padding: 0 15px;
  /* Gutter space between items */
  margin-bottom: 40px;
  text-align: center;
}

/* --- Individual Feature Styling --- */
.scoped-feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #eae2ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
  color: #6c3ff3;
  font-size: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scoped-feature-item:hover .scoped-feature-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(108, 63, 243, 0.12);
}

.scoped-feature-title {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.scoped-feature-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
}

/* --- Scoped Responsive Adjustments --- */
@media (max-width: 1200px) {
  .scoped-feature-item {
    max-width: 50%;
    /* 2 columns for tablets */
  }
}

@media (max-width: 767px) {
  .scoped-features-grid {
    margin: 0;
  }

  .scoped-feature-item {
    max-width: 100%;
    /* 1 column for mobile */
    padding: 0;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Packages Section Styles              --- */
/* --- These styles will ONLY affect this section. --- */
/* --------------------------------------------------- */

.scoped-packages-section {
  /* background-color: #fcfaff; */
  /* padding: 120px 0; */
  font-family: "Segoe UI", sans-serif;
}

.scoped-packages-container {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* --- Main Layout Rows & Columns --- */
.scoped-packages-row {
  display: flex;
  align-items: flex-start;
  /* Align items to the top */
  margin-bottom: 80px;
}

.scoped-packages-row:last-child {
  margin-bottom: 100px;
}

.scoped-packages-title-col {
  flex: 0 0 33%;
  /* Left column takes up 1/3 of the space */
  padding-right: 75px;
}

.scoped-packages-content-col {
  flex: 1;
  /* Right column takes up the remaining space */
}

/* --- General Heading Styles --- */
.scoped-packages-heading {
  color: #4b2a8a;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

.scoped-packages-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin-top: 25px;
  position: relative;
}

.scoped-packages-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

/* --- Numbered Feature Boxes --- */
.scoped-features-wrapper {
  display: flex;
  /* gap: 20px; */
}

.scoped-feature-box {
  position: relative;
  background-color: #fff;
  border: 1px solid #eae2ff;
  /* border-radius: 12px; */
  padding: 20px;
  flex: 1;
  /* min-width: 330px; */
}

.scoped-feature-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  line-height: 1;
  font-family: "playfair";
}

.scoped-feature-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
  font-family: "afacad" !important;
}

.scoped-feature-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Highlighted Box Style */
.scoped-feature-box.is-highlighted {
  background-color: #6927ff;
  border-color: #6927ff;
  min-width: 400px !important;
}

.scoped-feature-box.is-highlighted .scoped-feature-number {
  color: rgba(255, 255, 255, 0.2);
}

.scoped-feature-box.is-highlighted .scoped-feature-title,
.scoped-feature-box.is-highlighted .scoped-feature-description {
  color: #fff;
}

/* --- Pricing Card --- */
.scoped-pricing-card {
  background-color: #6c3ff3;
  border-radius: 15px;
  padding: 50px;
  color: #fff;
  text-align: center;
  max-width: 550px;
  /* Constrain width for better centering */
}

.scoped-pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.scoped-pricing-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 400px;
  margin: 0 auto 30px auto;
}

.scoped-pricing-price-point {
  margin: 20px 0;
}

.scoped-pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.scoped-pricing-duration {
  font-size: 0.9rem;
  opacity: 0.8;
}

.scoped-pricing-separator {
  font-weight: 700;
  opacity: 0.9;
}

/* --- Scoped Responsive Adjustments --- */
@media (max-width: 992px) {
  .scoped-packages-row {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .scoped-packages-title-col {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .scoped-packages-heading {
    font-size: 2rem;
  }

  .scoped-packages-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .scoped-features-wrapper {
    flex-direction: column;
  }

  .scoped-pricing-card {
    margin: 0 auto;
    /* Center the card */
  }
}

/* --------------------------------------------------- */
/* --- Scoped Overlap Section Styles               --- */
/* --- These styles will ONLY affect this section. --- */
/* --------------------------------------------------- */

.scoped-overlap-section {
  position: relative;
  background: linear-gradient(to bottom, #fcfbf9 80%, #dfd2ff 20%);

  padding: 1px 0;
  font-family: "Segoe UI", sans-serif;
}

/* This pseudo-element creates the TOP background color */
.scoped-overlap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  /* Covers the top half of the section */
  /* background-color: #fcfaff; */
  /* This is the TOP background color */
  z-index: 1;
}

.scoped-overlap-container {
  width: 100%;
  /* max-width: 1320px; */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  /* Ensures content is above the background pseudo-element */
}

/* --- Layout Row & Columns --- */
.scoped-overlap-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* Vertically align content in the middle */
}

.scoped-overlap-title-col {
  flex: 0 0 45%;
  /* Left column takes up 45% of the space */
  padding-right: 50px;
}

/* --- Left Column Title Styles --- */
.scoped-overlap-heading {
  color: #4b2a8a;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

.scoped-overlap-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin-top: 25px;
  position: relative;
}

.scoped-overlap-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

/* --- Right Column Pricing Card --- */
.scoped-overlap-pricing-card {
  background-color: #6c3ff3;
  border-radius: 20px 20px 0 0;

  /* Larger border-radius */
  padding: 30px;
  color: #fff;
  text-align: center;
  max-width: 450px;
  margin-left: auto;
  /* Aligns card to the right */
  box-shadow: 0 15px 30px rgba(108, 63, 243, 0.15);
}

.scoped-overlap-pricing-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  font-family: "afacad" !important;
}

.scoped-overlap-pricing-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 30px auto;
}

.scoped-overlap-price-point {
  margin: 20px 0;
}

.scoped-overlap-price {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "playfair";
}

.scoped-overlap-duration {
  font-size: 1.2rem;
}

.scoped-overlap-separator {
  font-weight: 700;
  opacity: 0.9;
}

/* --- Scoped Responsive Adjustments --- */
@media (max-width: 992px) {
  .scoped-overlap-section::before {
    height: 35%;
    /* Adjust background height for mobile */
  }

  .scoped-overlap-row {
    flex-direction: column;
  }

  .scoped-overlap-title-col {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: left;
  }

  .scoped-overlap-heading {
    font-size: 2rem;
  }

  .scoped-overlap-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .scoped-overlap-pricing-card {
    margin-left: auto;
    margin-right: auto;
    /* Center the card on mobile */
  }
}

/* --------------------------------------------------- */
/* --- Scoped Pricing Table Section Styles         --- */
/* --- These styles will ONLY affect this section. --- */
/* --------------------------------------------------- */

.scoped-pricing-table-section {
  background-color: #f9f6ff;
  padding: 60px 0 120px 0;
  font-family: "Segoe UI", sans-serif;
}

.scoped-pricing-table-container {
  width: 100%;
  margin: 0 auto;
}

/* --- Table Row Layout --- */
.scoped-pricing-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eae2ff;
  padding: 30px 0;
}

.scoped-pricing-row:last-child {
  border-bottom: none;
}

/* --- Table Cell Styling & Widths --- */
.scoped-pricing-cell {
  padding: 0 15px;
  /* border-right: 2px solid #EAE2FF; */
}

.cell-index {
  flex: 0 0 10%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding-left: 100px;
}

.cell-title {
  flex: 0 0 20%;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.cell-desc {
  flex: 1 1 45%;
  /* This is the widest column and will grow/shrink */
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

.cell-cta {
  flex: 0 0 15%;
  font-size: 1.3rem;
  color: #333;
}

.cell-button {
  flex: 0 0 15%;
  text-align: right;
  padding-right: 100px;
}

.scoped-pricing-btn {
  display: inline-block;
  background-color: #6c3ff3;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.scoped-pricing-btn:hover {
  background-color: #5a2fdc;
}

.scoped-pricing-row {
  display: flex;
  align-items: stretch;
  /* make all cells same height */
  border-bottom: 1px solid #dee2e6;
  padding: 0;
  /* remove row padding */
}

.scoped-pricing-cell {
  padding: 30px 60px;
  /* move padding here */
  border-left: 1px solid #dee2e6 !important;
  /* vertical borders */
}

.scoped-pricing-cell:first-child {
  border-left: none;
  /* no extra left border */
}

/* --- Scoped Responsive Adjustments --- */
@media (max-width: 992px) {
  .scoped-pricing-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 10px;
  }

  .scoped-pricing-cell {
    padding: 0;
    margin-bottom: 15px;
    width: 100%;
    text-align: left !important;
    padding: 10px 30px !important;
    /* Force left align on all cells */
  }

  .scoped-pricing-cell:last-child {
    margin-bottom: 0;
  }

  .cell-index {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d1c8e0;
    margin-bottom: 5px;
  }

  .cell-title {
    font-size: 1.2rem;
  }

  .cell-desc,
  .cell-cta {
    font-size: 1rem;
  }

  .cell-button {
    margin-top: 10px;
  }

  .scoped-pricing-btn {
    width: 100%;
    /* Make button full-width on mobile */
  }
}

/* --------------------------------------------------- */
/* --- Scoped Regional Section Styles (Final)      --- */
/* --- This is the complete, accurate version.     --- */
/* --------------------------------------------------- */

.scoped-regional-final {
  position: relative;
  background-color: #dfd2ff;
  /* CORRECTED: Middle lavender background */
  padding: 80px 10;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}

/* This pseudo-element creates the TOP off-white background */
.scoped-regional-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  /* Adjust height of the top band */
  background-color: #fcfaff;
  /* TOP off-white background */
  z-index: 1;
}

/* CORRECTED: A fluid container that stretches */
.scoped-regional-final-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1px;
  /* Padding on the sides */
  position: relative;
}

.scoped-regional-final-wrapper {
  display: flex;
  align-items: stretch;
  /* Makes sidebar and content equal height */
}

/* --- Sidebar Styles --- */
.scoped-regional-final-sidebar {
  flex: 0 0 19%;
  background-color: #6c3ff3;
  color: #fff;
  padding: 45px;

  display: flex;
  flex-direction: column;
  align-items: center;
  /* center horizontally */
  justify-content: center;
  /* center vertically */
  text-align: center;
  /* equal gap between rows */
}

.scoped-regional-final-sidebar > div {
  flex: 0 0 auto;
  /* prevent child divs from stretching */
}

.scoped-regional-final-sidebar-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-align: center;
  font-family: "afacad" !important;
}

.scoped-regional-final-sidebar-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 10px 0 30px 0;
}

.scoped-regional-final-sidebar-price-label {
  display: block;
  font-size: 1.2rem;
  padding: 10px 0;
}

.scoped-regional-final-sidebar-price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Main Content Area --- */
.scoped-regional-final-content {
  flex: 1;

  flex-direction: column;
}

.scoped-regional-final-top-row,
.scoped-regional-final-bottom-row {
  display: flex;
  align-items: center;
}

.scoped-regional-final-top-row {
  padding: 20px 40px;
  flex-shrink: 0;
  /* Prevents this row from shrinking */
}

.scoped-regional-final-bottom-row {
  display: flex;
  /* enables flex layout */
  flex-wrap: nowrap;
  /* keep children in one row */
  gap: 20px;
  /* optional space between divs */
  background-color: #f6f1ff;
  border: 1px solid #eae2ff;
  padding: 50px 25px;
  margin-top: 250px;
}

.scoped-regional-final-bottom-row > div:nth-child(2) {
  flex: 3;
  /* 2 times the size of the others */
}

/* Make the other children equal size */
.scoped-regional-final-bottom-row > div:not(:nth-child(2)) {
  flex: 1;
  /* equal share */
}

/* --- CORRECTED Grid Cell Styles --- */
.scoped-regional-final-cell {
  padding: 0 15px;
}

.scoped-regional-final-cell.cell-title-top {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.scoped-regional-final-cell.cell-desc {
  flex: 1 1 55%;
  /* Takes up most space */
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  border-left: 1px solid #eae2ff;
  border-right: 1px solid #eae2ff;
  padding: 0 40px;
}

.scoped-regional-final-cell.cell-desc p {
  margin: 0 0 15px 0;
}

.scoped-regional-final-cell.cell-desc p:last-child {
  margin-bottom: 0;
}

.scoped-regional-final-cell.cell-cta {
  flex: 0 0 20%;
  font-size: 1.2rem;
  color: #333;
  font-weight: 450;
  text-align: center;
}

.scoped-regional-final-cell.cell-button {
  flex: 0 0 25%;
  text-align: right;
}

.scoped-regional-final-btn {
  display: inline-block;
  background-color: #6c3ff3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.scoped-regional-final-btn:hover {
  background-color: #5a2fdc;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .scoped-regional-final-wrapper {
    flex-direction: column;
  }

  .scoped-regional-final-sidebar {
    margin-bottom: 20px;
  }

  .scoped-regional-final-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .scoped-regional-final-container {
    padding: 0 20px;
  }

  .scoped-regional-final-content {
    margin-top: -100px;
  }

  .scoped-regional-final::before {
    display: none;
  }

  .scoped-regional-final-top-row {
    display: none;
  }

  .scoped-regional-final-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .scoped-regional-final-cell {
    padding: 0 !important;
    margin-bottom: 25px;
    width: 100%;
    text-align: left !important;
    border: none !important;
  }

  .scoped-regional-final-cell:last-child {
    margin-bottom: 0;
  }

  .scoped-regional-final-cell.cell-button {
    margin-top: 10px;
  }

  .scoped-regional-final-btn {
    width: 100%;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Filing Section Styles                --- */
/* --- This is a complete, self-contained block.   --- */
/* --------------------------------------------------- */

.scoped-filing-section {
  /* background-color: #fcfaff; */
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

.scoped-filing-container {
  width: 100%;
  max-width: 1600px;
  /* Use a very wide container for this layout */
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Section Title --- */
.scoped-filing-title-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.scoped-filing-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 20px 0;
}

.scoped-filing-subheading {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 30px 70px;
}

/* --- Main Layout Wrapper --- */
.scoped-filing-main-wrapper {
  display: flex;
  align-items: stretch;
  /* Makes sidebar and slider area equal height */
  gap: 30px;
}

/* --- Sidebar Styles --- */
.scoped-filing-sidebar {
  flex: 0 0 350px;
  /* Fixed width for the sidebar */
  background-color: #6c3ff3;
  color: #fff;
  border-radius: 12px;
  padding: 40px;
}

.scoped-filing-sidebar-item h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-family: "afacad" !important;
}

.scoped-filing-sidebar-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.scoped-filing-sidebar-item:not(:last-child) {
  margin-bottom: 35px;
}

/* --- Slider Area Styles --- */
.scoped-filing-slider-area {
  flex: 1;
  min-width: 0;
  /* Important for flexbox to allow shrinking */
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

/* --- Slider Card Styles --- */
.scoped-filing-card {
  background-color: #fff;
  border: 1px solid #6c3ff3;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scoped-filing-card-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 15px 0;
  font-family: "afacad" !important;
}

.scoped-filing-card-desc {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.scoped-filing-card-list {
  list-style-position: inside;
  padding-left: 0;
  font-size: 1.2rem;
  color: #555;
  margin: 0 0 20px 0;
}

.scoped-filing-card-list li {
  margin-bottom: 8px;
}

.scoped-filing-card-footer {
  font-size: 1.2rem;
  color: black;
  margin-top: auto;
  /* Pushes to bottom */
  margin-bottom: 25px;
}

.scoped-filing-card-btn {
  display: block;
  background-color: #6c3ff3;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.scoped-filing-card-btn:hover {
  background-color: #5a2fdc;
}

/* --- Custom Navigation --- */
.scoped-filing-navigation {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-left: 10px;
}

.scoped-filing-arrow {
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #d1c8e0;
  color: #4b2a8a;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scoped-filing-arrow:hover {
  background-color: #6c3ff3;
  color: #fff;
  border-color: #6c3ff3;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .scoped-filing-main-wrapper {
    flex-direction: column;
  }

  .scoped-filing-sidebar {
    flex: 0 0 auto;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .scoped-filing-container {
    padding: 0 20px;
  }

  .scoped-filing-subheading {
    margin: 0;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Opportunities Section Styles         --- */
/* --- This is a complete, self-contained block.   --- */
/* --------------------------------------------------- */

.scoped-opportunities-section {
  /* background-color: #f9f6ff; */
  /* Light lavender background */
  /* padding: 100px 0; */
  font-family: "Segoe UI", sans-serif;
}

.scoped-opportunities-container {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto;
  /* padding: 0 50px; */
}

/* --- Section Title --- */
.scoped-opportunities-title-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.scoped-opportunities-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 20px 0;
}

.scoped-opportunities-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin: 0 auto 30px auto;
  position: relative;
}

.scoped-opportunities-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.scoped-opportunities-subheading {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 980px;
  margin: 30px auto;
}

/* --- Main 3-Column Layout --- */
.scoped-opportunities-main-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0px 50px;
}

.scoped-opportunities-column {
  flex: 1;
}

.scoped-opportunities-column.column-left {
  text-align: left;
}

.scoped-opportunities-column.column-center {
  flex: 1.2;
  /* Make the center column slightly wider */
}

.scoped-opportunities-column.column-right {
  text-align: left;
}

/* --- Feature Item Styles --- */
.scoped-opportunities-feature-item {
  margin-bottom: 40px;
}

.scoped-opportunities-feature-item:last-child {
  margin-bottom: 0;
}

.scoped-opportunities-feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "afacad" !important;
}

.scoped-opportunities-feature-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* --- Center Image Style --- */
.scoped-opportunities-image-wrapper {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.scoped-opportunities-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- CTA Button Style --- */
.scoped-opportunities-cta-btn {
  display: inline-block;
  background-color: #6c3ff3;
  color: #fff;
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.scoped-opportunities-cta-btn:hover {
  background-color: #5a2fdc;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .scoped-opportunities-main-layout {
    flex-direction: column;
  }

  .scoped-opportunities-column.column-left,
  .scoped-opportunities-column.column-right {
    text-align: center;
    width: 100%;
    max-width: 500px;
  }

  .scoped-opportunities-column.column-center {
    order: -1;
    /* Move the image to the top on mobile */
    width: 100%;
    max-width: 500px;
  }

  .scoped-opportunities-cta-btn {
    margin-top: 20px;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Monitoring Section (Fluid BG Version) --- */
/* --------------------------------------------------- */

.scoped-monitoring-section {
  /* The background color is on the main section, making it full-width */
  /* background-color: #fcfaff; */
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

/* --- Scoped Grid System --- */
/* This container holds the content and centers it */
.scoped-monitoring-container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.scoped-monitoring-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  align-items: center;
  /* Vertically align columns */
}

.scoped-monitoring-col-lg-5,
.scoped-monitoring-col-lg-7 {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .scoped-monitoring-col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .scoped-monitoring-col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

/* --- Content Styles --- */
.scoped-monitoring-title-wrapper {
  padding-right: 30px;
}

.scoped-monitoring-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 20px 0;
}

.scoped-monitoring-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin: 0 0 30px 0;
  position: relative;
}

.scoped-monitoring-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.scoped-monitoring-description {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
}

.scoped-monitoring-feature-box {
  background-color: #f9f6ff;
  border-radius: 15px;
  padding: 50px 100px;
}

.scoped-monitoring-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scoped-monitoring-feature-list li {
  display: flex;
  align-items: flex-start;
}

.scoped-monitoring-feature-list li:not(:last-child) {
  margin-bottom: 35px;
}

.scoped-monitoring-checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #6927ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  margin-top: 20px;
}

.scoped-monitoring-feature-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
  font-family: "afacad" !important;
}

.scoped-monitoring-feature-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .scoped-monitoring-title-wrapper {
    text-align: center;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .scoped-monitoring-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Licensing Section (Grid Version)     --- */
/* --------------------------------------------------- */

.scoped-licensing-section {
  background-color: #f9f6ff;
  /* Full-width background color */
  /* padding: 100px 0; */
  font-family: "Segoe UI", sans-serif;
}

/* --- Scoped Grid System --- */
.scoped-licensing-container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.scoped-licensing-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.scoped-licensing-col-lg-3,
.scoped-licensing-col-lg-5,
.scoped-licensing-col-lg-7,
.scoped-licensing-col-md-6 {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* On medium screens (>=768px), feature items are 2 per row */
@media (min-width: 768px) {
  .scoped-licensing-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* On large screens (>=992px), the layout is active */
@media (min-width: 992px) {
  .scoped-licensing-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .scoped-licensing-col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .scoped-licensing-col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

/* --- Content Styles --- */
.scoped-licensing-top-row {
  margin-bottom: 60px;
  align-items: center;
}

.scoped-licensing-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 20px 0;
}

.scoped-licensing-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin: 0 0 30px 0;
  position: relative;
}

.scoped-licensing-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.scoped-licensing-description {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Features Row Style */
.scoped-licensing-features-row {
  border-bottom: 2px solid #eae2ff;
  /* Horizontal line at the bottom */
}

.scoped-licensing-feature-item {
  padding: 20px;
}

.scoped-licensing-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  font-family: "afacad" !important;
}

.scoped-licensing-feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Vertical Separator Lines (Desktop only) */
@media (min-width: 992px) {
  .scoped-licensing-col-lg-3:not(:last-child) .scoped-licensing-feature-item {
    border-right: 2px solid #eae2ff;
  }
}

/* Vertical Separator Lines (Tablet only) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .scoped-licensing-col-md-6:nth-child(odd) .scoped-licensing-feature-item {
    border-right: 2px solid #eae2ff;
  }
}

/* Responsive adjustments for stacking */
@media (max-width: 992px) {
  .scoped-licensing-top-row {
    text-align: center;
  }

  .scoped-licensing-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .scoped-licensing-feature-item {
    border-bottom: 1px solid #eae2ff;
    /* Use horizontal lines on mobile */
    padding-left: 0;
    padding-right: 0;
  }

  .scoped-licensing-features-row
    .scoped-licensing-col-md-6:last-child
    .scoped-licensing-feature-item {
    border-bottom: none;
  }

  .scoped-licensing-features-row {
    border-bottom: none;
    /* Remove
     main border on mobile */
  }

  .scoped-monitoring-feature-box {
    padding: 0;
  }
}

/* --- Feature Card Styles --- */
.why-choose-card {
  background-color: #fff;
  border: 1px solid #f0e9ff;
  border-radius: 12px;
  padding: 30px;

  /*
          KEY CHANGE HERE:
          By setting height to 100%, we are telling Bootstrap's flexbox grid
          to make all cards in a row stretch to match the height of the tallest one.
          This will make them all the same height.
        */
  height: 70%;

  margin-bottom: 40px;
  position: relative;
  margin-top: 24px;
}

/* All other styles remain the same */
.why-choose-section {
  background-color: #fcfaff;
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

.why-choose-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.why-choose-subheading {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 980px;
  margin: 0 auto;
}

.why-choose-icon {
  width: 40px;
  height: 40px;
  background-color: #6c3ff3;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  top: -24px;
  right: 24px;
}

.why-choose-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: "afacad" !important;
}

.why-choose-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* --------------------------------------------------- */
/* --- Scoped "Who We Serve" Section (Corrected)   --- */
/* --------------------------------------------------- */

.scoped-serve-section {
  /* background-color: #FCFAFF; */
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}
.sss img {
  width: 400px;
}
@media (max-width: 1200px) {
  .sss img {
    width: 300px;
    margin-top: 50px;
  }
}

/* --- Left Column Title Styles --- */
.scoped-serve-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.scoped-serve-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin-bottom: 30px;
  position: relative;
}

.scoped-serve-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.scoped-serve-description {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* --- Feature Item Styles --- */
.scoped-serve-item {
  position: relative;
  /* padding-left: 60px; */
  padding-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  /* The height of the item will be determined by its content */
}

.scoped-serve-number {
  /* position: absolute; */
  left: 30px;
  top: 112px;
  font-size: 5rem;
  font-weight: 700;
  color: #f0e9ff;
  line-height: 1;
  z-index: 1;
  font-family: "playfair" !important;
}

.scoped-serve-icon {
  width: 48px;
  height: 48px;
  background-color: #6c3ff3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 20px auto;

  position: relative;
  z-index: 2;
}

.scoped-serve-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
  font-family: "afacad" !important;
}

.scoped-serve-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .scoped-serve-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
  }

  .scoped-serve-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Articles Section (Corrected Layout)  --- */
/* --------------------------------------------------- */

.scoped-articles-section {
  background-color: #f9f6ff;
  /* padding: 100px 0; */
  font-family: "Segoe UI", sans-serif;
}

/* --- Section Title --- */
.scoped-articles-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.scoped-articles-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin: 0 auto 30px auto;
  position: relative;
}

.scoped-articles-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.scoped-articles-subheading {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 60px auto;
}

/* --- Base Article Card Styles --- */
.scoped-article-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.scoped-article-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.scoped-article-card:hover .scoped-article-card-img {
  transform: scale(1.05);
}

.scoped-article-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  z-index: 2;
}

.scoped-article-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 3;
}

.scoped-article-card-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.scoped-article-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 20px 0;
}

.scoped-article-card-btn {
  display: inline-block;
  background-color: #fff;
  color: #6c3ff3;
  padding: 5px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.scoped-article-card-btn:hover {
  background-color: #f0f0f0;
}

/* --- Height differentiation --- */
.scoped-article-card.large-card {
  height: 520px;
}

.scoped-article-card.small-card {
  height: 250px;
  /* (420px total height - 20px gap) / 2 */
}

/* Adjust margin for the nested column to align with the grid */
.col-lg-3.mb-4 > .row > .col-12.mb-4 {
  margin-bottom: 20px !important;
}

/* --------------------------------------------------- */
/* --- Scoped FAQ Section Styles                   --- */
/* --------------------------------------------------- */

.scoped-faq-section {
  background-color: #fcfaff;
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

/* --- Section Title --- */
.scoped-faq-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.scoped-faq-underline {
  width: 120px;
  height: 1px;
  background-color: #d1c8e0;
  margin: 0 auto 30px auto;
  position: relative;
}

.scoped-faq-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #4b2a8a;
  border-radius: 50%;
}

.scoped-faq-subheading {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

/* --- Left Column Image --- */
.scoped-faq-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.scoped-faq-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Right Column Accordion --- */
.scoped-faq-item {
  border-bottom: 1px solid #eae2ff;
}

.scoped-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  border-bottom: 1px solid #0000006e;
}

.scoped-faq-header h4 {
  font-size: 1.3rem;
  font-weight: 600;

  margin: 0;
  font-family: "afacad" !important;
  padding-right: 20px;
}

.scoped-faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 40px;
}

.scoped-faq-icon::before,
.scoped-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #888;
  transition: transform 0.3s ease;
}

/* Creates the '+' icon */
.scoped-faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.scoped-faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

/* Changes icon to 'x' when active */
.scoped-faq-item.is-active .scoped-faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.scoped-faq-item.is-active .scoped-faq-icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.scoped-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
}

.scoped-faq-body p,
li {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: left;
  /* padding-right: 40px; */
}

/* Styles for when an item is active/open */
.scoped-faq-item.is-active .scoped-faq-body {
  max-height: 600px;
  /* Adjust if your text is very long */
  padding-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
  .scoped-faq-image-wrapper {
    max-width: 400px;
    margin: 0 auto 50px auto;
  }
}

/* --------------------------------------------------- */
/* --- Scoped Contact Section Styles               --- */
/* --------------------------------------------------- */

.scoped-contact-section {
  background-color: #fcfaff;
  padding: 100px 0;
  font-family: "Segoe UI", sans-serif;
}

/* --- Left Column Styles --- */
.scoped-contact-heading {
  color: #4b2a8a;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 25px;
}

.scoped-contact-subheading {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.scoped-contact-details-row {
  display: flex;
  gap: 40px;
}

.scoped-contact-detail-item h4 {
  font-size: 1.2rem;
  font-weight: 450;
  color: #333;
  margin: 0 0 15px 0;
  font-family: "afacad" !important;
}

.scoped-contact-detail-item p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.scoped-contact-social-icons {
  display: flex;
  gap: 15px;
}

.scoped-contact-social-icons a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #eae2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c3ff3;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.scoped-contact-social-icons a:hover {
  background-color: #6c3ff3;
  color: #fff;
}

/* --- Right Column (Form) Styles --- */
.scoped-contact-form-wrapper {
  background-color: #f1f2f4;
  border-radius: 15px;
  padding: 50px;
  height: 100%;
  margin: 0px 50px;
}

.scoped-contact-form-group {
  position: relative;
  margin-bottom: 40px;
}

.scoped-contact-form-group input,
.scoped-contact-form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d1c8e0;
  background-color: transparent;
  padding: 10px 0;
  font-size: 1.2rem;
  color: #333;
  outline: none;
  position: relative;
  z-index: 2;
}

.scoped-contact-form-group textarea {
  resize: vertical;
}

.scoped-contact-form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1rem;

  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Floating label effect */
.scoped-contact-form-group input:focus + label,
.scoped-contact-form-group input:valid + label,
.scoped-contact-form-group textarea:focus + label,
.scoped-contact-form-group textarea:valid + label {
  top: -15px;
  font-size: 0.85rem;
  color: #6c3ff3;
}

.scoped-contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #6c3ff3;
  color: #fff;
  padding: 8px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scoped-contact-submit-btn:hover {
  background-color: #5a2fdc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .scoped-contact-info-wrapper {
    text-align: center;
    margin-bottom: 60px;
  }

  .scoped-contact-details-row {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .scoped-contact-details-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .scoped-contact-form-wrapper {
    margin: 0;
  }
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6927ff;
  color: white;
  border: none;
  padding: 12px 21px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  /* hidden by default */
  transition: 0.3s ease;
  z-index: 1000;
}

#backToTop:hover {
  background: #555;
}

/* --------------------------------------------------- */
/* --- Scoped Footer Section Styles                --- */
/* --------------------------------------------------- */

.scoped-footer {
  font-family: "Segoe UI", sans-serif;
}

/* --- Main Purple Area --- */
.scoped-footer-main {
  background-color: #6c3ff3;
  color: #fff;
  padding: 60px 0;
}

.scoped-footer-top-row {
  margin-bottom: 40px;
}

.scoped-footer-logo {
  font-family: serif;
  /* For the classic logo style */
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
}

.scoped-footer-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.scoped-footer-social-icons {
  display: flex;
  gap: 15px;
}

.scoped-footer-social-icons a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.scoped-footer-social-icons a:hover {
  opacity: 0.8;
}

.scoped-footer-search-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.scoped-footer-search-form input {
  border: none;
  background: transparent;
  padding: 12px 15px;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
}

.scoped-footer-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.scoped-footer-search-form button {
  border: none;
  background: #fff;
  color: #6c3ff3;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.scoped-footer-search-form button:hover {
  background-color: #f0f0f0;
}

.scoped-footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0 50px 0;
}

/* --- Link Widget Styles --- */
.scoped-footer-widget h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.scoped-footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scoped-footer-widget ul li {
  margin-bottom: 12px;
}

.scoped-footer-widget ul a,
.scoped-footer-widget p {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.7;
}

.scoped-footer-widget ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* --- Bottom Copyright Bar --- */
.scoped-footer-bottom-bar {
  background-color: #1a1a1a;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

.scoped-footer-bottom-bar p {
  margin: 0;
  font-family: serif;
  font-size: 1.1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .scoped-footer-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .scoped-footer-top-right {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .scoped-footer-widget {
    margin-bottom: 40px;
  }
}

/* =================================================================
           8. PRICING SECTION STYLES
        ================================================================= */
.pricing-section {
  background-color: #faf9f5;
}

.pricing-card {
  background: #fff;
  padding: 3.5rem 2rem 2rem 2rem;
  border-radius: 8px;
  border: 1px solid #e9dfff;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card p {
  font-size: 1.2rem;
}
.features p {
  margin-bottom: 10px;
  text-align: left !important;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(95, 35, 216, 0.1);
}

.pricing-card.featured {
  background-color: #6927ff;
  color: #fff;

  transform: scaleY(1.2);
}

.pricing-card.featured h5,
.pricing-card.featured .plan-price,
.pricing-card.featured p {
  color: #fff;
}

.plan-price {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #5f23d8;
}

.pricing-card h5 {
  font-size: 1.6rem;
}

.badge-recommended {
  border: 1px solid orange;
  left: 0;
  transform: translateX(0%);

  background-color: #fff;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .pricing-card {
    margin: 50px auto;
    height: 90%;
  }
}
@media (max-width: 576px) {
  .badge-recommended {
    /* adjust spacing if needed */
    left: 38% !important;
  }

  .pricing-row div {
    width: 100% !important;
  }
}

@media (max-width: 992px) {
  .pricing-row {
    flex-direction: column;
  }

  .pricing-card {
    margin: 50px auto;
    padding: 10px !important;
  }

  .h-100 {
    height: 90% !important;
  }

  .pricing-row div {
    width: 95% !important;
  }

  .badge-recommended {
    font-size: 10px;
  }
}

/* =================================================================
           9. INFO BOXES STYLES
        ================================================================= */
.info-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  border: 1px solid #e9dfff;
  position: relative;
  overflow: hidden;
}

.info-box-cta {
  background-color: #6927ff;
  color: #fff;
}

.info-box .badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 50px;
  font-size: 1.2rem;
  background-color: #6927ff;
  border-radius: 0 0 0 10px;
  padding: 8px 0px 8px 25px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* =================================================================
           14. CTA SECTION STYLES
        ================================================================= */
.cta-section {
  background-color: #6927ff;
  color: #fff;
  padding: 50px 0;
  margin-top: 10%;
}

.cta-section a {
  font-size: 1.3rem;
}

.cta-section p {
  font-size: 1.5rem;
}

.cta-section h2 {
  color: #fff;
}

.c-g {
  color: grey;
}

.flag-row {
  display: flex;
  justify-content: space-between;
}

.flag img {
  width: 30px;
}

.scoped-serve-text h4 {
  text-align: left;
}

.badge-recommended {
  left: 0 !important;
}

.scoped-regional-final-sidebar {
  position: relative;
}

.sidebar-number-triangle {
  position: absolute;
  top: 76px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 60px solid #ff7b00;
  /* orange color */
  border-right: 60px solid transparent;
}

/* Positioning the number inside */
.sidebar-number-triangle span {
  position: absolute;
  top: -55px;
  left: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 992px) {
  .sidebar-number-triangle {
    top: 0;
  }

  .top-s {
    display: block !important;
    gap: 20px !important;
  }

  .top-s .services-box {
    margin: 20px 0px;
  }

  .pricing-card h5 {
    font-size: 1rem;
    margin-top: 30px;
  }
  .plan-price {
    margin-top: 40px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .scoped-regional-final-sidebar {
    margin-top: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .sidebar-number-triangle {
    top: 26px;
  }
}

@media (min-width: 1400px) {
  html body section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

@media (max-width: 576px) {
  html body section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .hero-section {
    padding: 50px 0 0 0 !important;
  }
}

@media (max-width: 1400px) {
  h2 {
    font-size: 2rem !important;
  }

  p {
    font-size: 1.1rem;
  }

  .container {
    max-width: 1230px !important;
  }

  .navbar-brand {
    font-size: 2.2rem;
  }

  /* .hero-section {
          padding: 120px 0 0 0 !important;
          position: relative;
        } */

  .hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.3;
  }

  .hero-text {
    color: #666;
    margin-top: 20px;
    font-size: 1.2rem;
    margin: auto;
    /* line-height: 2; */
  }

  .visual-box-container {
    position: absolute;
    top: 0;
    width: 300px;
    height: 320px;
    margin: 0 10% auto;
  }

  .about-section p {
    font-size: 1.2rem;
  }

  .services-box p {
    font-size: 1rem;
  }

  .pricing-card p {
    font-size: 1rem;
  }

  .plan-price {
    font-size: 1.8rem !important;
  }

  .badge-recommended {
    left: 0 !important;
    font-size: 12px;
  }

  .scoped-regional-final-sidebar-text {
    font-size: 1.1rem;
  }

  .why-choose-card p {
    font-size: 1rem;
  }

  .cta-section p {
    font-size: 1.2rem !important;
  }

  .cta-section a {
    font-size: 1rem;
  }

  .content-box p {
    font-size: 1rem;
  }

  .scoped-pricing-cell {
    padding: 30px 35px;
    /* move padding here */
    border-left: 1px solid #dee2e6 !important;
    /* vertical borders */
  }

  .why-matters-section .section-paragraph {
    font-size: 1.1rem;
  }

  .scoped-feature-title {
    font-size: 1.1rem;
  }

  .scoped-feature-description {
    font-size: 1rem;
  }

  .scoped-feature-box.is-highlighted {
    min-width: 280px !important;
  }

  .scoped-filing-card {
    padding: 30px 20px;
  }

  .scoped-regional-final-sidebar-title {
    font-size: 1.2rem;
  }
  .scoped-regional-final::before {
    height: 50px;
  }
  .scoped-regional-final-bottom-row {
    padding: 50px 25px;
    margin-top: 130px;
  }
  .why-choose-card {
    padding: 30px 20px;
  }
  .scoped-faq-body p,
  li {
    font-size: 1.1rem !important;
    color: rgb(108 117 125);
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem !important;
  }

  h1 {
    font-size: 2rem !important;
  }

  .scoped-pricing-cell {
    padding: 5px !important;
  }

  .remove-btn {
    margin-left: 0 !important;
    font-size: 14px !important;
  }

  .cta-button {
    padding: 10px 20px;
  }

  .china-div,
  .col-mod-6 {
    width: 120% !important;
    max-width: 120% !important;
    padding: 20px !important;
  }

  .flag p {
    font-size: 0.5rem;
  }

  .flag img {
    width: 15px;
  }

  .s-box {
    top: 33% !important;
  }

  .scoped-faq-accordion {
    padding: 0 !important;
  }
}
