html,
body {
  overflow-x: hidden;
  width: 100%;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.small, small {
    color: rgb(62 69 74) !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}


/* ─── HERO ─────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  border-radius: 20px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(2,14,40,.98),
    rgba(2,14,40,.75) 35%,
    rgba(2,14,40,.25) 75%,
    rgba(2,14,40,.03)
  );
  z-index: 1;
}

.bg-light {
  background: url(../img/service/Paper-Texture-1.jpg);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  background: url(../img/service/banner-sub.png) no-repeat center/contain;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero-single-img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.img-box {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── PROCESS ───────────────────────────────────────────────── */
.process-item p {
  text-align: justify;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── TICK ICON ─────────────────────────────────────────────── */
.tick-icon {
  min-width: 26px;
  width: 26px;
  height: 26px;
  background: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 3px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-line {
  position: absolute;
  top: 7.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ddd;
}

.process-item {
  position: relative;
}

.process-icon {
  width: 15px;
  height: 15px;
  background: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* ─── STEP CARDS ────────────────────────────────────────────── */
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.step-card p {
  text-align: center;
}

.step-card:hover {
  background: linear-gradient(135deg, #ffb79c 0%, #ffebdf 100%);
  color: #fff; 
  transform: translateY(-5px); 
}
.step-num {
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
}

/* ─── FEATURE BOX ───────────────────────────────────────────── */
.feature-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

/* FIX: removed global col-lg-6 flex override — it broke image columns */
/* .col-lg-6 { display:flex; flex-direction:column; } ← removed */

.icon-box {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ─── SUPPORT ADVANCED ──────────────────────────────────────── */
.support-advanced {
  position: relative;
}

/* .support-advanced::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,107,53,0.15), transparent);
  z-index: 0;
} */

.support-advanced .container {
  position: relative;
  z-index: 1;
}

.support-row {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 16px 20px 16px 25px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.support-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 3px;
  height: 0%;
  background: #ff6b35;
  transition: 0.3s ease;
}

.support-row span {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.15);
  min-width: 50px;
  transition: 0.3s;
}

.support-row:hover {
  transform: translateX(8px);
  background: rgb(255 236 229);
}

.support-row:hover::before {
  height: 60%;
}

.support-row:hover span {
  color: #ff6b35;
}

.support-row h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.support-row p {
  margin: 0;
  font-size: 15px;
  color: rgb(62 69 74);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
p {
  font-size: 17px;
}

.eyebrow {
  font-size: 23x;
}

/* ─── APPROVAL SECTION ──────────────────────────────────────── */
.approval-section {
  background: #f5f7fb;
  padding: 70px 0;
}

.approval-box {
  max-width: 950px;
  margin: auto;
  padding: 40px 45px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(296deg, #ff6b3538, #ff814fab);
}

.approval-box::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}

.approval-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.approval-badge span {
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.approval-box h6 {
  color: #2a2a2a;
  line-height: 1.45;
  font-weight: 700;
  margin: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-head {
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-head img {
  width: 140px;
  object-fit: contain;
}

.faq-head h5 {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.plus {
  font-size: 28px;
  color: #ff6b35;
  transition: transform .4s ease;
  flex-shrink: 0;
}

.faq-item.active .plus {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s ease;
}

.faq-content-inner {
  overflow: hidden;
  padding: 0 30px;
  opacity: 0;
  transition:
    opacity .3s ease,
    padding .4s ease;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-content-inner {
  opacity: 1;
  padding: 0 30px 25px;
}

.faq-content p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 14px;
}

.faq-content ul {
  padding-left: 18px;
  margin: 0;
}

.faq-content li {
  margin-bottom: 10px;
  color: #444;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE FIXES
   ════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 992px) ─────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-section {
    min-height: 70vh;
    padding: 100px 0 60px;
  }

  .hero-section h1 {
    font-size: 2rem !important;
  }

  /* Prevent text-justify stretching on mid screens */
  .hero-section p,
  .col-lg-6 p,
  .col-lg-5 p {
    text-align: left !important;
  }

  /* Allow image col to behave as block naturally */
  .col-lg-6,
  .col-lg-5,
  .col-lg-7 {
    display: block !important;
  }
}

/* ── Phablet / large phone (≤ 768px) ─────────────────────── */
@media (max-width: 768px) {
  .hero-section .w-75 {
    width: 100% !important;
  }

  p.w-75.mx-auto {
    width: 100% !important;
  }

  .step-card {
    margin-bottom: 0;
  }

  .support-row:hover {
    transform: none;
  }

  /* Ensure all layout columns are block on mobile */
  .col-lg-6,
  .col-lg-5,
  .col-lg-7 {
    display: block !important;
  }

  .approval-box {
    padding: 40px 25px;
  }

  .approval-box h2 {
    font-size: 26px;
    line-height: 1.5;
  }

  .faq-head {
    padding: 18px;
    gap: 15px;
  }

  .faq-head img {
    width: 90px;
  }

  .faq-head h5 {
    font-size: 18px;
    text-align: left;
  }

  .plus {
    font-size: 22px;
  }

  .faq-item.active .faq-content-inner {
    padding: 0 18px 20px;
  }

  .faq-content-inner {
    padding: 0 18px;
  }
}

/* ── Small phone (≤ 576px) ────────────────────────────────── */
@media (max-width: 576px) {

  /* Hero: reduce height, remove border-radius on small screens */
  .hero-section {
    min-height: 60vh;
    padding: 90px 0 50px;
    border-radius: 0;
  }

  .hero-section h1 {
    font-size: 1.7rem !important;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  /* Global container padding */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Section vertical rhythm — restore sane bottom padding */
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Step cards: stack to 1 column on very small screens */
  .step-card {
    padding: 10px 15px;
  }

  /* Step cards: show 1 per row below 400px, keep 2 above */
  .col-md-3.col-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Support rows */
  .support-row {
    padding: 14px 16px 14px 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .support-row span {
    font-size: 22px;
    min-width: 36px;
  }

  .support-row div {
    flex: 1;
    min-width: 0; /* prevent overflow */
  }

  .support-row h6 {
    font-size: 14px;
  }

  /* Approval box */
  .approval-box {
    padding: 30px 18px;
  }

  /* Eyebrow: smaller font, allow wrapping */
  .eyebrow {
    word-break: break-word;
    line-height: 1.6;
  }

  /* Eyebrow SVG decorators: hide on very small screens to prevent overflow */
  .eyebrow svg {
    display: none;
  }

  /* FAQ */
  .faq-head h5 {
    font-size: 15px;
  }

  /* Image box */
  .img-box {
    min-height: 220px;
  }

  /* Tick feature list: ensure items don't overflow */
  .d-flex.align-items-center.mb-3,
  .d-flex.align-items-center {
    flex-wrap: nowrap;
    align-items: flex-start !important;
  }

  .d-flex.align-items-center span {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Support section left col text */
  .support-advanced .col-lg-5 p {
    font-size: 14px;
  }

  /* General paragraph size reduction */
  p {
    font-size: 14px;
  }
}

/* ── Extra small (≤ 400px) ────────────────────────────────── */
@media (max-width: 400px) {
  .hero-section h1 {
    font-size: 1.4rem !important;
  }

  .hero-section {
    min-height: 50vh;
  }

  .support-row {
    gap: 8px;
  }

  .support-row span {
    font-size: 18px;
    min-width: 28px;
  }
}
/* Active state mirrors hover */
.support-row.active {
    transform: translateX(8px);
    background: rgb(255 236 229);
}

.support-row.active::before {
    height: 60%;
}

.support-row.active span {
    color: #ff6b35;
}