/* CSS Variables */
:root {
  --primary-orange: #ff6404;
  --heading-black: #0a0c00;
  --text-gray: #4a4a49;
  --bg-light: #f5f5f5;
  --footer-bg: #0a0c00;
  --footer-box-bg: #1b1c17;
  --footer-input-bg: #32332e;
  --footer-input-border: #464742;
  --text-muted-dark: #a3a3a3;
  --link-gray: #d1d1d1;
  --border-light: #e0e0e0;

  --color-white: #ffffff;
  --text-gray-light: #8a8a86;
  --orange-tint: #fff6f0;
  --line-gray: #e9e9e6;
  --section-bg: #f7f7f5;
  --card-white: #ffffff;
  --bg-dark-hero: #050505;
  --alt-orange: #ff5e00;
  --alt-dark: #0a0a0a;
  --alt-text-gray: #b3b3b3;
  --alt-card-text: #555555;
  --font-primary: "Poppins", sans-serif;
   --heading-black: #111111;
  --text-gray: #5a5f67;
  --line-color: #e2e4e8;
  --bg-color: #ffffff;
   --auth-orange: #ff570a;
    --auth-dark: #0f172a;
    --auth-gray: #475569;
    --auth-line-solid: #e2e8f0;
    --auth-line-dotted: #94a3b8;

  --law-font-primary: "Unbounded", sans-serif;
  --law-color-black: #141414;
  --law-color-orange: #ff6404;
  --law-color-orange-dark: #d95c14;
  --law-color-gray: #4a4a4a;
  --law-color-bg: #f4f3f1;
  --law-color-white: #ffffff;

  /* Font sizes */
  --fs-eyebrow: 12px;
  --fs-h1: 6rem;
  --fs-h2: 40px;
  --fs-card-title: 14px;
  --fs-body-lg: 18px;
  --fs-body-md: 15px;
  --fs-body-sm: 14px;
  --fs-price: 32px;
}

/* Base Setup */
body {
  background-color: var(--bg-light);
  font-family: "Poppins", sans-serif;
}

.font-unbounded {
  font-family: "Unbounded", sans-serif;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.text-black {
  color: var(--heading-black, #0a0c00);
}
.text-gray {
  color: var(--text-gray, #4a4a49);
}

.text-orange {
  color: var(--primary-orange) !important;
}

.pad-top{
    padding-top: 170px;
}


/* Header Section css starts */
.custom-navbar {
  background-color: var(--bg-light);
  padding: 20px 0;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.navbar-brand.logo {
  font-family: "Unbounded", sans-serif;
  color: var(--heading-black);
  font-size: 2.5rem;
  letter-spacing: -2px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-brand.logo .alt {
  font-weight: 700;
}
.navbar-brand.logo .big {
  font-weight: 900;
}

/* Navigation Links */
.navbar-nav .nav-link {
  color: var(--heading-black) !important;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 12px;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
}

/* Custom Caret for Dropdowns (matches 'v' and '^') */
.dropdown-toggle::after {
  display: none; /* Hide default bootstrap caret */
}
.caret-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--heading-black);
  border-bottom: 1.5px solid var(--heading-black);
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition:
    transform 0.2s ease,
    margin 0.2s ease;
  margin-bottom: 4px;
}
/* Rotate caret up when expanded */
.nav-link[aria-expanded="true"] .caret-icon {
  transform: rotate(-135deg);
  margin-bottom: -4px;
}

/* Dropdown Menu Box */
.dropdown-menu {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  margin-top: 15px; /* Spacing from header */
  min-width: 220px;
}

/* Dropdown Items */
.dropdown-item {
  color: var(--heading-black);
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 25px;
  transition: all 0.3s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: transparent;
  color: var(--primary-orange);
  padding-left: 30px; /* Slight premium indent on hover */
}

/* CTA Button */
.btn-cta {
  background-color: var(--primary-orange);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 0; /* Square edges as per screenshot */
  border: 1px solid var(--primary-orange);
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background-color: transparent;
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
  }
  .btn-cta {
    width: 100%;
    margin-top: 15px;
  }
  .dropdown-menu {
    box-shadow: none;
    margin-top: 0;
    padding-left: 15px;
  }
}

/* Header section css ends */

/* expertise-section css starts */
.expertise-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.main-heading {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-family: "Unbounded", sans-serif;
}

.main-heading-2 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-family: "Unbounded", sans-serif;
}

.body-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #555;
}

.sub-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

/* Left Column 2x2 Features Grid */
.left-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 30px;
}
.feature-icon-box {
  width: 34px;
  height: 34px;
  background-color: var(--primary-orange, #ff6404);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}
.feature-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
}

.bottom-tagline {
  font-size: 14px;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-black, #0a0c00);
}

/* Action Buttons */
.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.btn-custom {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-custom svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.btn-custom:hover svg {
  transform: translateX(4px);
}
.btn-solid-orange {
  background-color: var(--primary-orange, #ff6404);
  color: #fff;
  border: 1px solid var(--primary-orange, #ff6404);
}
.btn-solid-orange svg {
  stroke: #fff;
  fill: none;
}
.btn-solid-orange:hover {
  background-color: #e55a03;
  color: #fff;
  border-color: #e55a03;
}

.btn-outline-orange {
  background-color: transparent;
  color: var(--primary-orange, #ff6404);
  border: 1px solid rgba(255, 100, 4, 0.4);
}
.btn-outline-orange svg {
  stroke: var(--primary-orange, #ff6404);
  fill: none;
}
.btn-outline-orange:hover {
  border-color: var(--primary-orange, #ff6404);
}

.link-orange-arrow {
  color: var(--heading-black, #0a0c00);
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #ccc;
  text-decoration-thickness: 1.5px;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
.link-orange-arrow svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  stroke: var(--primary-orange, #ff6404);
  fill: none;
  text-decoration: none;
}
.link-orange-arrow:hover {
  text-decoration-color: var(--heading-black, #0a0c00);
  color: var(--heading-black, #0a0c00);
}

/* --------------------------------------
   Right Column: Equal Height Architecture 
   -------------------------------------- */
.visual-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Main Image Area stretches to fill empty space */
.main-image-area {
  position: relative;
  width: 100%;
  flex-grow: 1;
  min-height: 500px; /* Fallback for mobile */
  margin-bottom: 24px;
  overflow: visible; /* Allows the premium card to peek out horizontally */
}

/* Core Image Styling (Responsive Cover) */
.main-image-area img.bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 12px;
  z-index: 1; /* Puts image behind floating cards */
  background-color: #f3f2ec; /* Fallback color */
}

/* Floating Cards General */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.7);
  z-index: 2; /* Ensures cards float ABOVE the image */
}

/* Floating Card 1: Authority Bar Chart */
.card-authority {
  top: 35px;
  left: 35px;
  width: 250px;
}
.card-title-small {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-black, #0a0c00);
  letter-spacing: -0.2px;
}
.card-subtitle-small {
  font-size: 11px;
  color: var(--text-gray, #4a4a49);
  margin-bottom: 18px;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 65px;
  gap: 6px;
}
.bar {
  flex: 1;
  background-color: var(--primary-orange, #ff6404);
  border-radius: 3px 3px 0 0;
}
.bar:nth-child(1) {
  height: 18%;
  opacity: 0.2;
}
.bar:nth-child(2) {
  height: 30%;
  opacity: 0.35;
}
.bar:nth-child(3) {
  height: 45%;
  opacity: 0.5;
}
.bar:nth-child(4) {
  height: 60%;
  opacity: 0.65;
}
.bar:nth-child(5) {
  height: 75%;
  opacity: 0.8;
}
.bar:nth-child(6) {
  height: 88%;
  opacity: 0.9;
}
.bar:nth-child(7) {
  height: 100%;
  opacity: 1;
}

/* Floating Card 2: Premium Line Chart */
.card-premium {
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  width: 190px;
}
.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-orange, #ff6404);
  margin: 6px 0;
}
.line-chart-svg {
  width: 100%;
  height: 35px;
  margin-top: 12px;
  overflow: visible;
}

/* Floating Card 3: Process Flow */
.card-process {
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 18px 25px;
}
.process-title {
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.process-step {
  text-align: center;
  flex: 1;
}
.process-step svg {
  width: 22px;
  height: 22px;
  stroke: var(--heading-black, #0a0c00);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 6px;
}
.process-step span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-gray, #4a4a49);
}
.process-arrow {
  font-size: 12px;
  color: #a0a0a0;
  margin: 0 5px;
}

/* Bottom 3x2 Grid Cards */
.bottom-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  flex-shrink: 0;
}
.grid-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  align-items: center;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.grid-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border-color: #e5e5e5;
}
.grid-card-icon {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  stroke: var(--primary-orange, #ff6404);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.grid-card-text {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--heading-black, #0a0c00);
  line-height: 1.3;
}

/* Responsive Queries */
@media (max-width: 1199px) {
  .main-heading {
    font-size: 2.2rem;
  }
  .card-premium {
    right: 10px;
  }
  .left-features-grid {
    column-gap: 20px;
  }
}
@media (max-width: 991px) {
  .main-heading {
    font-size: 2rem;
  }
  .visual-wrapper {
    margin-top: 50px;
  }
  .main-image-area {
    min-height: 550px;
  }
  .card-premium {
    right: 15px;
  }
  .bottom-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .main-heading {
    font-size: 1.8rem;
  }
  .sub-heading {
    font-size: 1.5rem;
  }
  .left-features-grid {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .main-image-area {
    min-height: 450px;
  }
  .card-authority {
    width: 190px;
    padding: 15px;
    top: 15px;
    left: 15px;
  }
  .card-premium {
    width: 150px;
    padding: 15px;
    right: 10px;
  }
  .stat-number {
    font-size: 20px;
  }
  .card-process {
    width: 92%;
    padding: 12px;
    bottom: 15px;
  }
  .process-step svg {
    width: 18px;
    height: 18px;
  }
  .process-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .bottom-grid-cards {
    grid-template-columns: 1fr;
  }
  .btn-group-custom {
    flex-direction: column;
    align-items: stretch;
  }
  .link-orange-arrow {
    justify-content: center;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* expertise-section css ends */

/* programs-section css starts */
.programs-section {
  background-color: #fff;
  padding: 90px 0;
}

/* Typography Utilities */

/* Left Column Content */
.eyebrow-text {
  color: var(--primary-orange, #ff6404);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: block;
}

.scale-heading {
  color: var(--heading-black, #0a0c00);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.scale-desc {
  color: var(--text-gray, #4a4a49);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 95%;
}

/* Buttons & Links */
.cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-explore {
  background-color: var(--primary-orange, #ff6404);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-explore:hover {
  background-color: #e55a03;
  color: #ffffff;
}

.link-strategy {
  color: var(--heading-black, #0a0c00);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color 0.3s ease;
}
.link-strategy:hover {
  color: var(--primary-orange, #ff6404);
  text-decoration-color: var(--primary-orange, #ff6404);
}

/* Right Column: Category Headers with Line & Dot */
.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-black, #0a0c00);
  text-transform: uppercase;
  margin: 0;
}

.category-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 100, 4, 0.4); /* Faded orange line */
  position: relative;
}

.category-dot {
  position: absolute;
  right: 0;
  top: -1.5px; /* Center dot on 1px line */
  width: 4px;
  height: 4px;
  background-color: var(--primary-orange, #ff6404);
  border-radius: 50%;
}

/* Cards Grid Setup */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Individual Card Styling */
.program-card {
  background-color: #f5f5f5;
  border: 1px solid #eaeaea;
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-color: #dfdfdf;
}

.card-num {
  font-size: 26px;
  font-weight: 800;
  color: #e2e2e2; /* Very light gray */
  margin-bottom: 12px;
  line-height: 1;
}

.card-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary-orange, #ff6404);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.card-text {
  font-size: 11.5px;
  color: var(--text-gray, #4a4a49);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .scale-heading {
    font-size: 2.1rem;
  }
  .program-card {
    padding: 20px 15px;
  }
}

@media (max-width: 991px) {
  .scale-heading {
    font-size: 2.2rem;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on Tablet */
  }
  .left-content-wrapper {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .programs-section {
    padding: 60px 0;
  }
  .scale-heading {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  .programs-grid {
    grid-template-columns: 1fr; /* 1 column on Mobile */
    gap: 15px;
  }
  .category-title {
    font-size: 16px;
  }
  .cta-group {
    gap: 15px;
  }
}

/* programs-section css ends */

/* footer-section css starts */

.footer-section {
  background-color: var(--footer-bg);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* --------------------------------------
     Part 1: Newsletter Section 
     -------------------------------------- */
.newsletter-wrap {
  padding: 80px 0 70px;
  text-align: center;
}

.newsletter-heading {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
}

.newsletter-desc {
  color: var(--text-muted-dark);
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  background-color: #ffffff;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #333;
  border-radius: 2px 0 0 2px;
  outline: none;
}
.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  background-color: var(--primary-orange, #ff6404);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 2px 2px 0;
  transition: background-color 0.3s ease;
}
.newsletter-btn:hover {
  background-color: #e55a03;
}

/* --------------------------------------
     Part 2: Main Footer Content 
     -------------------------------------- */
.footer-full-divider {
  border-top: 1px solid #33342e;
  margin: 0;
  opacity: 1;
}

.footer-main-wrap {
  padding: 60px 0 40px;
}

/* Logo & Search Bar */
.footer-logo {
  font-family: "Unbounded", sans-serif;
  color: var(--primary-orange, #ff6404);
  font-size: 2.2rem;
  letter-spacing: -1px;
  text-decoration: none;
  line-height: 1;
}
.footer-logo .alt {
  font-weight: 700;
}
.footer-logo .big {
  font-weight: 900;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.search-wrap svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.search-wrap:hover {
  color: var(--primary-orange, #ff6404);
}

.footer-inner-divider {
  border-top: 1px solid #33342e;
  margin: 25px 0 40px;
  opacity: 1;
}

/* Description & Socials */
.footer-desc {
  color: var(--text-muted-dark);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  color: #ffffff;
  display: inline-flex;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-icons a:hover {
  color: var(--primary-orange, #ff6404);
  transform: translateY(-2px);
}

/* Footer Links Grid */
.footer-col-heading {
  font-family: "Unbounded", sans-serif;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: var(--link-gray);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-orange, #ff6404);
}

/* Bottom Legal Links */
.legal-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-top: 50px;
}
.legal-links a {
  color: var(--primary-orange, #ff6404);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.legal-links a:hover {
  color: #ffffff;
}

.copyright-text {
  color: var(--link-gray);
  font-size: 12px;
  text-align: right;
  margin-top: 25px;
}

/* --------------------------------------
     Part 3: Contact Form Box
     -------------------------------------- */
.contact-box {
  background-color: var(--footer-box-bg);
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-heading {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.custom-dark-input {
  background-color: var(--footer-input-bg) !important;
  border: 1px solid var(--footer-input-border) !important;
  color: #ffffff !important;
  font-size: 13px;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}
.custom-dark-input::placeholder {
  color: #888888;
  font-family: "Poppins", sans-serif;
}
.custom-dark-input:focus {
  border-color: var(--primary-orange, #ff6404) !important;
}

textarea.custom-dark-input {
  resize: none;
  min-height: 100px;
}

.btn-send {
  color: #ffffff;
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  display: inline-block;
  margin-top: 10px;
  transition:
    color 0.3s ease,
    text-decoration-color 0.3s ease;
  align-self: flex-start;
}
.btn-send:hover {
  color: var(--primary-orange, #ff6404);
  text-decoration-color: var(--primary-orange, #ff6404);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .newsletter-heading {
    font-size: 1.8rem;
  }
  .contact-box {
    margin-top: 40px;
    padding: 30px;
  }
  .legal-links {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .copyright-text {
    text-align: left;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .newsletter-btn {
    border-radius: 4px;
    padding: 15px;
  }

  .footer-col-heading {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .legal-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* footer-section css ends */

/* insights-section css starts */
.insights-section {
  background-color: #f5f5f4; /* Light background matching screenshot */
  padding: 80px 0;
  overflow: hidden;
}

/* Header Area */
.eyebrow-text {
  color: var(--primary-orange, #ff6404);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
  display: block;
}
.insights-main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-black, #0a0c00);
  letter-spacing: -1.5px;
  margin-bottom: 15px;
  line-height: 1;
}
.insights-desc {
  font-size: 14px;
  color: var(--text-gray, #4a4a49);
  line-height: 1.6;
  max-width: 90%;
}

/* Filter Buttons */
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}
.filter-btn {
  background-color: transparent;
  color: var(--text-gray, #4a4a49);
  border: 1px solid #dcdcdc;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--primary-orange, #ff6404);
  color: var(--heading-black, #0a0c00);
}
.filter-btn.active {
  background-color: var(--primary-orange, #ff6404);
  color: #ffffff;
  border-color: var(--primary-orange, #ff6404);
}

/* Featured Articles Section */
.section-subheading {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading-black, #0a0c00);
  margin: 0;
}

.btn-explore-orange {
  background-color: var(--primary-orange, #ff6404);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-explore-orange:hover {
  background-color: #e55a03;
  color: #ffffff;
}

/* Article Cards (Top 3) */
.article-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.article-img-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #e0e0e0;
  aspect-ratio: 2 / 1;
}
.article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-img-wrap img {
  transform: scale(1.05);
}
.article-tag {
  color: var(--primary-orange, #ff6404);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.article-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-black, #0a0c00);
  line-height: 1.4;
  margin-bottom: 10px;
  text-decoration: none;
}
.article-desc {
  font-size: 13px;
  color: var(--text-gray, #4a4a49);
  line-height: 1.6;
  margin: 0;
}

/* Divider */
.insights-divider {
  border-top: 1px solid #dcdcdc;
  margin: 40px 0;
  opacity: 1;
}

/* Browse by Category (Bottom Cards) */
.category-box {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.category-icon-box {
  width: 30px;
  height: 30px;
  background-color: var(--primary-orange, #ff6404);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-bottom: 20px;
}
.category-icon-box svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}
.category-box-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-black, #0a0c00);
  margin-bottom: 20px;
}

/* List Styling inside Bottom Cards */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.category-list li {
  border-top: 1px solid #f0f0f0;
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.category-list li:first-child {
  border-top: 1px solid #eaeaea;
} /* Match screenshot top border line */

.list-chevron {
  color: var(--primary-orange, #ff6404);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4; /* Aligns chevron with text */
  flex-shrink: 0;
}
.list-text {
  font-size: 12px;
  color: var(--text-gray, #4a4a49);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.list-text:hover {
  color: var(--primary-orange, #ff6404);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .insights-main-heading {
    font-size: 2.3rem;
  }
  .filter-group {
    margin-top: 30px;
  }
  .bottom-grid {
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .insights-main-heading {
    font-size: 2.1rem;
  }
  .d-flex-mobile-stack {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px;
  }
}
/* insights-section css ends */

/* =========================================
   1. YOUR GROWTH PATH SECTION
   ========================================= */
.growth-path-section {
  background-color: #f5f5f4;
  padding: 100px 0;
}
.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}
.section-header-centered .eyebrow-text {
  margin-bottom: 15px;
}
.tier-card {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.tier-card.dark-tier {
  background-color: #0e0e0e; /* Extremely dark gray/black */
  color: #ffffff;
  border-color: #0e0e0e;
}
.tier-card-body {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tier-header-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.tier-icon-box {
  width: 45px;
  height: 45px;
  background-color: var(--primary-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier-icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}
.tier-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1.2;
  margin: 0;
}
.tier-card.dark-tier .tier-title {
  color: #ffffff;
}
.tier-subtitle {
  font-size: 12.5px;
  color: var(--text-gray);
  margin-bottom: 25px;
}
.tier-card.dark-tier .tier-subtitle {
  color: #d1d1d1;
}
.tier-divider {
  border-top: 1px solid #eaeaea;
  margin: 0 -30px 25px -30px;
}
.tier-card.dark-tier .tier-divider {
  border-top-color: #2a2a2a;
}
.tier-mini-heading {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tier-desc-text {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}
.tier-card.dark-tier .tier-desc-text {
  color: #e0e0e0;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.5;
}
.tier-card.dark-tier .tier-list li {
  color: #e0e0e0;
}
.tier-list-icon {
  color: var(--primary-orange);
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 3px;
}
.tier-list-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}
.tier-footer {
  display: flex;
  background-color: #0a0c00;
  color: #ffffff;
  padding: 20px 30px;
  margin-top: auto;
}
.tier-card.dark-tier .tier-footer {
  background-color: var(--primary-orange);
}
.footer-col {
  flex: 1;
}
.footer-col:first-child {
  flex: 0.4;
  padding-right: 15px;
}
.footer-col:last-child {
  flex: 0.6;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.tier-card.dark-tier .footer-col:last-child {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.footer-label {
  font-size: 9px;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 5px;
  display: block;
}
.tier-card.dark-tier .footer-label {
  color: rgba(255, 255, 255, 0.8);
}
.footer-value {
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}
.footer-value-large {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* =========================================
   2. SIMPLE PROGRAM-SELECTION GUIDE
   ========================================= */
.selection-guide-section {
  background-color: #ffffff;
  padding: 100px 0;
}
.guide-card {
  background-color: #fcfcfc;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.guide-img-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  aspect-ratio: 16/10;
}
.guide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-text {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 30px;
}
.btn-guide {
  background-color: var(--primary-orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: background-color 0.3s ease;
  margin-top: auto;
}
.btn-guide:hover {
  background-color: #e55a03;
  color: #ffffff;
}

/* =========================================
   3. FAQ SECTION
   ========================================= */
.faq-section {
  background-color: #f5f5f5;
  padding: 100px 0;
}
.faq-left-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-black);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
/* Overriding Bootstrap Accordion */
.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eaeaea;
  border-radius: 0 !important;
  background-color: #f5f5f5;
}
.custom-accordion .accordion-button {
  background-color: transparent !important;
  color: var(--heading-black);
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  padding: 25px 0;
  box-shadow: none !important;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-orange);
}
.custom-accordion .accordion-button::after {
  filter: grayscale(1);
  transition: all 0.3s ease;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: none; /* Keeps it colored if SVG supports it, or rely on rotation */
}
.custom-accordion .accordion-body {
  padding: 0 0 25px 0;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =========================================
   4. FIXED-FEE ENGAGEMENT SECTION
   ========================================= */
.fee-section {
  background-color: #fff;
  padding: 100px 0;
}
.fee-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 50px 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fee-left-icon {
  width: 24px;
  height: 24px;
  margin-bottom: auto; /* Pushes text to bottom */
}
.fee-left-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-orange);
}
.fee-large-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-black);
  line-height: 1.1;
  letter-spacing: -1.5px;
  /*margin-top: 40px;*/
}
.fee-request-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}
.fee-black-icon {
  width: 32px;
  height: 32px;
  background-color: var(--heading-black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fee-black-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-orange);
  border-radius: 4px;
  z-index: 0;
}
.fee-black-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  z-index: 1;
}
.fee-request-text {
  font-size: 15px;
  color: var(--text-gray);
}
.fee-price {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-black);
  letter-spacing: -2px;
  margin-bottom: 25px;
}
.fee-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 35px;
}
.btn-launch {
  background-color: var(--primary-orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: background-color 0.3s ease;
}
.btn-launch:hover {
  background-color: #e55a03;
  color: #ffffff;
}

/* =========================================
   5. WHAT CHANGES AT THE END SECTION
   ========================================= */
.changes-section {
  background-color: #ffffff;
  padding: 100px 0;
}
.changes-grid-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.change-step {
  flex: 1;
  text-align: center;
  padding: 0 15px;
}
.change-step-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--heading-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.change-step-desc {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
}
.change-arrow-wrap {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.change-arrow-wrap svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.expected-transformation {
  text-align: center;
  font-size: 13px;
  color: var(--text-gray);
}
.expected-transformation span {
  font-weight: 800;
  color: var(--heading-black);
}

/* Multi-Section Responsive Queries */
@media (max-width: 1199px) {
  .fee-price {
    font-size: 2.4rem;
  }
  .fee-large-title {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 991px) {
  .growth-path-section,
  .selection-guide-section,
  .faq-section,
  .fee-section,
  .changes-section {
    padding: 70px 0;
  }
  .faq-left-heading {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }
  .fee-card {
    padding: 35px 25px;
  }
  .change-arrow-wrap {
    display: none;
  } /* Hide arrows on tablet/mobile */
  .changes-grid-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .fee-price {
    font-size: 2.1rem;
  }
  .fee-large-title {
    font-size: 1rem !mportant;
    margin-top: 20px;
  }
  .tier-card {
    margin-bottom: 20px;
  }
  .guide-card {
    margin-bottom: 20px;
  }
}

/* =========================================
   SHARED: OFFSET SQUARE ICON COMPONENT
   ========================================= */
.icon-offset-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
}
.icon-offset-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--primary-orange);
  border-radius: 4px;
  z-index: 0;
  background-color: var(--primary-orange);
}
.icon-offset-bg-2 {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  /*border: 1.5px solid #000;*/
  /*border-radius: 4px;*/
  z-index: 0;
  /*background-color: #fff;*/
}
.icon-offset-bg-3 {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1.5px solid #000;
  border-radius: 4px;
  z-index: 0;
  background-color: #0A0C00;
}

.icon-offset-main {
  position: relative;
  background-color: var(--heading-black);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 2px solid #ffffff;
}

.icon-offset-main svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

.icon-offset-main-2 {
  position: relative;
  background-color: var(--primary-orange);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 2px solid #fff;
}

.icon-offset-main-2 svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

/* =========================================
   6. UNCLEAR MARKET POSITION SECTION
   ========================================= */
.unclear-position-section {
  background-color: #ffffff;
  padding: 200px 0 100px 0;
}
.unclear-position-section-2 {
  background-color: #ffffff;
  padding: 100px 0;
}
.unclear-right-text {
  border-left: 2px solid var(--primary-orange);
  padding-left: 30px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}
.unclear-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
.unclear-card {
  background-color: #f5f5f4;
  border-radius: 8px;
  padding: 35px 30px;
  border: 1px solid #eaeaea;
}
.unclear-card-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-black);
  margin-bottom: 15px;
}
.unclear-card-desc {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}
.unclear-bottom-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}
.ubc-col {
  padding: 35px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ubc-col-middle {
  flex: 1;
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
}
.ubc-col-right {
  flex: 1;
  background-color: #f5f5f4;
  border-left: 1px solid #eaeaea;
}

/* =========================================
   7. WHO THE PROGRAM IS FOR SECTION
   ========================================= */
.who-is-for-section {
  background-color: #ffffff;
  padding: 100px 0;
}
.who-top-box {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 25px;
}

.who-appropriate-box {
  background-color: #f5f5f4;
  border-radius: 6px;
  padding: 35px;
  height: 100%;
}
.who-appropriate-box .unclear-card-title {
  margin-top: 15px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 30px 25px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.who-number {
  font-family: "Unbounded", sans-serif;
  color: var(--primary-orange);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.who-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}
.who-img-card {
  padding: 0;
  border: none;
  overflow: hidden;
  border-radius: 8px;
}
.who-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   8. EIGHT DELIVERABLES SECTION
   ========================================= */
.deliverables-section {
  background-color: #f5f5f4;
  padding: 100px 0;
}
.deliv-subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.deliv-subnav svg {
  width: 20px;
  fill: none;
  stroke: var(--text-gray);
  stroke-width: 1.5;
}
.deliverable-item {
  margin-bottom: 50px;
}
.deliverable-item:last-child {
  margin-bottom: 0;
}
.deliv-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--heading-black);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.deliv-desc {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}
.deliv-center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  min-height: 700px; /* Ensures tall image spans properly */
}

/* =========================================
   9. HOW ENGAGEMENT WORKS SECTION
   ========================================= */
.engagement-section {
  background-color: #f5f5f4;
  padding: 100px 0;
}
.engage-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
}
.engage-acc-item {
  border-bottom: 1px solid #eaeaea;
  padding: 25px 30px;
}
.engage-acc-item:last-child {
  border-bottom: none;
}
.engage-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.engage-acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.engage-step-title {
  font-size: 12px;
  font-weight: 900;
  color: var(--heading-black);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}
.engage-caret {
  font-size: 12px;
  font-weight: 900;
  color: var(--heading-black);
}
.engage-acc-body {
  padding: 15px 0 0 55px; /* Aligns text with the title, bypassing icon */
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
}
.engage-text-large {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--heading-black);
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.engage-week-block {
  margin-bottom: 35px;
}
.engage-week-block:last-child {
  margin-bottom: 0;
}
.engage-week-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.engage-week-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1199px) {
  .unclear-bottom-card {
    flex-direction: column;
  }
  .ubc-col-right {
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
  .deliv-center-img {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .unclear-position-section,
  .unclear-position-section-2,
  .who-is-for-section,
  .deliverables-section,
  .engagement-section {
    padding: 0px !important;
  }
  .unclear-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .unclear-bottom-card {
    margin-top: 20px;
  }
  .who-top-box {
    padding: 25px;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engage-text-large {
    font-size: 2.2rem;
  }
  .deliv-center-img {
    margin: 40px 0;
    height: 500px;
  }
}

@media (max-width: 767px) {
  .unclear-cards-grid {
    grid-template-columns: 1fr;
  }
  .unclear-right-text {
    margin-top: 25px;
    border-left: none;
    border-top: 2px solid var(--primary-orange);
    padding-left: 0;
    padding-top: 20px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .engage-acc-body {
    padding-left: 0;
    margin-top: 15px;
  }
}

/* =========================================
   10. THREE ENGINES (PLANS) SECTION
   ========================================= */

.engines-section {
  background-color: var(--section-bg);
  padding: 96px 0 72px;
  position: relative;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== TOP ROW ===================== */
.engines-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.eyebrow-text {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.top-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.flow-steps-container {
  display: flex;
  align-items: center;
  gap: 0;
  /* background: #f4f4f2; */
  /* border: 1px solid #ececea; */
  /* border-radius: 14px; */
  padding: 14px 22px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.flow-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e2e2df;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.flow-icon-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary-orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flow-text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}
.flow-arrow-svg {
  width: 52px;
  height: 10px;
  margin: 0 14px;
  flex-shrink: 0;
  stroke: var(--primary-orange);
  fill: none;
}

.bg-sweeping-arrow {
  position: absolute;
  top: -135px;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 0;
  pointer-events: none;
}
.bg-sweeping-arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

/* ===================== CARDS ROW ===================== */
.engines-cards-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end; /* bottoms all align; only the tops stagger */
  gap: 24px;
  margin-top: 30px; /* room for the arrow's arc above the tallest card */
}
.engine-card-col {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Height tiers: Card 01 shortest, 02 a little taller, 03 tallest.
     Because align-items is flex-end, all three still share one baseline. */
.tier-1 .engine-card {
  min-height: 560px;
}
.tier-2 .engine-card {
  min-height: 605px;
}
.tier-3 .engine-card {
  min-height: 650px;
}

.engine-card {
  background: var(--card-white);
  border-radius: 16px;
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.engine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-theme-orange {
  border: 1.5px solid var(--primary-orange);
}
.card-theme-black {
  border: 1px solid var(--heading-black);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

/* header */
.card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.card-num-box {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.bg-orange {
  background: var(--primary-orange);
}
.bg-black {
  background: var(--heading-black);
}
.engine-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--heading-black);
  line-height: 1.25;
  margin: 2px 0 2px;
  letter-spacing: -0.3px;
}
.engine-title-sub {
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-orange);
}
.card-theme-black .engine-title-sub {
  color: var(--text-gray);
}

/* highlight badge */
.highlight-badge {
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 26px;
}
.badge-orange {
  background: var(--orange-tint);
  color: var(--primary-orange);
}
.badge-gray {
  background: #f4f4f2;
  color: var(--heading-black);
}

/* info grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}
.info-heading {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--heading-black);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
}
.info-heading svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--primary-orange);
  stroke-width: 2;
}
.card-theme-black .info-heading svg {
  stroke: var(--heading-black);
}
.info-text {
  font-size: 11.5px;
  color: var(--text-gray);
  line-height: 1.55;
  margin: 0;
}

/* deliverables */
.deliverables-heading {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary-orange);
  margin: 0 0 14px;
}
.card-theme-black .deliverables-heading {
  color: var(--heading-black);
}
.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 11px;
  column-gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text-gray);
  line-height: 1.4;
}
.deliv-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.deliv-check circle {
  fill: var(--primary-orange);
}
.card-theme-black .deliv-check circle {
  fill: var(--heading-black);
}
.deliv-check path {
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* footer */
.card-footer-band {
  margin: auto -28px 0;
  padding: 18px 28px;
  border-top: 1px solid var(--line-gray);
  background: var(--orange-tint);
  border-radius: 0 0 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.card-theme-black .card-footer-band {
  background: #f4f4f2;
}
.footer-stat-col {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.footer-stat-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--heading-black);
  stroke-width: 1.6;
}
.footer-stat-icon.colored svg {
  stroke: var(--primary-orange);
}
.stat-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #a8a8a4;
  display: block;
  margin-bottom: 3px;
}
.stat-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--heading-black);
  margin: 0;
  line-height: 1.3;
}
.stat-sub {
  font-size: 9px;
  color: #a8a8a4;
  display: block;
  margin-top: 1px;
}

/* ===================== BOTTOM BANNER ===================== */
.engines-bottom-banner {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 12px;
  padding: 20px 28px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.banner-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange-tint);
  border: 1.5px solid var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--primary-orange);
  stroke-width: 1.8;
}
.banner-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--heading-black);
  margin: 0 0 3px;
}
.banner-desc {
  font-size: 12.5px;
  color: var(--primary-orange);
  margin: 0;
  font-weight: 500;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.btn-custom:hover {
  opacity: 0.88;
}
.btn-solid-orange {
  background: var(--primary-orange);
  color: #fff;
}
.btn-outline-orange {
  background: #fff;
  border: 1px solid var(--primary-orange);
  color: var(--primary-orange);
}
.link-orange-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-orange-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--heading-black);
  stroke-width: 2;
  fill: none;
}

@media (max-width: 1199px) {
  .engine-card {
    padding: 28px 24px 0;
  }
  .card-footer-band {
    margin: auto -24px 0;
    padding: 18px 24px;
  }
  .flow-arrow-svg {
    width: 36px;
    margin: 0 8px;
  }
}

/* Tablets (991px and below) */
@media (max-width: 991px) {
  .engines-section {
    padding: 80px 0 60px;
  }
  .engines-top-row {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .flow-steps-container {
    margin-top: 0;
  }
  /* Hide the complex background arrow when cards stack vertically */
  .bg-sweeping-arrow {
    display: none;
  }
  /* Stack the cards vertically */
  .engines-cards-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
    gap: 32px;
  }
  /* Remove artificial heights since they are stacked now */
  .tier-1 .engine-card,
  .tier-2 .engine-card,
  .tier-3 .engine-card {
    min-height: auto;
  }

  /* The cards are full width here, so 2-column lists still look great */
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .deliverables-list {
    grid-template-columns: 1fr 1fr;
  }

  .engines-bottom-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
  }
}

/* Large Mobile Phones (767px and below) */
@media (max-width: 767px) {
  .engines-section {
    padding: 60px 0 40px;
  }

  /* Transform steps into a clean vertical list */
  .flow-steps-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  /* Hide horizontal arrows since steps are now vertical */
  .flow-arrow-svg {
    display: none;
  }
  /* Full-width block buttons for better mobile tap targets */
  .banner-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .banner-actions .btn-custom {
    width: 100%;
  }
  .banner-actions .link-orange-arrow {
    justify-content: center;
    margin-top: 8px;
  }
}

/* Small Mobile Phones (575px and below) */
@media (max-width: 575px) {
  .engine-card {
    padding: 24px 20px 0;
  }
  /* Shift inner grids to single columns */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .deliverables-list {
    grid-template-columns: 1fr;
  }
  /* Stack the pricing and timeline footer */
  .card-footer-band {
    margin: auto -20px 0;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .banner-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/*Privacy policy page css starts*/

.privacy-page {
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            line-height: 1.8;
            color: #475569; /* Soft slate charcoal */
            font-size: 0.975rem;
        }

        .privacy-page h1,
        .privacy-page h2,
        .privacy-page h3,
        .privacy-page h4,
        .privacy-page h5 {
            font-family: "Poppins", sans-serif;
            color: #0f172a;
            font-weight: 700;
        }

        /* Hero / CTA Section Adjustments */
        .build-authority-cta {
            padding: 5rem 0;
            background-color: #ffffff;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 3rem;
        }

        .build-cta-title {
            font-size: 2.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .build-cta-subtitle {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Document Card Container */
        .privacy-page .legal-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 3.5rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 10px 15px -3px rgba(0, 0, 0, 0.02);
        }

        /* Document Header inside Card */
        .doc-header-block {
            border-bottom: 1px solid #edf2f7;
            padding-bottom: 1.75rem;
            margin-bottom: 1.25rem;
        }

        .privacy-page h3.terms-section-heading {
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 1.25rem;
            color: #0f172a;
        }

        /* Section Divider */
        
        .terms-section {
            padding-bottom: 1rem;
                margin-bottom: 0.5rem;
            border-bottom: 1px solid #f1f5f9;
        }

        .terms-section:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        /* List Items Reset & Styling */
        .privacy-page .legal-card ul {
            list-style: none !important;
            padding-left: 0 !important;
            margin-bottom: 1.5rem;
        }

        .privacy-page .legal-card ul li {
            list-style-type: none !important;
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            color: #475569;
        }

        /* Custom singular color bullets */
        .privacy-page .legal-card ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: -1px;
            color: #ff4d00;
            font-size: 1.15rem;
            font-weight: bold;
        }

        /* Link Customizations */
        .privacy-page a, 
        .privacy-page .terms-link {
            color: #ff4d00;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.15s ease-in-out;
        }

        .privacy-page a:hover, 
        .privacy-page .terms-link:hover {
            color: #d93d00;
            text-decoration: underline;
        }

        /* Badge design */
        .badge-policy {
            background-color: rgba(255, 77, 0, 0.08);
            color: #ff4d00;
            font-weight: 600;
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Dynamic contact display */
        .contact-callout {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-left: 3px solid #ff4d00;
            padding: 1.5rem;
            border-radius: 6px;
            margin-top: 1.5rem;
        }

        /* Responsiveness spacing */
        @media (max-width: 991.98px) {
            .build-cta-title {
                font-size: 2.25rem;
            }
            .privacy-page .legal-card {
                padding: 2.5rem 1.5rem;
            }
        }
        
/*Privacy policy page css ends*/

