

  :root {
    --auth-dark: #0a0a0a;
    --auth-gray: #5b5c54;
    --auth-orange: #ff6a05;
    --auth-line: #e6e6e6;
    --primary-orange: #ff6404;
  --bg-cream: #fdf5ec; /* Matches the light beige in image */
  --text-dark: #444444;
  }
  
/* =========================================
   HERO SECTION STRUCTURE
========================================= */
.hero-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-light);
  background-image: url("../images/home/bannerHome.svg") !important; /* fixed path */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  overflow: hidden; /* Prevents horizontal scroll from slider */
}

.hero-row {
  min-height: 650px;
}

.hero-left-content {
  z-index: 20;
}

/* Typography */
.main-heading { 
  font-family: "Unbounded", sans-serif; 
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--heading-black);
  margin-bottom: 25px;
}

.text-orange {
  color: var(--primary-orange) !important;
}

.hero-subtext {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Buttons */
.cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-black-solid {
  background-color: var(--heading-black);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--heading-black);
}

.btn-black-solid:hover {
  background-color: transparent;
  color: var(--heading-black);
}

.link-how-it-works {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-black);
  text-decoration: none;
  border-bottom: 2px solid var(--primary-orange);
  padding-bottom: 3px;
  transition: opacity 0.3s ease;
}

.link-how-it-works:hover {
  opacity: 0.7;
}

/* =========================================
   PRO SLIDER ENGINE (RIGHT COLUMN)
========================================= */
.hero-pro-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100%;
  min-height: 600px; /* Increased to give image room */
  position: relative;
}

.pro-slide {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 1s ease;
  will-change: transform, opacity;
}

/* Slider States */
.pro-slide.next {
  opacity: 0;
  transform: translateX(100px);
  z-index: 1;
  pointer-events: none;
}
.pro-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 5;
  pointer-events: auto;
}
.pro-slide.prev {
  opacity: 0;
  transform: translateX(-100px);
  z-index: 1;
  pointer-events: none;
}

/* Slider Typography & Visuals */
.slide-floating-title {
  position: absolute;
  top: -2%;
  right: 20%;
  z-index: 1;
  width: 100%;
  text-align: right;
}

.slide-floating-title h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 4vw, 3.5rem);
  letter-spacing: -1.5px;
  color: rgba(10, 12, 0, 0.35); /* Made it look like a watermark */
  margin: 0;
}

.slide-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.slide-anchor-box {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* 🔥 FIXED IMAGE SIZING HERE 🔥 */
.slide-main-img {
  height: auto;
  width: 100%;
  max-width: 650px; /* Much larger for desktop */
  max-height: 75vh; /* Allows it to grow taller */
  object-fit: contain;
  position: relative;
  z-index: 5;
  display: block;
  margin: 0 auto;
}

/* =========================================
   GLASS CARDS (RESPONSIVE PLACEMENTS)
========================================= */
.glass-card {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.75) 0%,
    rgba(40, 40, 40, 0.4) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
  width: max-content;
  text-align: left;
}

.glass-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glass-card li {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.glass-card li:last-child {
  margin-bottom: 0;
}

.chevron-orange {
  width: 6px;
  height: 10px;
  flex-shrink: 0;
}

/* Placements adjusted to wrap around the newly enlarged image */
.slide-1-card-left,
.slide-2-card-left {
  top: 70%;
  left: 4%;
  transform: translateY(-50%);
}

.slide-1-card-right,
.slide-2-card-right {
  bottom: 10%;
  right: -10%;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

/* Tablets / Small Laptops */
@media (max-width: 1199px) {
  .slide-main-img {
    max-width: 500px; /* Scale down slightly for medium screens */
  }
  .slide-1-card-left,
  .slide-2-card-left {
    left: -2%;
  }
  .slide-1-card-right,
  .slide-2-card-right {
    right: -2%;
  }
}

/* Large Phones / Tablets */
@media (max-width: 991px) {
  .home-hero-section {
    padding: 60px 0;
    text-align: center;
  }
  .cta-group {
    justify-content: center;
    margin-bottom: 50px;
  }
  .hero-pro-track {
    min-height: 450px;
  }
  .slide-floating-title {
    top: -20px;
    right: auto;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
  }

  .slide-main-img {
    max-height: 450px; /* Cap height on tablets */
    max-width: 400px;
  }

  /* Pull the glass cards inward so they don't break horizontal width */
  .slide-1-card-left,
  .slide-2-card-left {
    left: 5%;
    top: 75%;
  }
  .slide-1-card-right,
  .slide-2-card-right {
    right: 5%;
    bottom: 5%;
  }
}

/* Mobile Phones */
@media (max-width: 767px) {
  .hero-row {
    min-height: auto;
  }
  .slide-floating-title h2 {
    font-size: 2.5rem;
  }

  .slide-main-img {
    max-height: 350px; /* Scale down for mobile devices */
    max-width: 100%;
  }

  /* Hide glass cards on mobile to avoid covering the face and text */
  .glass-card {
    display: none;
  }
}

/* SECTION-2 */
.home-authority-section {
  background-color: #ffffff; /* Main section background remains white */
  font-family: "Poppins", sans-serif;
}

.home-main-heading {
  font-family: "Unbounded", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading-black);
  line-height: 1.1;
  letter-spacing: -1px;
}

.home-sub-heading {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0;
    text-align: right;
}

/* Card Styling */
.home-card {
  background-color: var(--bg-light);
  border: 1px solid #ebebeb; /* Very subtle border around cards */
  padding: 40px 30px;
}

.home-icon-box {
  width: 45px;
  height: 45px;
  background-color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 2px;
  margin-bottom: 30px;
}

.home-card-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-black);
  margin-bottom: 25px;
  line-height: 1.3;
}

/* List Items (Cards 1 & 2) and Paragraphs (Cards 3 & 4) */
.home-feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.home-feature-list li,
.home-feature-desc {
  position: relative;
  padding-left: 14px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-gray);
  font-family:"Poppins", sans-serif;
  line-height: 1.6;
}

/* The Orange Chevron before the text */
.home-feature-list li::before,
.home-feature-desc::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary-orange);
  font-size: 1.25rem;
  font-weight: bold;
}

/* Bottom Button Styling */
.home-action-btn {
  display: block;
  width: 100%;
  background-color: var(--heading-black);
  color: #fff;
  text-align: center;
  padding: 16px 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 0; /* Ensures square edges */
  transition: background-color 0.3s ease;
}

.home-action-btn:hover {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .home-main-heading {
    font-size: 2.5rem;
  }
  .home-sub-heading{
      text-align: left;
  }
}

@media (max-width: 576px) {
  .home-main-heading {
    font-size: 2rem;
  }
  .home-card {
    padding: 30px 20px;
  }
}

/* SECTION 3 */

/* Base resets for the section */
.sg-section {
  background-color: var(--bg-light);
  font-family: "Poppins", sans-serif;
  color: var(--text-gray);
  padding: 80px 0;
  overflow: hidden;
}



/* --- Header Typography --- */
.sg-header-row {
  margin-bottom: 50px;
}
.sg-eyebrow {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sg-main-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--heading-black);
  letter-spacing: -0.5px;
  margin: 0;
}
.sg-text-orange {
  color: var(--primary-orange);
}
.sg-subtext {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  max-width: 320px;
  margin: 0;
}

/* --- Main Boards Container --- */
.sg-boards-container {
  position: relative;
  z-index: 2;
}

.sg-board {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 65px 24px 24px 24px; /* Top padding leaves room for the tab */
  position: relative;
  height: 100%;
  background-color: transparent;
}

/* --- The Background Tabs --- */
.sg-tab {
  position: absolute;
  top: -1px;
  left: -1px;
  height: 95px; /* High enough to tuck behind the first card perfectly */
  padding: 22px 30px;
  display: flex;
  align-items: flex-start;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  z-index: -1;
  /* Using a CSS gradient trick to create the chamfered/angled cut on bottom-right 
     while maintaining border-radius on the top-left */
}

.tab-black {
  width: 65%; /* Shorter width for left board */
  background: linear-gradient(
    -45deg,
    transparent 18px,
    var(--heading-black) 18.5px
  );
  border-top-left-radius: 12px;

  
  
}
.tab-orange {
  width: 65%; /* Wider width for right board */
  background: linear-gradient(
    -45deg,
    transparent 18px,
    var(--primary-orange) 18.5px
  );
  border-top-left-radius: 12px;
}

.sg-tab-icon {
  margin-right: 12px;
  margin-top: -5px;
  height:32px;
}

/* --- The Rows and Cards --- */
.sg-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  margin-bottom: 20px;
}
.sg-row:last-child {
  margin-bottom: 0;
}

/* Card Foundations */
.sg-card-left,
.sg-card-right {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  position: relative;
  min-height:140px;
}

/* Left Card specific - Has the drop shadow AND the arrow */
.sg-card-left {
  width: calc(50% - 14px);
  padding-right: 32px; /* Extra padding so text doesn't hit arrow */
  /* filter drop-shadow is key: it shadows the CSS triangle properly! */
  filter: drop-shadow(0px 6px 15px var(--shadow-color));
}

/* Protruding Triangle for Left Card */
.sg-card-left::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #ffffff;
  z-index: 5;
}

/* Right Card Specific */
.sg-card-right {
  width: calc(50% - 14px);
  box-shadow: 0px 6px 15px var(--shadow-color);
}

/* Center Connector Circle */
.sg-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.bg-black {
  background-color: var(--heading-black);
}
.bg-orange {
  background-color: var(--primary-orange);
}

/* --- Card Content Formatting --- */
.sg-num-col {
  margin-right: 20px;
  flex-shrink: 0;
}
.sg-num {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  padding-bottom: 4px;
}
.num-black {
  color: var(--heading-black);
  border-bottom: 2.5px solid var(--heading-black);
}
.num-orange {
  color: var(--primary-orange);
  border-bottom: 2.5px solid var(--primary-orange);
}

.sg-icon-col {
  margin-right: 18px;
  flex-shrink: 0;
}
.text-black {
  color: var(--heading-black);
}
.text-orange {
  color: var(--primary-orange);
}

.sg-text-col {
  display: flex;
  flex-direction: column;
  gap:10px;
}
.sg-tiny-label {
  font-size: 0.6rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.sg-desc {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.4;
}
.sg-title {
  font-family: "Unbounded", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-black);
  line-height: 1.25;
}

/* --- Bottom Buttons --- */
.sg-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sg-btn-icon-l {
  margin-right: 12px;
}
.sg-btn-icon-r {
  margin-left: 20px;
}

.sg-btn-white {
  background-color: #fff;
  color: var(--heading-black);
  border: 1px solid #dcdcdc;
}
.sg-btn-white:hover {
  border-color: var(--heading-black);
}

.sg-btn-orange {
  background-color: var(--primary-orange);
  color: #fff;
  border: 1px solid var(--primary-orange);
}
.sg-btn-orange:hover {
  background-color: #e55a02;
  border-color: #e55a02;
  color: #fff;
}

/* ========================================= */
/* Responsive Layout Adjustments             */
/* ========================================= */

@media (max-width: 1399px) {
  /* Slightly tighten layout for standard desktop */
  .sg-card-left,
  .sg-card-right {
    padding: 16px 20px;
  }
  .sg-num {
    font-size: 1.6rem;
  }
  .tab-black {
    width: 55%;
  }
  .tab-orange {
    width: 80%;
  }
}

@media (max-width: 1199px) {
  /* When columns break and stack vertically */
  .sg-main-title {
    font-size: 2.4rem;
  }
  .sg-subtext {
    text-align: left !important;
    margin-left: 0 !important;
    max-width: 100%;
    margin-top: 15px;
  }
  .sg-actions-row {
    justify-content: center;
  }
  .tab-black {
    width: 35%;
  }
  .tab-orange {
    width: 55%;
  }
}

@media (max-width: 991px) {
  /* Breakpoint to stack cards vertically inside the boards */
  .sg-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .sg-card-left,
  .sg-card-right {
    width: 100%;
  }

  /* Arrow pointing DOWN on mobile */
  .sg-card-left::after {
    right: 50%;
    top: 100%;
    transform: translateX(50%);
    border-top: 14px solid #ffffff;
    border-bottom: none;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
  }

  /* Connector points DOWN and shifts between vertical stacked cards */
  .sg-connector {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .tab-black {
    width: 50%;
  }
  .tab-orange {
    width: 85%;
  }
}

@media (max-width: 576px) {
  .sg-main-title {
    font-size: 2rem;
  }
  .sg-board {
    padding: 65px 15px 15px 15px;
  }

  .tab-black,
  .tab-orange {
    width: 90%;
    /* Reset bottom cut for pure mobile just in case of narrow wrapping */
    background: var(--heading-black);
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .tab-orange {
    background: var(--primary-orange);
  }

  /* Optional: stack the inner card elements on very tiny screens */
  .sg-card-left,
  .sg-card-right {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .sg-num-col,
  .sg-icon-col {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .sg-actions-row {
    flex-direction: column;
  }
  .sg-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================
   CTA Bar Section
   ========================================================== */

.cta-bar {
  width: 100%;
  background-color: #0d0d0d;
  background-image: url("../images/home/cta-bg.png"); /* dummy bg image - replace with your asset */
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  padding: 34px 40px;
  font-family: var(--font-primary);
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-left {
  position: relative;
  flex: 0 0 auto;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-corner-line {
  position: absolute;
  top: -18px;
  left: 20px;
  width: 1px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.25);
}

.cta-heading {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  color: var(--color-white);
  margin-bottom: 6px;
}

.cta-subtext {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary-orange);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  padding: 13px 20px;
  border-radius: 4px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-icon,
.cta-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.cta-btn--primary {
  background-color: var(--primary-orange);
  color: var(--color-white);
  border: 1px solid var(--primary-orange);
}

.cta-btn--primary:hover {
  background-color: var(--primary-orange -dark);
}

.cta-btn--outline {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-btn--outline:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 18px;
    margin-right: 10px;
  }

  .cta-left {
    flex: none;
    padding: 0;
  }
}

/* <!-- section-5  --> */
/* =========================================
   "WHAT WE DO" SECTION
========================================= */

.what-we-do-section {
  background-color: var(--bg-light); /* Your global light gray */
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

/* Intro Text Column */
.intro-wrapper {
  display: flex;
  align-items: center;
}

.intro-content {
  padding-right: 20px;
}

.section-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--heading-black);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle-sp {
  font-size: 1.1rem;
  color: var(--primary-orange);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 90%;
}

/* Service Cards */
.service-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-left: 3px solid var(--primary-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); /* Slight depth */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Subtle hover effect for the cards */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Orange Number */
.card-number {
  color: var(--primary-orange);
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid var(--primary-orange);
  padding-bottom: 2px;
  margin-bottom: 20px;
  line-height: 1;
}

/* Card Typography */
.card-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-black);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.card-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 25px;
  font-weight: 400;
}

/* List Styling */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 12px;
  font-weight: 400;
  font-family:"Poppins", sans-serif;
}

.card-list li:last-child {
  margin-bottom: 0;
}

/* Diagonal Arrow SVG */
.arrow-icon {
  width: 12px;
  height: 12px;
  color: var(--primary-orange);
  margin-top: 4px; /* aligns perfectly with the text baseline */
  flex-shrink: 0;
}

/* =========================================
   RESPONSIVE TWEAKS
========================================= */

@media (max-width: 991px) {
  /* On tablets, center the intro text because it breaks to 100% width or stacks on top */
  .intro-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .section-subtitle {
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .what-we-do-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 20px;
  }
}

/* SECTION-6 */
/* Base Section Styles */
.hiw-section {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  color: var(--text-gray);
  overflow: hidden;
}

/* Image Wrapper */
.hiw-image-wrapper {
  width: 100%;
  height: 100%;
  max-height: 700px;
  overflow: hidden;
}

.hiw-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Headers */
.hiw-title {
  font-family: "Unbounded", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading-black);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hiw-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* List Wrapper */
.hiw-list {
  display: flex;
  flex-direction: column;
}

/* Individual List Item */
.hiw-item {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease;
}

/* Remove bottom border from last item */
.hiw-item:last-child {
  border-bottom: none;
  padding-bottom: 0; /* Keeps spacing neat at the end */
}

/* Number Styling */
.hiw-num {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-orange);
  min-width: 45px;
  line-height: 1;
}

/* Vertical Gradient Divider */
.hiw-divider {
  width: 1px;
  height: 40px;
  /* Fades out at the top and bottom to replicate the image perfectly */
  background: linear-gradient(
    to bottom,
    rgba(255, 100, 4, 0),
    rgba(255, 100, 4, 0.4) 50%,
    rgba(255, 100, 4, 0)
  );
  margin: 0 25px;
  flex-shrink: 0;
}

/* Text Content Area */
.hiw-text-content {
  flex-grow: 1;
  padding-right: 20px;
}

.hiw-item-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-black);
  margin-bottom: 6px;
  line-height: 1.2;
}

.hiw-item-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

/* Orange Arrow Circle */
.hiw-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.hiw-item:hover .hiw-arrow-circle {
  transform: translateX(4px); /* Slight nudge interaction on hover */
  background-color: #e55a02;
}

/* ========================================= */
/* Responsive Layout Adjustments             */
/* ========================================= */

@media (max-width: 1199px) {
  .hiw-title {
    font-size: 2.6rem;
  }
  .hiw-item {
    padding: 24px 0;
  }
}

@media (max-width: 991px) {
  /* On tablets/mobile, stack image on top */
  .hiw-title {
    font-size: 2.4rem;
  }
  .hiw-image-wrapper {
    max-height: 400px; /* Constrain image height on mobile */
    border-radius: 8px; /* Optional: softer look on mobile */
  }
}

@media (max-width: 576px) {
  .hiw-title {
    font-size: 2.2rem;
  }
  .hiw-item {
    padding: 20px 0;
  }

  .hiw-num {
    font-size: 1.4rem;
    min-width: 35px;
  }
  .hiw-divider {
    margin: 0 15px;
  }

  .hiw-item-title {
    font-size: 1.05rem;
  }
  .hiw-item-desc {
    font-size: 0.8rem;
  }
}

/* section-7  *

      /* section who */
.split-layout-container {
  max-width: 1440px;
  margin-left: auto;  /* Explicitly center the container */
  margin-right: auto; /* Explicitly center the container */
  padding: 60px 40px;
  width: 100%;
  box-sizing: border-box;
}
      .sticky-sidebar {
        position: sticky;
        top: 60px;
        padding-right: 40px;
      }
      .main-heading {
        font-family: "Unbounded", sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 10px;
        letter-spacing: -1px;
      }
      .sub-heading {
        font-family: "Unbounded", sans-serif;
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
        letter-spacing: -0.5px;
        margin-top:0 ;
      }

      /* --- 3. Left Sidebar Timeline --- */
      .process-timeline {
        position: relative;
        margin: 40px 0;
      }
      .timeline-line {
        position: absolute;
        left: 4px;
        top: 15px;
        bottom: 15px;
        width: 2px;
        background-color: var(--primary-orange);
        z-index: 1;
      }
      .timeline-item {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 35px;
        z-index: 2;
      }
      .timeline-item:last-child {
        margin-bottom: 0;
      }
      .timeline-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        border-radius: 50%;
        border: 2px solid var(--primary-orange);
        background: var(--primary-orange);
      }
      .timeline-icon-wrap {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 50%;
        background: var(--color-white);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
      }
      .timeline-icon-wrap svg {
        width: 24px;
        height: 24px;
        stroke: var(--primary-orange);
        fill: none;
        stroke-width: 1.5;
      }
      .timeline-text {
          font-family: "Unbounded", sans-serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--heading-black);
      }

      /* Buttons */
      .btn-custom-orange,
      .btn-custom-outline {
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 4px;
        border: 2px solid var(--primary-orange);
        font-size: 0.9rem;
        display: inline-block;
      }
      .btn-custom-orange {
        background-color: var(--primary-orange);
        color: white;
      }
      .btn-custom-outline {
        background-color: transparent;
        color: var(--primary-orange);
      }
       .btn-custom-orange:hover {
         background-color: transparent;
        color: var(--primary-orange);
        border: 2px solid var(--primary-orange);
      }
      .btn-custom-outline:hover {
       
        background-color: var(--primary-orange);
        color: white;
      }
      .link-custom {
        color: var(--heading-black);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 4px;
        font-size: 0.9rem;
        white-space: nowrap;
      }

      /* --- 4. Right Side Diagram Section --- */
      .section-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
      }
      .header-letter {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border: 1px solid var(--primary-orange);
        color: var(--primary-orange);
        font-weight: 600;
        font-size: 1.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--color-white);
      }
      .header-title {
        font-family: "Unbounded", sans-serif;
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--heading-black);
        margin: 0;
      }
      .header-line {
        flex-grow: 1;
        height: 1px;
        background-color: var(--primary-orange);
        opacity: 0.4;
      }
      .header-right-text {
        color: var(--primary-orange);
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
      }

      /* Diagram Flex Grid */
     /* --- Right Side Diagram Section --- */
.diagram-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; 
  margin-left: auto;  /* Changed from 0 to auto to center on larger displays */
  margin-right: auto; /* Changed from auto to auto */
  margin-bottom: 60px;
}
      .diagram-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        overflow: visible;
      }
      .diagram-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 0;
        gap:18px;
      }
      .cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px; /* Reduced from 330px to free up gap space for the flow lines */
  flex-shrink: 0;
}
      .center-col {
        flex-grow: 1;
        display: flex;
        justify-content: center;
      }

      /* Cards */
      .diagram-card {
        background: var(--color-white);
        border-radius: 6px;
        padding: 14px 16px;
        display: flex;
        gap: 15px;
        align-items: flex-start;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      }
      .card-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        background-color: var(--color-white);
        border: 1px solid #f0e6df;
        border-radius: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .card-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--primary-orange);
        fill: none;
        stroke-width: 1.5;
      }
      .card-content h5 {
        font-family: "Unbounded", sans-serif;
        font-size: 0.85rem;
        font-weight: 300;
        color: var(--heading-black);
        margin: 0 0 4px 0;
      }
      .card-content p {
        font-size: 0.7rem;
        color: var(--text-gray);
        margin: 0;
        line-height: 1.4;
      }

      /* Center Node */
      .diagram-center-node {
        width: 190px;
        height: 190px;
        border-radius: 50%;

        /* 1. Light background (matches the cream/white center) */
        background: radial-gradient(circle, #ffffff 0%, #fcf3eb 100%);

        /* 2. Thick white border as seen in the image */
        border: 5px solid #ffffff;

        /* 3. Soft orange outer glow (halo effect) */
        box-shadow: 0 0 40px rgba(255, 100, 4, 0.25);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
      }

      /* Make sure the icon and text are dark like the image */
      .diagram-center-node svg {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
      }

      .diagram-center-node h4 {
        margin: 0;
        color: #000000;
        font-family: sans-serif;
        font-size: 1.2rem;
        line-height: 1.2;
      }
      .diagram-center-node svg,
      .diagram-center-node img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
      }
      .diagram-center-node h4 {
        font-family: "Unbounded", sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--heading-black);
        margin: 0;
        line-height: 1.3;
      }
      
/* --- Adjust the divider to match the diagram width --- */
.info-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fdf5ec;
  border: 1px solid #ff6404;
  border-radius: 4px;
  padding: 15px 25px;
  max-width: 1000px; 
  margin: 40px auto; /* Changed from "40px 0" to "40px auto" to center alignment */
}

.info-divider img {
  width: 32px;
  height: 32px;
  /* CRITICAL: fill must be none for outline icons */
  fill: none; 
  stroke: #ff6404;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-divider p {
  margin: 0;
  font-size: .9rem;
  color: #444;
  line-height: 1.5;
  text-align: left;
}

.text-orange {
  color: #ff6404;
  font-weight: 700;
}


  /* ======================================================== RESPONSIVE ======================================================== */
      @media (max-width: 1199.98px) {
        .split-layout-container {
          padding: 40px 20px;
        }
        .sticky-sidebar {
          position: relative;
          top: 0;
          padding-right: 0;
          margin-bottom: 40px;
        }
        .main-heading {
          font-size: 2.5rem;
          margin-bottom: 15px;
        }
        .sub-heading {
          font-size: 2rem;
          margin-bottom: 20px;
        }
        .diagram-row {
          flex-direction: column;
          align-items: stretch;
          gap: 16px;
        }
        .center-col {
          width: 100%;
          order: -1;
          justify-content: flex-start;
          padding-left: 15px;
          margin-bottom: 10px;
        }
        .diagram-center-node {
          width: 110px;
          height: 110px;
          margin: 0;
        }
        .diagram-center-node svg,
        .diagram-center-node img {
          width: 26px;
          height: 26px;
          margin-bottom: 6px;
        }
       
        .cards-col {
          width: 100%;
          padding-left: 70px;
          gap: 16px;
        }
        .diagram-card {
          width: 100%;
          max-width: 100%;
          padding: 12px 15px;
        }
        .info-divider {
          flex-direction: column;
          margin: 40px 0;
          padding: 0;
          text-align: left;
          align-items: flex-start;
        }
        .d-flex.align-items-center.gap-3 {
          flex-direction: column;
          align-items: stretch !important;
          gap: 12px !important;
        }
        .btn-custom-orange,
        .btn-custom-outline {
          width: 100%;
          text-align: center;
        }
        .link-custom {
          text-align: center;
          margin: 5px 0 0 0 !important;
          display: block;
        }
      }
      @media (max-width: 767.98px) {
        .split-layout-container {
          padding: 30px 15px;
        }
        .main-heading {
          font-size: 2.2rem;
        }
        .sub-heading {
          font-size: 1.8rem;
        }
        .card-icon {
          width: 34px;
          height: 34px;
          min-width: 34px;
        }
        .card-icon svg {
          width: 16px;
          height: 16px;
        }
        .card-content h5 {
          font-size: 0.8rem;
        }
        .card-content p {
          font-size: 0.7rem;
        }
        .center-col {
          padding-left: 0;
        }
        .cards-col {
          padding-left: 50px;
        }
        .diagram-center-node {
          width: 100px;
          height: 100px;
        }
        .section-header {
          flex-direction: column;
          align-items: start;
        }
      }
 
    
    
/* SECTION-8 */
/* Compact Hero Section */
.home-lawyer-hero {
  min-height: 70vh; /* Reduced from 100vh for a more compact feel */
  background-color: #000;
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 60px 0; /* Reduced padding */
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  position: relative;
}

/* Compact Typography */
.home-title-container {
  margin-bottom: 5px;
}

.home-text-pre {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 2.2rem; /* Reduced */
  font-weight: 600;
  margin-bottom: 10px;
}

.home-text-main {
  font-family: "Unbounded", sans-serif;
  /* Smaller scale range for compact look */
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 600;
  color: #ff6404;
  text-transform: capitalize;
  line-height: 0.85;
  margin: 0;
  letter-spacing: -2px;
}

.home-text-sub {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); /* Reduced */
  font-weight: 600;
  margin-top: 15px; /* Tighter margin */
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.home-text-desc {
  font-size: 1rem; /* Slightly smaller */
  line-height: 1.5;
  color: #bbb;
  margin-bottom: 0;
}

/* Compact Bottom Grid */
.home-feature-flex {
  display: flex;
  flex-wrap: wrap;
}


/* Compact Link List */
.home-link-list {
  list-style: none;
  padding: 10px 0 10px 40px; /* Padding-left creates space for the line */
  margin: 0;
  text-align: left;         /* Align text to the left as per image */
  position: relative;       /* Needed to position the vertical line */
}

/* The Glowing Vertical Line */
.home-link-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;                 /* Starts slightly down for the fade effect */
  height: 80%;              /* Ends slightly up for the fade effect */
  width: 2px;               /* Thickness of the line */
  
  /* Gradient that fades at the top and bottom */
  background: linear-gradient(
    to bottom, 
    transparent 0%, 
    #ff6404 50%, 
    transparent 100%
  );
  
  /* Adds the soft orange glow seen in the image */
  box-shadow: 0 0 15px rgba(255, 100, 4, 0.7);
}

.home-link-list li {
  margin-bottom: 20px;      /* Spacing between links */
}

.home-link-list li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.home-link-list li a:hover {
  opacity: 0.8;
}

/* Styling the arrows */
.home-link-list li a::after {
  margin-left: 10px;
  font-weight: 300;
}

/* Container for the whole row */
.bottom-layout-row {
  display: flex;
  align-items: center;
}

/* Feature Grid Styling */
.home-feature-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-feature-item {
  flex: 1;
  padding: 0 20px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

/* The Glowing Dividers between Feature Items */
.home-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #ff6404, transparent);
  box-shadow: 0 0 12px rgba(255, 100, 4, 0.7);
}

.home-feature-item:first-child {
  padding-left: 0;
}

/* Link Menu Styling (Right Side) */
.home-link-list {
  list-style: none;
  padding: 0 0 0 40px; /* Space for the line */
  margin: 0;
  position: relative;
}

/* The Glowing Divider before the Link List */
.home-link-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10%;
  height: 120%; /* Slightly taller to match the multi-line list */
  width: 1px;
  background: linear-gradient(to bottom, transparent, #ff6404, transparent);
  box-shadow: 0 0 12px rgba(255, 100, 4, 0.7);
}

.home-link-list li {
  margin-bottom: 8px;
}

.home-link-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  transition: opacity 0.3s;
}

.home-link-list li a:hover {
  opacity: 0.7;
}

/* Responsive: Stack on mobile */
@media (max-width: 991px) {
  .home-feature-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-feature-item {
    padding: 15px 0;
    width: 100%;
  }
  .home-feature-item:not(:last-child)::after {
    display: none; /* Hide vertical lines on mobile stack */
  }
  .home-link-list {
    margin-top: 30px;
    padding-left: 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .home-lawyer-hero {
    padding: 50px 0;
    min-height: auto;
  }
  .home-feature-item {
    flex: 0 0 50%;
    border-left: none;
    border-bottom: 1px solid #222;
    padding: 10px 0;
  }
  .home-link-list {
    text-align: left;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .home-text-main {
    font-size: 3.5rem;
  }
  .home-feature-item {
    flex: 0 0 100%;
  }
}
/* SECTION-9  */

/* Using your defined variables exclusively */
.home-path-section {
  background-color: var(--bg-light);
  font-family: "Poppins", sans-serif;
}

/* Header Text */
.home-path-eyebrow {
  color: var(--primary-orange);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight:700;
}
.home-path-main-title {
  font-family: "Unbounded", sans-serif;
  color: var(--heading-black);
  font-size: 2.2rem;
  line-height: 1.1;
}
.home-path-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* Card General Styling */
.home-path-card {
  background: var(--color-white);
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.home-path-card.featured {
  border: 2px solid var(--heading-black);
  transform: scale(1.02); /* Pop out effect */
  z-index: 5;
}

/* Card Internal Parts */
.home-path-card-header {
  padding: 30px;
  border-bottom: 1px solid #eeeeee;
}
.bg-black {
  background-color: var(--heading-black);
  border-bottom-color: #333;
}

.home-path-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.home-path-card-title {
  font-family: "Unbounded", sans-serif;
  color: var(--primary-orange);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.home-path-transition {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 10px;
  margin-bottom: 0;
}

.home-path-card-body {
  padding: 30px;
}

/* Inner Sections */
.home-path-section-group {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.home-path-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-orange);
}

.home-path-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-gray);
  margin: 0;
}

/* List Styling with the Orange Arrow */
.home-path-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-path-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.4;
}
/* The Diagonal Arrow Bullet (exactly like the image) */
.home-path-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: 600;
}
.list-white li {
  color: #cccccc;
}

/* Footer Styling */
.home-path-card-footer {
  color: #ffffff;
}
.home-path-card-footer small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 4px;
}
.bg-orange {
  background-color: var(--primary-orange);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .home-path-card.featured {
    transform: none;
  }
  .home-path-main-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .home-path-card-header,
  .home-path-card-body {
    padding: 20px;
  }
}

/* section-10  */

.home-inv-section {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.home-inv-main-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--heading-black);
  letter-spacing: -1px;
}

/* --- Card Styling --- */
.home-inv-card {
  background-color: var(--bg-light);
  padding: 50px 40px;
  position: relative;
  height: 100%;
}

.home-inv-card.is-orange {
  background-color: var(--primary-orange);
}

/* --- THE EXACT ICON BOX (Double Layered) --- */
.home-inv-icon-wrapper {
  position: relative;
  width: 44px; /* slightly larger for offset */
  height: 44px;
  margin-bottom: 30px;
}

/* The solid black box */
.home-inv-icon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  background-color: var(--heading-black);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  z-index: 2;
}

.home-inv-icon-box img{
    height:30px;
    width:30px;
}

/* The decorative offset border behind it */
.home-inv-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--primary-orange);
  border-radius: 4px;
  z-index: 1;
}

/* Change offset color for the orange card */
.is-orange .home-inv-icon-wrapper::after {
  border-color: var(--heading-black);
}

/* --- TEXT STYLING --- */
.home-inv-card-title {
  font-family: "Unbounded", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-black);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.home-inv-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* --- THE CARD CORNER "L" SHAPES --- */

/* Top-Right Corner */
.home-inv-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border-top: 2px solid var(--primary-orange);
  border-right: 2px solid var(--primary-orange);
}

/* Bottom-Left Corner */
.home-inv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-bottom: 2px solid var(--primary-orange);
  border-left: 2px solid var(--primary-orange);
}

/* Adjust colors for orange card corners */
.is-orange::before {
  border-color: var(--heading-black) !important;
}
.is-orange::after {
  border-color: var(--heading-black) !important;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1199px) {
  .home-inv-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .home-inv-main-title {
    font-size: 2rem;
  }
  .home-inv-card {
    padding: 30px;
  }
}

/* section-12  */
/* --- 2. Flexbox Diagram Layout --- */
.altbig-wrapper {
  width: 100%;
  overflow-x: hidden; /* was auto — no longer needed once container isn't forced wide */
  padding: 40px 20px;
}
.altbig-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 100%;
  /* min-width: 1000px  <-- REMOVED, this was forcing horizontal scroll on mobile */
}

#altbig-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Flex Rows & Columns */
.altbig-middle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  width: 100%;
  z-index: 2;
  flex-wrap: wrap; /* allows graceful wrap before hard breakpoint kicks in */
}
.altbig-side-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}
.altbig-bottom-row {
  display: flex;
  flex-direction: row;
  gap: clamp(16px, 3vw, 50px);
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- 3. Center Node --- */
.altbig-center-node {
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  padding: 8px;
  background-color: var(--color-white);
  box-shadow: 0 0 35px rgba(255, 100, 4, 0.25);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}
.altbig-center-inner {
  width: clamp(150px, 20vw, 210px);
  height: clamp(150px, 20vw, 210px);
  background-color: var(--heading-black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.altbig-center-inner h3 {
  font-family: "Unbounded", sans-serif;
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  margin: 0;
  line-height: 1.2;
}

/* --- 4. Cards & Icons --- */
.altbig-card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 16px 20px;
  width: 320px;
  max-width: 100%;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  text-align: left !important;
  gap: 15px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
}
.altbig-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 2px solid #ffdec7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.altbig-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.altbig-icon-wrap.fill-icon svg {
  fill: var(--primary-orange);
  stroke: none;
}
.altbig-text-wrap {
  display: flex;
  flex-direction: column;
}
.altbig-text-wrap h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--heading-black);
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.altbig-text-wrap p {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin: 0;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Tablet / small desktop: tighten spacing, let middle-row wrap if needed */
@media (max-width: 1024px) {
  .altbig-card {
    width: 280px;
    padding: 14px 16px;
  }
  .altbig-middle-row {
    gap: 24px;
  }
}

/* Mobile: full stacked, single-column layout */
@media (max-width: 768px) {
  .altbig-wrapper {
    padding: 24px 16px;
  }
  .altbig-container {
    gap: 20px;
  }

  /* SVG connector lines are desktop-only geometry — hidden here via JS,
     but belt-and-suspenders hide via CSS too */
  #altbig-svg {
    display: none;
  }

  /* Stack the whole diagram: node-1, then side columns, then bottom row,
     with the center node re-inserted visually via 'order' */
  .altbig-middle-row {
    flex-direction: column;
    gap: 20px;
  }
  .altbig-side-col {
    width: 100%;
    align-items: center;
  }
  .altbig-center-node {
    order: -1; /* pulls the hub above the two side columns on mobile */
    margin-bottom: 4px;
  }

  .altbig-bottom-row {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 16px;
  }

  .altbig-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 400px) {
  .altbig-text-wrap h4 {
    font-size: 0.82rem;
  }
  .altbig-text-wrap p {
    font-size: 0.7rem;
  }
  .altbig-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
/* <!-- SECTION-13--> */
.authority-section13 {
  padding: 80px 20px !important;
}

/* Header Typography */
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading-black);
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.section-subtitle-wwd {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 700;
  margin-bottom: 50px;
}

/* Card Styling */
.auth-card {
  background-color: var(--color-white);
  padding: 35px 30px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Remove default border, rely on corner accents */
  border: none;
  /* Subtle shadow to lift it off the gray background */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Orange Corner Accents (Top-Left & Bottom-Right) */
.auth-card::before,
.auth-card::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
}
/* Top Left Corner */
.auth-card::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--primary-orange);
  border-left: 2px solid var(--primary-orange);
}
/* Bottom Right Corner */
.auth-card::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--primary-orange);
  border-right: 2px solid var(--primary-orange);
}

/* Card Icon Box */
.auth-icon-box {
  width: 37px;
  height: 37px;
  background-color: var(--primary-orange);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.auth-icon-box svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
  stroke: var(--color-white);
  stroke-width: 0.5;
}

/* Card Typography */
.auth-card h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading-black);
  line-height: 1.25;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.auth-card .card-theme {
  font-size: 0.75rem;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Custom Bullet List */
.auth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1; /* Pushes content to fill height evenly */
}

.auth-list li {
  position: relative;
  padding-left: 15px; /* Slightly increased padding so the arrow has room to breathe */
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Orange Arrow bullet point */
.auth-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0; /* You may need to tweak this to 1px or -1px depending on your specific font */
  color: #ff6600; /* Bright orange color */
  font-weight: bold; /* Makes the arrow a bit thicker, matching the image */
}

/* Action Button */
.btn-strategy {
  background-color: var(--primary-orange);
  color: var(--color-white);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
}
.btn-strategy:hover {
  background-color: #e55a00;
  color: var(--color-white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .authority-section {
    padding: 50px 15px;
  }
  .btn-strategy {
    width: 100%;
    text-align: center;
  }
}

/* <!-- SECTION-19--> */
/* --- 1. Variables & Base --- */

.market-auth-section {
  position: relative;
  /* 1. Try adding ../ if your CSS is in a folder like /css/style.css */
  background-image: url("../images/home/authoritybg.svg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0; /* Adjusted for compactness */
  font-family: var(--font-primary);
  color: #ffffff;
  overflow: hidden;
  z-index: 1; /* Creates a stacking context */
}

/* --- 2. Left Column Typography --- */
.ma-main-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 25px;
  color: #ffffff;
}
.ma-main-title .text-orange {
  color: var(--alt-orange);
}

.ma-main-desc {
  font-size: 1rem;
  color: var(--alt-text-gray);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 35px;
  font-weight: 400;
}

.btn-ma-discover {
  background-color: var(--alt-orange);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.btn-ma-discover:hover {
  background-color: #e05300;
  color: #ffffff;
}

/* --- 3. Glassmorphism Stats Box --- */
.ma-stats-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 60px;
}

.ma-stat-block {
  text-align: center;
  padding: 0 15px;
  position: relative;
}

/* Vertical lines between stats */
@media (min-width: 768px) {
  .ma-stat-block:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
  }
}

.ma-stat-icon {
  width: 32px;
  height: 32px;
  stroke: var(--alt-orange);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 12px;
}

.ma-stat-num {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1;
}

.ma-stat-label {
  font-size: 0.75rem;
  color: var(--alt-text-gray);
  line-height: 1.4;
  margin: 0;
}

/* --- 4. Pixel-Perfect White Cards --- */
.ma-program-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ma-card-img-box {
  position: relative;
  height: 180px;
  background-color: #1a1a1a;
}
.ma-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ma-card-icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--alt-orange);
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.ma-card-icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
}

.ma-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ma-card-title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 18px;
  display: inline-block;
  border-bottom: 3px solid #000000; /* Exact black underline from image */
  padding-bottom: 4px;
}

.ma-card-desc {
  font-size: 0.85rem;
  color: var(--alt-card-text);
  line-height: 1.5;
  margin-bottom: 25px;
}

.ma-card-hr {
  border: none;
  border-top: 1.5px dotted #cccccc;
  margin: 0 0 20px 0;
}

.ma-path-heading {
  font-family: "Unbounded", sans-serif;
  color: var(--alt-orange);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.ma-path-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}
.ma-path-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.85rem;
  color: var(--alt-card-text);
  margin-bottom: 10px;
  font-weight: 500;
}
/* Orange Chevron Bullet */
.ma-path-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--alt-orange);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.display-5{
    font-family: "Unbounded", sans-serif;
}

.btn-ma-explore {
  background-color: var(--alt-orange);
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  transition: 0.3s;
}
.btn-ma-explore:hover {
  background-color: #e05300;
  color: #ffffff;
}

/* --- 5. Responsive Stacking --- */
@media (max-width: 991.98px) {
  .ma-stats-container {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .market-auth-section {
    padding: 60px 0;
  }
  .ma-stat-block:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
/* section-20  */

.fw-extrabold-wcu {
  font-weight: 600;
  font-size:2.2rem;
}

/* ===========================
   Toggle
=========================== */
.toggle-container {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 2px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--primary-orange);
  color: #fff;
}

/* ===========================
   Header Images
=========================== */
.header-img-large {
  flex: 2;
  height: 250px;
}

.header-img-small {
  flex: 0.8;
  height: 250px;
}

.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   Cards Grid
=========================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ===========================
   Card
=========================== */
.homewho-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.homewho-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.homewho-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #111;
}

.homewho-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a4a49;
  margin: 0;
}

/* ===========================
   White Cards
=========================== */
.whiteCard {
  background: #fff;
}

/* ===========================
   Orange Spanning Card
=========================== */
.orange-span {
  grid-row: span 2;
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.orange-span h3 {
  color: #fff;
}

.orange-span p {
  color: rgba(255, 255, 255, 0.9);
}

.orange-span .span-content:first-child {
  margin-bottom: 45px;
}

/* ===========================
   Large Tablet
=========================== */
@media (max-width: 1200px) {

  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orange-span {
    grid-row: auto;
  }

}

/* ===========================
   Tablet
=========================== */
@media (max-width: 992px) {

  .header-img-large,
  .header-img-small {
    height: 200px;
  }

  .homewho-card {
    padding: 28px 24px;
  }

}

/* ===========================
   Mobile
=========================== */
@media (max-width: 768px) {

  .display-5 {
    font-size: 2.5rem;
  }

  .header-img-small {
    display: none;
  }

  .header-img-large {
    height: 220px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .orange-span {
    grid-row: auto;
  }

  .homewho-card {
    padding: 24px;
  }

}

/* ===========================
   Small Mobile
=========================== */
@media (max-width: 576px) {

  .toggle-container {
    width: 100%;
  }

  .toggle-btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .homewho-card h3 {
    font-size: 1.1rem;
  }

  .homewho-card p {
    font-size: 0.9rem;
  }

}
/* <!-- SECTION-21  -->  */


  .authority-section {
    font-family: 'Poppins', system-ui, sans-serif;
    background-color: #ffffff;
    padding: 6rem 0;
    overflow: hidden;
  }

  /* --- Headings --- */
  .auth-main-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 3.2vw, 2.2rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--auth-dark);
    margin-bottom: 1.25rem;
  }

  .auth-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--auth-gray);
    max-width: 85%;
    margin-bottom: 0;
  }

  /* --- Step Cards --- */
  .auth-step-card {
    position: relative;
    padding-top: 40px; /* space between the top line and the content */
    height: 100%;
  }

  .auth-step-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
  }

  .auth-step-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--auth-orange);
    line-height: 1;
  }

  .auth-step-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--auth-dark);
    letter-spacing: -0.01em;
    margin: 0;
  }

  .auth-step-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--auth-gray);
    margin: 0;
  }

  /* --- Connecting Lines (Desktop Only) --- */
  @media (min-width: 992px) {

    /* Horizontal line sitting above every card, starting at the card's own
       left edge. line-extend widens it so it bridges the gutter into the
       next card, giving one continuous line across a whole row. */
    .auth-step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--auth-line);
      z-index: 1;
    }

    .auth-step-card.line-extend::before {
      /* bridges across the Bootstrap gutter (gx-5 = 3rem = 48px) */
      width: calc(100% + 48px);
    }

    /* Short vertical tick dropping from the line at each card's
       top-left corner -- NOT a diamond, just a straight 1px tick */
    .auth-step-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 22px;
      background-color: var(--auth-line);
      z-index: 2;
    }

    /* Spacing between the two rows */
    .auth-row-2 {
      margin-top: 4.5rem;
    }
  }

  /* --- Mobile / Tablet Adjustments --- */
  @media (max-width: 991px) {
    .auth-step-card {
      padding-top: 24px;
      margin-bottom: 8px;
    }
    .auth-step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--auth-line);
    }
    .auth-row-2 {
      margin-top: 1.5rem;
    }
    .auth-subtitle {
      max-width: 100%;
    }
  }

  @media (max-width: 767px) {
    .auth-main-title { font-size: clamp(1.9rem, 8vw, 2.3rem); }
  }


/* SECTION-22  */
/* --- Growth Grid Styles --- */
.growth-main-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  color: var(--heading-black);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.growth-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.growth-box {
  border: 1px solid var(--primary-orange);
  background-color: rgba(255, 100, 4, 0.08); /* Light tint from image */
  padding: 18px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  flex: 0 1 auto;
  min-width: 240px;
  transition: transform 0.2s ease;
}

.growth-box:hover {
  transform: translateY(-2px);
}

/* --- Agency List Styles --- */
.agency-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.2rem);
  color: var(--heading-black);
  line-height: 1.1;
  margin-bottom: 15px;
}

.agency-subtext {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-gray);
}

.agency-list {
  display: flex;
  flex-direction: column;
}

.agency-list-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
}

.agency-list-item:last-child {
  border-bottom: none;
}

.agency-icon {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-orange);
}

.agency-item-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
  .growth-grid-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .growth-box {
    min-width: 100%;
    text-align: center;
  }

  .agency-title {
    text-align: left;
  }
}
/* cta upper insight */

/* --- CTA Banner Section --- */
.cta-banner-section {
  position: relative;
  background-image: url("../images/home/ctabg.svg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

/* Optional Overlay to ensure text readability */
.cta-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 100, 4, 0.1),
    transparent 60%
  );
  z-index: -1;
}

.cta-banner-section .container {
  position: relative;
  z-index: 2;
}

/* Typography */
.cta-main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.orange-underline {
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-orange);
  margin: 15px auto 0 auto; /* Centered on mobile */
}

@media (min-width: 992px) {
  .orange-underline {
    margin: 15px 0 0 100px;
  } /* Aligned under "Drives" like image */
}

.cta-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dfdfdf;
  font-weight: 400;
}

.vertical-divider {
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Button Component Base */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  height: 100%;
}

.btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-icon {
  width: 22px;
  height: 22px;
}
.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.cta-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Button Color Variants */
.border-orange {
  border: 1.5px solid var(--primary-orange);
  background: rgba(255, 100, 4, 0.03);
}
.border-white {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.02);
}
.bg-orange {
  background-color: var(--primary-orange);
  border: 1.5px solid var(--primary-orange);
}

.orange-text {
  color: var(--primary-orange);
}
.white-text {
  color: #fff;
}

.orange-fill {
  fill: var(--primary-orange);
}
.white-fill {
  fill: #fff;
}

.orange-stroke {
  stroke: var(--primary-orange);
  stroke-width: 2;
}
.white-stroke {
  stroke: #fff;
  stroke-width: 2;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .cta-banner-section {
    padding: 60px 0;
  }
  .btn-text {
    font-size: 0.75rem;
  }
  .btn-icon {
    width: 18px;
  }
}
#law-together-section-home {
  background-color: var(--bg-light);

}