.banner-4.thanks-page-banner {
  padding: 100px 0px;
  background: #003f48 !important;
  color: #fff;
}

:root {
  --primary-red: #d32f2f;
  --primary-green: #2ecc71;
  --dark-blue: #0f172a; /* Dark Navy for Form */
  --text-light: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.custom-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: block;
}

/* Header Layout */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.header-btn-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Hero Grid Layout */
.hero-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text-col {
  flex: 0 0 60%;
  max-width: 60%;
}

.hero-form-col {
  /* flex: 0 0 40%;
    max-width: 40%; */
  display: flex;
  justify-content: flex-end;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

/* =========================================
   3. VISUAL STYLING (YE MISSING THA)
   ========================================= */

/* --- Header Styling --- */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

/* Button Colors */
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  color: white !important;
  transition: 0.3s;
  font-size: 15px;
}

.btn-custom,
.btn-custom * {
  text-decoration: none !important;
}

.btn-call {
  background-color: var(--primary-red);
}
.btn-whatsapp {
  background-color: var(--primary-green);
}
.btn-chat {
  background-color: var(--dark-blue);
}

.btn-custom:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* --- Hero Section Styling --- */
.hero-section {
  background-image: url("../images/Banners/HeroBanner.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 20px;
  min-height: 100vh;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ffffffff;
  margin-bottom: 20px;
}
.hero-description {
  font-size: 1.35rem;
  line-height: 1.6;
  color: rgba(245, 249, 248, 1);
}

/* !!! IMPORTANT: Icons Size Fix !!! */
.feature-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
  border-radius: 50%;
}

.feature-box span {
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
}

/* =========================================
   4. FORM DESIGN (WITH IMAGE UPDATE)
   ========================================= */
.promo-card {
  position: relative;
  width: 100%;
  margin-left: auto;
}

/* Image Container (New Update) */
.discount-area {
  text-align: center;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
  z-index: 10;
  margin-bottom: -30px;
}

/* Image Styling */
.discount-img {
  width: 90%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
  transform: translateY(5px);
}

/* Form Main Body */
.form-body {
  background: #182439ef;
  padding: 45px 25px 25px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(241, 8, 8, 0.991);
  position: relative;
  z-index: 1;
  width: 470px;
  height: 430px;
  margin-bottom: 10px;
}

.form-title {
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Inputs styling */
.form-control,
.form-select {
  width: 100%;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0 15px;
  margin-bottom: 25px;
  font-size: 16px;
  box-sizing: border-box;
}

.btn-submit-form {
  width: 100%;
  background: var(--primary-red);
  color: white;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  margin-top: 8px;
}

.btn-submit-form:hover {
  background: #b91c1c;
}

/* =========================================
   6. SERVICES SECTION (Structural Help)
   ========================================= */

.service-section {
  padding: 20px 0;
  padding-bottom: 120px;
  background-color: #ffffff;
}

/* Header Text Styling */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 30px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid System for 3 Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Card Styling */
.service-card {
  border: 4px solid var(--primary-red);
  padding: 40px 25px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Button Group inside Card */
.card-btns {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* =========================================
   7. EXPECT SECTION (Dark Grid)
   ========================================= */

.expect-section {
  background-color: #1d2830;
  padding: 80px 0;
  color: #ffffff;
}

/* Header Styling */
.expect-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.expect-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.expect-desc {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.6;
}

/* Grid Layout */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card Styling */
.expect-card {
  border: 2px solid #a5f3fc;
  border-radius: 8px;
  padding: 30px 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
  background: transparent;
}

.expect-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

/* Icon Styling */
.card-icon i {
  font-size: 40px;
  color: #ffffff;
  min-width: 50px;
}

/* Text Styling */
.card-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.card-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}
/* SERVICES Tab */
/* --- 1. FORCE LAYOUT FIX (YE SAB SE ZAROORI HAI) --- */
/* Desktop: Force Side-by-Side */
@media (min-width: 992px) {
  .custom-row-layout {
    display: flex !important; /* Zabardasti flexbox use karo */
    flex-direction: row !important; /* Line me lao */
    align-items: flex-start; /* Top align */
    gap: 40px; /* Beech ka gap */
  }

  .left-panel-tabs {
    width: 350px !important; /* Left side ki width fix */
    flex-shrink: 0; /* Isay shrink mat hone do */
  }

  .right-panel-content {
    flex-grow: 1; /* Baaki jagah right side le le */
    width: auto;
  }
}

/* Mobile: Stack them */
@media (max-width: 991px) {
  .custom-row-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .left-panel-tabs,
  .right-panel-content {
    width: 100% !important;
  }
}

/* --- 2. DESIGN STYLING (COLORS & LOOK) --- */
.answer-section {
  padding: 80px 0;
  background-color: #fff;
  /* Optional: Add background image here if needed */
}

.section-heading {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 60px;
}

/* Tabs Styling */
.custom-nav-pills .nav-link {
  width: 100%;
  text-align: left;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #991b1b; /* Red Text */
  background-color: #f3f4f6; /* Gray BG */
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Active State (Selected) */
.custom-nav-pills .nav-link.active {
  background-color: #1e293b !important; /* Dark Blue */
  color: #ffffff !important;
  border-bottom: 6px solid #bf1e2e; /* Red Border */
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.tab-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.tab-text {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Buttons Styling */
.btn-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.btn-red {
  background-color: #bf1e2e;
}
.btn-dark {
  background-color: #1e293b;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* =========================================
   7. PROFICIENT SECTION (Feature Cards with Image)
   ========================================= */

/* ---  Proficient Section Background --- */
.proficient-section {
  background: url("../images/Banners/ProficientBg.webp") no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  overflow-x: hidden;
}

/* --- Header --- */
.proficient-header {
  text-align: center;
  margin-bottom: 50px;
}

.proficient-header h2 {
  margin-bottom: 15px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #1e293b;
}

/* --- Main Wrapper (FIX: Reduced Width) --- */
.proficient-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* --- Side Columns (Cards) --- */
.side-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
  flex: 0 0 320px;
  width: 320px;
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

/* --- Center Column (Image) --- */
.center-col {
  flex: 0 0 780px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Student Image */
.student-img {
  width: 95%;
  max-width: 780px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-bottom: 40px;
}

/* --- Desktop Alignment & Movement --- */
@media (min-width: 1200px) {
  /* LEFT COLUMN */
  .left-align {
    align-items: flex-end;
    position: relative;
    right: -220px;
    max-width: 320px;
  }

  .left-align .feature-card {
    flex-direction: row-reverse;
    text-align: left;
  }

  /* RIGHT COLUMN */
  .right-align {
    align-items: flex-start;
    position: relative;
    right: 270px;
    gap: 50px;
  }

  .right-align .feature-card {
    text-align: left;
  }
}

/* --- Card Design --- */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  /* Padding thodi adjust ki */
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
  width: 420px;
  border: #000000 1px solid;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
}

.feature-card .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.feature-card .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Tablet & Mobile Responsive --- */
@media (max-width: 1199px) {
  .proficient-content-wrapper {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
  }

  /* Tablet/Mobile */
  .left-align {
    right: auto;
    margin-right: 0;
  }

  .right-align {
    left: auto;
    margin-left: 0;
  }

  .center-col {
    order: 1;
    flex: auto;
    width: 100%;
    margin: 0;
  }

  .student-img {
    display: block;
  }

  .side-col {
    order: 2;
    width: 100%;
    max-width: 600px;
    flex: auto;
    gap: 20px;
  }

  .left-align,
  .right-align {
    align-items: center;
  }

  .feature-card {
    flex-direction: row !important;
    text-align: left !important;
  }
}

@media (max-width: 576px) {
  .student-img {
    display: none; /* Mobile pe image hide kar di */
  }
}

/* =========================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================= */

/* Tablet (Medium Screens) */
@media (max-width: 991px) {
  .expect-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
  }

  .expect-title {
    font-size: 1.8rem;
  }
}

/* Mobile (Small Screens) */
@media (max-width: 768px) {
  .expect-section {
    padding: 50px 0;
  }

  .expect-header {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .expect-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .expect-desc {
    font-size: 1rem;
    text-align: center;
  }

  .expect-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expect-card {
    padding: 25px 20px;
    align-items: center;
  }

  /* Mobile Pixel Perfect Container Fix */
  .expect-section .custom-container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}

/* =========================================
   8. COMPARISON SECTION (Before/After)
   ========================================= */
/* --- Comparison Slider CSS --- */

.comparison-wrapper {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-wrapper:hover {
  border-color: #141313ff;
}

/* Main Container */
.comparison-viewer {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

/* --- 1. Gray Overlay Effect (Hover pe aayega) --- */
.comparison-viewer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 8;
}

.comparison-viewer:hover::after {
  opacity: 1;
}

/* --- Images --- */
.img-base {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 5;
  background: transparent;
  transition: none;
}

.img-clipped {
  display: block;
  width: 100vw;
  max-width: 1200px;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* --- Slider Handle --- */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.handle-circle {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
  font-size: 14px;
}

/* --- 2. Labels (Before/After) - Hover Effect --- */
.label-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  border-radius: 4px;
  z-index: 20; /* Overlay se upar */
  pointer-events: none;

  /* Default Hidden */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-viewer:hover .label-badge {
  opacity: 1;
}
.comparison-viewer:hover .label-before {
  transform: translateY(-50%) translateX(5px);
}
.comparison-viewer:hover .label-after {
  transform: translateY(-50%) translateX(-5px);
}

.label-before {
  left: 10px;
  background: #cc0000;
}

.label-after {
  right: 10px;
  background: #cc0000;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .handle-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .label-badge {
    padding: 5px 10px;
    font-size: 12px;
  }
}

/* =========================================
   MOBILE RESPONSIVENESS (UPDATED)
   ========================================= */

@media (max-width: 991px) {
  /* --- 1. HEADER ADJUSTMENTS --- */
  .main-header {
    position: relative;
    background: #111;
    padding: 10px 0;
  }

  .header-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .navbar-brand img {
    height: 50px;
  }

  /* Header Buttons visible on mobile */
  .header-btn-group {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .header-btn-group .btn-custom {
    padding: 10px 6px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
  }

  .header-btn-group .btn-custom i {
    font-size: 14px;
  }

  /* --- 2. HERO SECTION LAYOUT (Imp Fix) --- */
  .hero-section {
    padding-top: 30px;
    text-align: center;
    /* Background image fix for mobile */
    background-position: center top;
  }

  .hero-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-text-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 120px;
  }

  .hero-form-col {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .promo-card {
    margin: 0;
    width: 100%;
  }

  /* --- 3. HERO BUTTONS (SHOWING THEM NOW) --- */
  .hero-cta-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  .hero-cta-group .btn-custom {
    width: auto;
    min-width: 140px;
    justify-content: center;
  }

  /* --- 4. TEXT & ICONS --- */
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fdfeffff;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    margin-top: 30px;
    justify-items: center;
  }

  .feature-box {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    width: 100%;
  }

  .feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* .feature-box span {
        font-size: 0.9rem;
        color: #fff;
        line-height: 1.3;
        display: block;
        max-width: 120px; 
        margin: 0 auto;
    } */

  /* =========================================
       5. STRUCTURAL SECTION (MOBILE PIXEL PERFECT)
       ========================================= */

  .structural-section {
    padding: 40px 0;
    background: #fff;
  }

  /* 1. Container Padding (Side Breathing Space) */
  .structural-section .custom-container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  /* 2. Grid to Column Stack */
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  /* 3. Card Styling (Fix Cutting Issues) */
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 100%;

    /* Box Model Fix */
    box-sizing: border-box;

    /* Spacing */
    padding: 35px 20px;
    margin: 0;

    /* Design */
    background: #fff;
    border: 3px solid #b91c1c;
    border-radius: 0;
  }

  /* 4. Heading & Text Alignment */
  .service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    padding: 0;
  }

  /* 5. Buttons Layout (Side by Side) */
  .card-btns {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-btns .btn-custom {
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
    max-width: 160px;
    justify-content: center;
    white-space: nowrap;
  }

  /* Section Header Fix */
  .section-header {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}


/* Writers Section */

.writers-section {
            padding: 80px 0;
            background-color: #fff;
            overflow: hidden;
            /* Prevent horizontal scroll on body */
        }

        .section-title {
            text-align: center;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .section-desc {
            text-align: center;
            color: #262727;
            max-width: 900px;
            margin: 0 auto 50px auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* --- 2. SLIDER CONTAINER --- */
        .slider-wrapper {
            position: relative;
            padding: 10px 0;
        }

        .slider-container {
            display: flex;
            gap: 32px;
            /* Gap between cards */
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 20px;

            /* Hide Scrollbars */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE */
        }

        .slider-container::-webkit-scrollbar {
            display: none;
            /* Chrome & Safari */
        }
        .slider-container {
            cursor: pointer;
        }

        /* --- 3. CARD DESIGN --- */
        .helper-card {
            flex: 0 0 auto;
            /* Prevent shrinking */
            /* Desktop Width Calculation: (100% - 2 gaps) / 3 cards */
            width: calc((100% - 64px) / 3);

            border: 2px solid #344149;
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .helper-card:hover {
            border-color: #94a3b8;
            /* Light gray on hover */
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Card Header (Dark) */
        .card-header-dark {
            background-color: #344149;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .helper-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            flex-shrink: 0;
        }

        .helper-info h3 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 5px 0;
        }

        .stars {
            color: #facc15;
            /* Yellow */
            font-size: 1rem;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }

        .degree-text {
            color: #e2e8f0;
            font-size: 0.85rem;
            line-height: 1.3;
            margin: 0;
        }

        /* Card Body (White) */
        .card-body-white {
            padding: 20px;
        }

        .detail-row {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .label-red {
            color: #b91c1c;
            /* Red */
            font-weight: 800;
            min-width: 140px;
            /* Align columns */
            display: inline-block;
        }

        .value-text {
            color: #334155;
            font-weight: 600;
        }
        
        /* --- PAGINATION DOTS --- */
        .pagination-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background-color: #d1d5db;
            /* Gray 500 */
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .dot.active {
            background-color: #dc2626;
            /* Red */
            width: 32px;
            border-radius: 10px;
        }

        /* --- 5. RESPONSIVE MEDIA QUERIES --- */

        /* Tablet: Show 2 Cards */
        @media (max-width: 991px) {
            .helper-card {
                width: calc((100% - 32px) / 2);
            }
        }

        /* Mobile: Show 1 Card */
        @media (max-width: 767px) {
            .helper-card {
                width: 100%;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Client-feedback section */
        .feedback-section {
            padding: 80px 0;
            background-color: #2d3a40;
            /* Dark Background */
            color: #fff;
            overflow: hidden;
        }

        .client-title {
            text-align: center;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .section-paragraph {
            text-align: center;
            color: #ffffff;
            /* Light Gray text */
            max-width: 800px;
            margin: 0 auto 50px auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* --- SLIDER CONTAINER --- */
        .slider-wrapper {
            position: relative;
            padding: 10px 0;
        }

        .slider-container {
            display: flex;
            gap: 32px;
            /* Gap between cards */
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 20px;

            /* Hide Scrollbar */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .slider-container::-webkit-scrollbar {
            display: none;
        }

        /* --- CARD DESIGN (CLIENT FEEDBACK) --- */
        .feedback-card {
            flex: 0 0 auto;
            /* Desktop Width: (100% - 2 gaps) / 3 */
            width: calc((100% - 64px) / 3);

            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            position: relative;

            /* Border Logic from Vue code */
            border: 2px solid #29d30b;
            /* Green Default */
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .feedback-card:hover {
            border-color: #0b0bd38d;
            /* Blueish Hover */
            transform: translateY(-5px);
        }

        /* Client Info (Top) */
        .client-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .client-img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fee2e2;
            /* red-100 */
        }

        .client-info h3 {
            color: #0f172a;
            /* Slate 900 */
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 0 4px 0;
        }

        .stars {
            color: #facc15;
            /* Yellow */
            font-size: 1rem;
            letter-spacing: 2px;
        }

        /* Review Text */
        .review-text {
            color: #353535;
            font-size: 1rem;
            line-height: 1.8;
            font-style: italic;
        }

        /* Quote Icon (Absolute Position) */
        .quote-icon {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 2.5rem;
            color: #fee2e2;
            /* Light Red */
            opacity: 0.5;
        }
 /* --- PAGINATION DOTS --- */
        .pagination-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background-color: #d1d5db;
            /* Gray 500 */
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .dot.active {
            background-color: #dc2626;
            /* Red */
            width: 32px;
            border-radius: 10px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 991px) {
            .feedback-card {
                width: calc((100% - 32px) / 2);
            }
        }

        @media (max-width: 767px) {
            .feedback-card {
                width: 100%;
            }
        }

/* =========================================
    9. FAQ SECTION
    ========================================= */
    
 .faq-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            font-weight: 800;
            color: #2d3a40;
            margin-bottom: 15px;
            font-size: 2.5rem;
        }

        .section-desc {
            text-align: center;
            color: #4b5563;
            /* Gray-600 */
            max-width: 900px;
            margin: 0 auto 50px auto;
            font-size: 1.15rem;
            line-height: 1.6;
        }

        /* --- FAQ ITEM STYLING --- */
        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 24px;
            /* Gap between items in a column */
            height: 100%;
        }

        .faq-item {
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        /* BUTTON STYLING */
        .faq-btn {
            width: 100%;
            text-align: left;
            padding: 20px 24px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 100px;
            /* Vue code logic */
        }

        /* Default State (Closed) - Matches Vue bg-[#2d3a40] */
        .faq-btn.collapsed {
            background-color: #2d3a40;
            color: #fff;
        }

        .faq-btn.collapsed:hover {
            background-color: #374151;
            /* Hover Slate */
        }

        /* Active State (Open) - Matches Vue bg-[#b91c1c] */
        .faq-btn.active {
            background-color: #b91c1c;
            color: #fff;
        }

        /* TEXT & ICONS */
        .btn-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding-right: 10px;
        }

        .toggle-icon {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
            margin-top: -2px;
        }

        .question-text {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.25;
        }

        .arrow-icon svg {
            width: 20px;
            height: 20px;
        }

        /* ANSWER BOX */
        .faq-answer {
            background-color: #fff;
            color: #374151;
            /* Gray-700 */
            padding: 24px;
            border-left: 1px solid #e5e7eb;
            border-right: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            line-height: 1.6;

            /* Logic to hide/show */
            display: none;
        }

        .faq-answer.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .faq-wrapper {
                margin-bottom: 24px;
            }
        }