:root {
  /* Brand Colors based on prompt and screenshot */
  --primary-blue: #041b31;
  --accent-red: #e31e24;
  --text-dark: #333333;
  --text-grey: #666666;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding-top: 100px;
  background-color: var(--primary-blue); /* Fallback */
  color: #ffffff;
}

/* Hero Wrapper with Background Image and Color Overlay */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Using a placeholder office image similar to the screenshot */
  background-image:
    linear-gradient(
      to right,
      rgba(10, 20, 35, 0.95) 0%,
      rgb(41 55 74 / 85%) 40%,
      rgb(255 255 255 / 42%) 100%
    ),
    url(../images/home-page-banner.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.logo-hgt {
  height: 180px;
}

.clr-black {
  color: #000 !important;
}
.clr-black:hover {
  color: var(--accent-red) !important;
}
/* -------------------------
   Header & Navbar Styles
   ------------------------- */

/* --- Header Appearance & Scroll Effect --- */
.custom-navbar {
  background-color: #0a1423 !important;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease;
}

.custom-navbar {
  z-index: 1030 !important;
}

.custom-navbar.scrolled {
  background-color: #0a1423;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* --- Text Styling (Normal Case) --- */
/* --- Base Desktop Styling --- */
.custom-navbar .nav-link {
  text-transform: none;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 10px 15px !important;
  position: relative;
  transition: color 0.4s ease;
  /* 🟢 Prevent text from wrapping into two lines */
  white-space: nowrap;
}

/* --- Hover & Active Underline --- */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px; /* Moved up slightly */
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: #e31e24;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.5, 0, 0, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

/* --- 🟠 SPECIFIC FIX: 1200px to 1380px (The Tight Zone) --- */
@media (max-width: 1380px) and (min-width: 1200px) {
  .navbar-nav .nav-link {
    padding: 10px 8px !important; /* Reduce horizontal gap */
    font-size: 0.92rem; /* Slightly smaller text */
  }

  .navbar-nav .nav-link::after {
    left: 8px;
    right: 8px;
  }

  .btn-custom {
    font-size: 0.85rem !important;
    padding: 10px 15px !important;
    white-space: nowrap;
  }

  /* Reduce the margin assigned to the button */
  .ms-xl-4 {
    margin-left: 1rem !important;
  }
}

/* --- 🟡 TABLET/LAPTOP FIX: Lowering the Breakpoint --- */
/* If your menu still feels too crowded at 1200px, 
   it is better to trigger the hamburger menu at 1200px 
   instead of the Bootstrap default 992px. */

@media (max-width: 1200px) {
  .navbar-expand-xl .navbar-toggler {
    display: block; /* Force hamburger earlier if needed */
  }

  /* Ensure the button looks good inside the mobile drawer */
  .navbar-nav .btn-custom {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}

/* --- CTA Button Refinement --- */
.btn-solid-red {
  background-color: #e31e24;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-solid-red:hover {
  background-color: #c4191f;
  color: white;
  transform: translateY(-1px);
  shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

/* --- Button Styling --- */
.btn-solid-red {
  background-color: #e31e24 !important;
  border: 1px solid #e31e24 !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-solid-red:hover {
  background-color: #fff !important;
  color: #e31e24 !important;
  border-color: #e31e24 !important;
}

/* --- Animated Hamburger to Cross Icon --- */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  z-index: 1100;
}

.hamburger-icon {
  width: 26px;
  height: 20px;
  position: relative;
  margin: 0 auto;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}
.hamburger-icon span:nth-child(2) {
  top: 8px;
}
.hamburger-icon span:nth-child(3) {
  top: 16px;
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
  opacity: 0;
  left: -40px;
}
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Mobile Background */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: #0a1423;
    padding: 30px;
    margin-top: 15px;
    border-radius: 8px;
  }
  /* Hide underline on mobile for cleaner vertical look */
  .navbar-nav .nav-link::after {
    display: none;
  }
}
/* -------------------------
   Buttons
   ------------------------- */
.btn-custom {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 20px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-outline-nav {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
  margin-left: 20px;
}
.btn-outline-nav:hover {
  border-color: white;
  background: white;
  color: var(--primary-blue);
}

.btn-solid-red {
  background-color: var(--accent-red);
  border: 1px solid var(--accent-red);
  color: white;
}
.btn-solid-red:hover {
  background-color: #fff;
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.btn-outline-white:hover {
  background-color: white;
  color: var(--primary-blue);
}
/* -------------------------
           Hero Content
           ------------------------- */
.hero-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-heading span {
  color: var(--accent-red);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d1d5db; /* Light grey text for readability */
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* -------------------------
           Responsive Adjustments
           ------------------------- */

@media (max-width: 1400px) {
  .hero-heading {
    font-size: 3.4rem;
  }
}

@media (max-width: 991px) {
  /* Mobile Nav Dropdown Styling */
  .hero-heading {
    font-size: 3.6rem;
  }
  .navbar-collapse {
    background-color: var(--primary-blue);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
  }
  .btn-outline-nav {
    margin-left: 5px;
    margin-top: 15px;
    width: max-content;
  }
  .navbar-nav .nav-link.active::after {
    display: none; /* Hide bottom border on mobile stack */
  }
  .logo-hgt {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 3.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .hero-buttons .btn-custom {
    width: 100%;
  }
  .logo-hgt {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  .hero-eyebrow {
    font-size: 0.95rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* -------------------------
   Core Focus Section
   ------------------------- */
.core-focus {
  background-color: #ffffff;
  color: var(--text-dark);
}

.core-focus-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.core-focus-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.core-focus-desc {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  border-left: 2px solid var(--accent-red);
  padding-left: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-text {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1; /* Ensures buttons align at the bottom if text height varies */
}

.service-link {
  font-family: var(--font-body);
  color: var(--accent-red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.service-link:hover {
  color: var(--accent-red);
  opacity: 0.7;
}

.service-link svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(
    4px
  ); /* Creates a subtle right-slide animation on hover */
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .core-focus-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .core-focus-heading {
    font-size: 2rem;
  }
  .service-card {
    margin-bottom: 1.5rem;
  }
}

/* -------------------------
   Legal Risk Section (Dark)
   ------------------------- */
.legal-risk {
  background-color: var(--primary-blue);
  color: #ffffff;
  position: relative;
  overflow: hidden; /* Contains the geometric background watermark */
}

/* Faint Geometric "A" Shape Watermark */
.legal-risk::before,
.legal-risk::after {
  content: "";
  position: absolute;
  top: -10%;
  width: 150px;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.015); /* Very faint white */
  z-index: 0;
  pointer-events: none;
}

.legal-risk::before {
  left: 50%;
  transform-origin: top left;
  transform: rotate(25deg);
}

.legal-risk::after {
  right: 50%;
  transform-origin: top right;
  transform: rotate(-25deg);
}

/* Ensure content sits above the watermark */
.position-relative.z-1 {
  z-index: 1;
}

/* Typography for this section */
.risk-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.risk-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
}

.risk-desc {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6); /* Muted text for readability */
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Dark Cards */
.risk-card {
  background-color: rgba(255, 255, 255, 0.03); /* Slightly lighter than bg */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.risk-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px); /* Subtle hover lift */
}

.risk-icon {
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.risk-icon svg {
  width: 32px;
  height: 32px;
}

.risk-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.risk-text {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Footer Note */
.risk-footer-text {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .risk-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .risk-heading {
    font-size: 2rem;
  }
  .risk-card {
    padding: 30px 20px;
  }
}

/* -------------------------
   Practice Areas Section
   ------------------------- */
.practice-areas {
  background-color: #ffffff;
}

.practice-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.practice-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* Practice Cards */
.practice-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.practice-number {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 700;
  color: #c8102e30;
  line-height: 1;
  margin-bottom: 1rem;
}

.practice-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.practice-desc {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Custom List Styling */
.practice-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-grow: 1; /* Pushes the link container to the bottom */
}

.practice-list li {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.9rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Subtle divider */
  display: flex;
  align-items: flex-start;
}

/* Remove border from last item */
.practice-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Custom Red Bullet Point */
.practice-list li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 50%;
  margin-top: 8px; /* Aligns bullet with the first line of text */
  margin-right: 12px;
  flex-shrink: 0; /* Prevents bullet from shrinking if text wraps */
}

/* Action Link */
.practice-link {
  font-family: var(--font-body);
  color: var(--accent-red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.practice-link:hover {
  color: var(--accent-red);
  opacity: 0.7;
}

.practice-link svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.practice-link:hover svg {
  transform: translateX(4px);
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .practice-heading {
    font-size: 2.5rem;
  }
  .practice-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .practice-heading {
    font-size: 2rem;
  }
  .practice-card {
    padding: 25px;
  }
  .practice-number {
    font-size: 2.5rem;
  }
}

/* -------------------------
    Fixed Services Section
   ------------------------- */
/* --- Fixed Services Section --- */
.fixed-services-section {
  padding: 100px 0;
  background-color: var(
    --primary-blue
  ); /* Matches the dark background in image */
}

.fixed-services-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #ffffff; /* White text for dark background */
  margin-bottom: 20px;
}

.fixed-services-desc {
  font-family: var(--font-body);
  color: #94a3b8; /* Muted gray text */
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
}

/* Service Item Styling */
.service-item {
  transition: transform 0.3s ease;
  padding: 10px;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon-box {
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.03); /* Subtle dark lift */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-item:hover .service-icon-box {
  border-color: #e31e24;
  box-shadow: 0 0 20px rgba(227, 30, 36, 0.2);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff; /* White text */
  font-weight: 500;
  margin-bottom: 12px;
  /* line-height: 1.2; */
}

.get-now-link {
  font-family: var(--font-body);
  color: #e31e24;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03); /* Subtle dark lift */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 4px;
}

.get-now-link:hover {
  color: #ffffff;
  background-color: #e31e24;
}

/* --- Responsive Styling --- */
@media (max-width: 991px) {
  .fixed-services-title {
    font-size: 2.5rem;
  }
  .service-icon-box {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 994px) and (max-width: 1200px) {
  .service-name {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .fixed-services-section {
    padding: 60px 0;
  }
  .fixed-services-title {
    font-size: 2rem;
  }
}

/* -------------------------
    Solution Section
   ------------------------- */

/* --- Global Fonts & Spacing --- */
.solutions-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.section-title-serif {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 25px;
}

.section-subtitle {
  max-width: 800px;
  color: #777;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Stage Navigation --- */
.stage-btn {
  border: 1px solid #f0f0f0;
  background-color: #fdfdfd;
  color: #e31e24;
  font-weight: 700;
  padding: 18px 45px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stage-btn.active,
.stage-btn:hover {
  background-color: #ffffff;
  border-color: #e31e24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* --- Service Details --- */
.service-title-serif {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #333;
}

.service-desc {
  color: #666;
  font-size: 1.05rem;
  max-width: 550px;
}

.service-icon-list {
  list-style: none;
  padding: 0;
}

.service-icon-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f8f8f8;
  color: #333;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.service-icon-list li svg {
  color: #e31e24;
  margin-right: 15px;
  font-size: 1.1rem;
}
/* --- Pricing & Outcome Card --- */
.pricing-card {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: 1px solid #e31e24; /* Red border seen in image */
  overflow: hidden;
}

.pricing-header {
  background-color: #121212; /* Deep black header */
  padding: 40px 20px;
  color: white;
}

.label-red {
  color: #e31e24; /* Matching the muted red in the image */
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 3px; /* Wide spacing like the image */
  display: block;
  margin-bottom: 15px;
}

.pricing-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}

.outcome-content {
  background-color: #ffffff;
  padding: 40px 50px;
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.outcome-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #3e5569; /* Muted blue-gray text from image */
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
}

/* Red checkmark styling */
.outcome-list li::before {
  content: "✓";
  color: #e31e24;
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 1rem;
}

.btn-discuss-case {
  display: block;
  background-color: #e31e24; /* Matches the button red */
  color: #fff !important;
  text-align: center;
  padding: 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-discuss-case:hover {
  background-color: #121212;
  letter-spacing: 3px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .section-title-serif,
  .service-title-serif {
    font-size: 2.2rem;
  }
  .stage-btn {
    padding: 12px 25px;
  }
}

@media (max-width: 767px) {
  .solutions-section {
    padding: 60px 0;
  }
  .stage-nav {
    gap: 10px;
  }
  .stage-btn {
    width: 100%;
    text-align: center;
  }
}
/* -------------------------
Retainer Section
 ------------------------- */
/* --- Retainer Section Styles --- */
.retainer-section {
  padding: 100px 0;
  background-color: var(--primary-blue);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,100 50,0 100,100" fill="rgba(255,255,255,0.02)"/></svg>');
  background-size: cover;
  color: #ffffff;
}

.retainer-eyebrow {
  color: #e31e24;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.retainer-main-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.retainer-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  font-weight: 300;
}

/* Card Styling */
.retainer-card {
  background-color: rgba(10, 25, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.retainer-card.featured {
  border: 2px solid #e31e24;
  background-color: rgba(10, 25, 45, 0.8);
  transform: scale(1.03); /* Slightly larger */
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e31e24;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 8px 15px;
  letter-spacing: 1px;
}

.retainer-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.retainer-price {
  color: #e31e24;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.list-divider-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

/* List Styling */
.retainer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.retainer-list li {
  font-size: 0.88rem;
  padding: 12px 0 12px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.retainer-list li:last-child {
  border-bottom: none;
}

.retainer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background-color: #e31e24;
  border-radius: 50%;
}

/* Button Styling */
.btn-outline-retainer {
  width: 100%;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 15px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s;
}

.btn-solid-red-retainer {
  width: 100%;
  background-color: #e31e24;
  color: #ffffff;
  padding: 15px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 0;
  border: none;
}

.btn-solid-red-retainer:hover {
  background-color: #ffffff;
  color: #e31e24;
}

.btn-outline-retainer:hover {
  background-color: #ffffff;
  color: #061527;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .retainer-card.featured {
    transform: scale(1); /* Remove scale on mobile for better stacking */
    margin: 20px 0;
  }
  .retainer-main-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .retainer-section {
    padding: 60px 0;
  }
  .retainer-main-title {
    font-size: 2rem;
  }
}

/* -------------------------
   Structured Solutions Section
   ------------------------- */

/* =============================================
  WHY CHOOSE TSL SECTION
   ============================================= */

/* --- Choose TSL Section --- */
.choose-tsl-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.choose-eyebrow {
  color: #e31e24; /* Your brand red */
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.choose-heading {
  font-family: var(--font-heading); /* Serif font for high-end feel */
  font-size: 3.5rem;
  color: #333;
  font-weight: 400;
  line-height: 1.2;
}

.choose-text {
  font-family: var(--font-body);
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 90%;
}

/* Right Side Stack Styling */
.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Spacing between boxes */
}

.feature-item {
  background-color: #f9f9f9; /* Light gray background */
  border: 1px solid #eeeeee;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #e31e24;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background-color: #fdeef0; /* Very light red/pink background */
  color: #e31e24;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 25px;
  flex-shrink: 0;
}

.feature-item p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* --- Responsive Styling --- */
@media (max-width: 991px) {
  .choose-tsl-section {
    padding: 70px 0;
  }
  .choose-heading {
    font-size: 2.8rem;
  }
  .choose-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .choose-heading {
    font-size: 2.4rem;
  }
  .feature-item {
    padding: 20px;
  }
  .feature-icon {
    margin-right: 15px;
  }
}
/* -------------------------
   Shared Geometric Background Pattern
   ------------------------- */
.cta-red,
.clients-blue {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Base structural styles for the massive 'A' frame chevron */
.cta-red::before,
.cta-red::after,
.clients-blue::before,
.clients-blue::after {
  content: "";
  position: absolute;
  width: 22vw; /* Width of the diagonal beams */
  height: 200vh; /* Extremely tall so it never runs out on scrolling */
  z-index: -1;
  pointer-events: none;
}

/* RED SECTION: Beams anchored to BOTTOM so they flow into the blue section */
.cta-red {
  background-color: var(--accent-red);
}
.cta-red::before,
.cta-red::after {
  background-color: rgba(0, 0, 0, 0.05); /* Darkens the red */
  bottom: 0;
}
.cta-red::before {
  right: 50%;
  transform-origin: bottom right;
  transform: rotate(-28deg);
}
.cta-red::after {
  left: 50%;
  transform-origin: bottom left;
  transform: rotate(28deg);
}

/* BLUE SECTION: Beams anchored to TOP so they receive the flow from the red section */
.clients-blue {
  background-color: var(--primary-blue);
}
.clients-blue::before,
.clients-blue::after {
  background-color: rgba(255, 255, 255, 0.02); /* Lightens the blue */
  top: 0;
}
.clients-blue::before {
  right: 50%;
  transform-origin: top right;
  transform: rotate(
    -28deg
  ); /* Exact same angle maintains the continuous line */
}
.clients-blue::after {
  left: 50%;
  transform-origin: top left;
  transform: rotate(28deg);
}

/* Custom generous padding class for these tall sections */
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Ensure text stays on top of the geometric pattern */
.position-relative.z-1 {
  z-index: 1;
}

/* -------------------------
   CTA Red Section Content
   ------------------------- */
.cta-heading {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
}

.cta-desc {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 650px;
}

/* -------------------------
   Clients Blue Section Content
   ------------------------- */
.clients-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.clients-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
}

.clients-desc {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Client Cards */
.client-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px 20px;
  transition: all 0.3s ease;
}

.client-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.client-icon {
  color: var(--accent-red);
  margin-bottom: 1.2rem;
}

.client-icon svg {
  width: 28px;
  height: 28px;
}

.client-text {
  font-family: var(--font-body);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .cta-heading {
    font-size: 2.8rem;
  }
  .clients-heading {
    font-size: 2.5rem;
  }
  .cta-red::before,
  .cta-red::after,
  .clients-blue::before,
  .clients-blue::after {
    width: 28vw;
  }
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 2.2rem;
  }
  .clients-heading {
    font-size: 2rem;
  }
  .client-card {
    padding: 25px 15px;
  }
  .cta-red::before,
  .cta-red::after,
  .clients-blue::before,
  .clients-blue::after {
    width: 40vw;
  }
}

/* -------------------------
   Approach Section
   ------------------------- */
.approach-section {
  background-color: #ffffff;
}

.approach-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.approach-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  font-weight: 400;
}

.approach-desc {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Feature Item Styling */
.approach-item {
  transition: transform 0.3s ease;
}
.approach-item:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
}

.approach-icon {
  color: var(--accent-red);
  margin-bottom: 1.75rem;
}

.approach-icon svg {
  width: 48px;
  height: 48px;
}

.approach-item-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach-item-text {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 5px; /* Adds slight horizontal breathing room */
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .approach-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .approach-heading {
    font-size: 2rem;
  }
}

/* =============================================
   IP & BRAND PROTECTION SECTION
   ============================================= */
.ip-protection-section {
  background: #fdfdfd;
  padding: 100px 0;
}

.ip-eyebrow {
  color: #e31e24;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.ip-heading {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 60px;
}

.ip-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Styling */
.ip-pkg-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.ip-pkg-card--featured {
  border: 1.5px solid #e31e24;
  position: relative;
}

.ip-pkg-label {
  color: #e31e24;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ip-pkg-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #222;
}

.ip-pkg-tagline {
  font-style: italic;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

/* List Styling with Red Dots */
.ip-pkg-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.ip-pkg-list li {
  font-size: 0.85rem;
  color: #444;
  padding: 8px 0 8px 18px;
  position: relative;
}

.ip-pkg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  background: #e31e24;
  border-radius: 50%;
}

/* Gray Outcome Box with Red Side Bar */
.ip-pkg-outcomes-box {
  background-color: #f8f8f8;
  padding: 20px;
  border-left: 4px solid #e31e24;
  margin-bottom: 35px;
}

.ip-pkg-outcomes-box p {
  margin: 0;
  font-size: 0.8rem;
  color: #333;
  line-height: 2;
  font-weight: 500;
}

/* Button Styling */
.ip-enquire-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border: 1.5px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-filled-red {
  background-color: #e31e24;
  border-color: #e31e24;
  color: #fff !important;
}

.ip-enquire-btn:hover {
  background-color: #000;
  color: #fff;
}

.btn-filled-red:hover {
  background-color: #c4181d;
  border-color: #c4181d;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ip-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ip-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .ip-packages-grid {
    grid-template-columns: 1fr;
  }
  .ip-pkg-card {
    padding: 30px 25px;
  }
}

/* -------------------------
   Case Studies Section
   ------------------------- */
.case-studies-section {
  background-color: #f9f9fa; /* Consistent off-white background */
}

/* Section Header Typography */
.case-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.case-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  font-weight: 400;
}

.case-desc {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Case Study Card Styling */
.case-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.case-card-img {
  width: 100%;
  height: 220px; /* Fixed height for consistent image sizes */
  object-fit: cover; /* Ensures images cover the area without distortion */
}

.case-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Key for equal height cards */
}

.case-card-category {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-card-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.case-card-text {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1; /* Pushes the link to the bottom */
  margin-bottom: 1.5rem;
}

.case-card-link {
  font-family: var(--font-body);
  color: var(--accent-red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  align-self: flex-start; /* Aligns link to the left */
  transition: opacity 0.3s ease;
}

.case-card-link:hover {
  color: var(--accent-red);
  opacity: 0.7;
}

.case-card-link svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.case-card-link:hover svg {
  transform: translateX(4px);
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .case-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .case-heading {
    font-size: 2rem;
  }
  .case-card-img {
    height: 200px;
  }
}

/* -------------------------
   Recent Insights Section
   ------------------------- */
.insights-section {
  background-color: #ffffff;
}

/* Section Header */
.insights-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.insights-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* --- Dynamic Animation --- */
.card-anim {
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Improved Buttons --- */
.btn-view-more-dynamic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  border: 1px solid var(--accent-red);
  background: transparent;
  color: var(--accent-red);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-view-more-dynamic:hover {
  background: var(--accent-red);
  color: #fff;
}
.btn-view-more-dynamic svg {
  width: 16px;
  transition: transform 0.3s ease;
}
.btn-view-more-dynamic:hover svg {
  transform: translateY(3px);
}

/* Insight Card Styling */
.insight-card {
  background-color: #f9f9fa; /* Off-white card on a white background */
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.insight-category {
  display: inline-block;
  align-self: flex-start; /* Makes the background only as wide as the text */
  background-color: rgba(200, 16, 46, 0.08); /* Faint red background */
  padding: 5px 12px;
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.insight-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.insight-text {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1; /* Pushes the link to the bottom */
  margin-bottom: 2rem;
}

.insight-link {
  font-family: var(--font-body);
  color: var(--accent-red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.insight-link:hover {
  color: var(--accent-red);
  opacity: 0.7;
}

.insight-link svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.insight-link:hover svg {
  transform: translateX(4px);
}

/* Animation for appearing cards */
.insight-item {
  display: none; /* Hidden by default, JS will show them */
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.view-all-link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  gap: 8px;
  transition: gap 0.3s;
  color: var(--accent-red) !important;
}

.view-all-link:hover {
  gap: 12px;
  color: black !important;
}

.view-all-link svg {
  width: 20px;
  height: 20px;
}

/* --- Dynamic Card UI Match --- */
.tsl-dynamic-card {
  background: #fff;
  border: 1px solid #f2f2f2;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.tsl-dynamic-card:hover {
  transform: translateY(-5px);
}

.tsl-card-img-area {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tsl-card-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Translucent Red Badge as in Image */
.tsl-card-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(227, 30, 36, 0.9); /* Your accent-red with opacity */
  color: #fff;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
}

.tsl-card-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tsl-card-date-red {
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tsl-card-title-serif {
  font-family: var(--font-heading); /* Cormorant Garamond */
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.tsl-card-excerpt-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 30px;
}

.tsl-card-btn-red {
  margin-top: auto;
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.tsl-card-btn-red:hover {
  color: #000;
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .insights-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .insights-heading {
    font-size: 2rem;
  }
}

/* -------------------------
   Get In Touch Section
   ------------------------- */
.get-in-touch-section {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Left Column Typography */
.touch-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}

.touch-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.2;
}

.touch-desc {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 450px;
}

/* Right Column Option Cards */
.touch-option-card {
  background-color: #faf9f7; /* Very light warm grey/beige */
  border-left: 3px solid var(--accent-red);
  padding: 20px 25px;
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.touch-option-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .touch-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .touch-heading {
    font-size: 2rem;
  }
}

/* -------------------------
   Footer Section
   ------------------------- */
.site-footer {
  background-color: var(--primary-blue);
  color: rgba(255, 255, 255, 0.6);
}

/* Big Footer Logo */
.footer-logo-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 3rem;
}
.footer-logo {
  position: relative;
  display: inline-block;
  text-align: center;
}
.logo-main-text {
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
}
.logo-sub-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-top: 5px;
}

/* Footer Widgets */
.footer-heading {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 350px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.social-icon svg {
  width: 16px;
}
.social-icon:hover {
  background-color: white;
  color: var(--primary-blue);
  border-color: white;
}

/* Footer Links Lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.9rem;
}
.footer-links a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ffffff;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  position: relative;
}
.newsletter-form input {
  flex-grow: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-red);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  background-color: var(--accent-red);
  border: 1px solid var(--accent-red);
  color: white;
  padding: 0 15px;
  transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
  background-color: #a80d26; /* Darker red on hover */
}
.newsletter-form button svg {
  width: 20px;
}

/* Contact Info */
.contact-info a,
.contact-info p {
  display: block;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.contact-info a:hover {
  color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.bottom-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-right: 20px !important;
  transition: color 0.3s ease;
}
.bottom-links a:hover {
  color: #ffffff;
}

/* Responsive adjustments for the footer logo */
@media (max-width: 768px) {
  .logo-main-text {
    font-size: 5rem;
  }
  .logo-sub-text {
    font-size: 0.7rem;
    letter-spacing: 8px;
  }
  .footer-bottom {
    text-align: center;
  }
}

/* -------------------------
   Page Header Banner
   ------------------------- */
.page-header-banner {
  padding: 10rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45vh;
  color: #ffffff;
  /* Using a placeholder blurred office background */
  background-image:
    linear-gradient(rgb(79 105 131 / 85%), rgba(4, 27, 49, 0.85)),
    url(../images/home-page-banner.png);
  background-size: cover;
  background-position: center;
}

.page-header-breadcrumb {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.page-header-title span {
  color: var(--accent-red);
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .page-header-banner {
    min-height: 40vh;
    padding: 5rem 0;
  }
  .page-header-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .page-header-banner {
    min-height: 35vh;
    padding: 4rem 0;
  }
  .page-header-title {
    font-size: 2.5rem;
  }
}

/* -------------------------
   Page Intro Section
   ------------------------- */
.page-intro-section {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle separator line */
}

.intro-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
}

.intro-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 400;
}

.intro-text-wrapper {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px; /* Constrains the width for optimal readability */
}

.intro-text-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 991px) {
  .intro-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .intro-heading {
    font-size: 2rem;
  }
  .intro-text-wrapper {
    font-size: 0.95rem;
  }
}
/* -------------------------
   IP Services Section
   ------------------------- */

/* ---------------------------------
   Dark Grid Services Section
   --------------------------------- */
/* --- Background & Master Text --- */
.ip-modular-grid {
  background-color: #0a1119; /* Deeper dark background */
}

.eyebrow-red {
  color: #e31e24;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.75rem;
}

.title-serif-main {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.1;
}

.accent-line-red {
  width: 60px;
  height: 4px;
  background: #e31e24;
}

/* --- The Enhanced Card --- */
.ip-card-pro {
  background-color: #151d29; /* Slightly lighter card color */
  padding: 45px 40px;
  /* height: 100%; */
  min-height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden; /* Clips the giant number and red line */
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

/* RED TOP LINE - Smooth Left to Right */
.ip-card-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e31e24;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  z-index: 5;
}

.ip-card-pro:hover::before {
  transform: scaleX(1);
}

.ip-card-pro:hover {
  background-color: #1c2635;
  transform: translateY(-5px);
}

/* MASSIVE NUMBER ON THE RIGHT - Fills empty space */
.giant-num {
  position: absolute;
  top: 4px;
  right: 15px;
  font-family: var(--font-heading);
  font-size: 6rem; /* MASSIVE FONT */
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.068); /* Extremely subtle initially */
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.ip-card-pro:hover .giant-num {
  color: rgba(204, 22, 43, 0.301); /* Glows subtle red on hover */
  transform: translate(-10px, 10px);
}

/* Icon Square */
.icon-sq {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.ip-card-pro:hover .icon-sq {
  border-color: #e31e24;
  color: #e31e24;
  background: rgba(156, 41, 54, 0.171);
}

/* Text Content */
.card-title-serif {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
  text-transform: none;
}

.card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.651);
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.btn-link-red {
  color: #e31e24;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none !important;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.btn-link-red:hover {
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .title-serif-main {
    font-size: 2.2rem;
  }
  .giant-num {
    font-size: 6rem;
    top: 10px;
    right: 10px;
  }
}
@media (min-width: 1400px) {
  .ip-card-pro {
    min-height: 100%;
  }
}
/* ================================================================
   IP DETAIL SECTIONS
   ================================================================ */
/* --- IP Master Layout --- */
.service-detail-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Alternate BG logic */
.service-detail-section:nth-of-type(even) {
  background-color: #f9f9fb;
}

/* Scaled Watermark */
.bg-watermark-num {
  position: absolute;
  top: -11px;
  left: 14px;
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(219, 66, 66, 0.171);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.feature-main-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: #0a1423;
  margin-bottom: 8px;
}

.feature-sub-italic {
  font-family: var(--font-heading);
  font-style: italic;
  color: #888;
  font-size: 1rem;
  margin-bottom: 25px;
}

.feature-description p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

.area-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a1423;
}
.area-label.text-red {
  color: #e31e24;
}

/* Timeline Stepper (Vertical Line and Dots) */
.process-timeline {
  border-left: 1.2px solid #e31e24;
  padding-left: 25px;
  margin-left: 5px;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1.5px solid #e31e24;
  border-radius: 50%;
}
.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1423;
  margin-bottom: 4px;
}

/* Deliverable Pills */
.pill-tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid #ddd9d9;
  border-radius: 50px;
  font-size: 0.82rem;
  color: #555;
  background: #fff;
}
.pill-tag::before {
  content: "•";
  color: #e31e24;
  margin-right: 8px;
  font-weight: bold;
}

/* Narrow Sticky Sidebar Card */
.feature-sticky-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 120px;
  max-width: 450px;
  margin-left: auto;
  z-index: 10;
}
.card-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: fill;
}
.needs-list {
  list-style: none;
  padding: 0;
}
.needs-list li {
  font-size: 0.9rem;
  color: #444;
  padding: 12px 0;
  border-bottom: 1px solid #f9f9f9;
  display: flex;
  gap: 12px;
}
.needs-list li svg {
  color: #e31e24;
  font-weight: bold;
}

.btn-red-cta {
  background: #e31e24;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s;
}
.btn-red-cta:hover {
  background: #0a1423;
}

/* 1. Remove Underline from Card text */
.card-wrapper-link {
  text-decoration: none !important;
  display: block; /* Makes the whole area clickable */
  color: inherit; /* Keeps your text white/grey instead of default blue */
}

.card-wrapper-link:hover {
  text-decoration: none !important;
}

/* 3. Fixed Header Offset */
/* This ensures that when you click, the section title doesn't hide behind your navbar */
.service-detail-section {
  scroll-margin-top: 100px; /* Adjust this value to match your header height */
}

/* Ensure the 'SEE DETAILS' span still looks like your previous link */
.btn-link-red {
  color: #e31e24;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .bg-watermark-num {
    display: none;
  }
  .feature-main-title {
    font-size: 2rem;
  }
  .feature-sticky-card {
    max-width: 100%;
    position: static;
    margin-top: 30px;
  }
}

/* -------------------------
   "Who This Is For" Section
   ------------------------- */
.who-for-section {
  background-color: #ffffff; /* Pure white background for this section */
}

.target-client-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
  height: 100%; /* Ensures cards in the same row have equal height */
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Custom Red Bullet Point */
.target-client-card::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-red);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0; /* Prevents bullet from shrinking if text wraps */
}

/* -------------------------
   Related Insights Section (Page Specific)
   ------------------------- */
.related-insights-section {
  /* Added a subtle top border because the section directly above it is also white */
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Full width category block variation (as seen in screenshot) */
.insight-category-full {
  display: block;
  width: 100%;
  background-color: rgba(200, 16, 46, 0.08); /* Faint red background */
  padding: 8px 12px;
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Ensuring cards that use Bootstrap's .bg-white override the default off-white */
.insight-card.bg-white {
  background-color: #ffffff !important;
}

/* Added flex margin auto logic to ensure all 'Read More' links align perfectly at the bottom regardless of text height */
.insight-link.mt-auto {
  align-self: flex-start;
  margin-top: auto;
}

/* CUSTOM MODAL  */
/* Ensure the Modal Body doesn't have its own scrollbar (prevents double scrollbar) */
#discussModal .modal-body {
  overflow: hidden !important;
}

/* Set the width for the 'Split View' on large screens */
@media (min-width: 992px) {
  #discussModal .modal-xl {
    max-width: 1060px; /* Exact width to trigger Calendly's 2-column layout */
  }
}

/* Red Scrollbar thumb inside the iframe for a premium feel */
#discussModal ::-webkit-scrollbar {
  width: 6px;
}
#discussModal ::-webkit-scrollbar-thumb {
  background: #e31e24;
  border-radius: 10px;
}

/* Adjust height for mobile devices */
@media (max-width: 767px) {
  #calendly-inline-container {
    height: 950px !important; /* Higher height needed for stacked mobile view */
  }
}

/* ========================disclaimer modal============= */
/* --- OVERLAY BLUR --- */
.tsl-blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.4);
  z-index: 9999990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.tsl-blur-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- MAIN BAR (SCROLLABLE ON MOBILE) --- */
.tsl-ack-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 40px 0;
  z-index: 9999999;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);

  /* Scroll fix for small screens */
  max-height: 95vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.tsl-ack-bar.is-open {
  transform: translateY(0);
}

/* Horizontal Accent Line */
.tsl-top-line {
  width: 100%;
  height: 2px;
  background: var(--accent-red);
}

.tsl-intro-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.tsl-read-more-trigger {
  color: var(--accent-red);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 5px;
  cursor: pointer;
}

/* --- SILKY ACCORDION ANIMATION --- */
.tsl-accordion-wrapper {
  display: grid;
  grid-template-rows: 0fr; /* Key for smooth height transition */
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tsl-accordion-wrapper.expanded {
  grid-template-rows: 1fr;
  margin-top: 20px;
}
.tsl-accordion-inner {
  overflow: hidden;
}

/* --- DIAMOND BULLETS --- */
.tsl-diamond-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tsl-diamond-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
.tsl-diamond-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--accent-red);
  transform: rotate(45deg);
}

/* --- PILL BUTTONS (RIGHT SIDE) --- */
.tsl-ack-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 40px;
}

.btn-ack-pill {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px; /* Pill Shape */
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-ack-pill.red {
  background: var(--accent-red);
  color: #fff;
}
.btn-ack-pill.red:hover {
  background: #8e1b1b;
  transform: translateY(-2px);
}
.btn-ack-pill.dark {
  background: #2d3436;
  color: #fff;
}
.btn-ack-pill.dark:hover {
  background: #000;
  transform: translateY(-2px);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
  .tsl-ack-actions {
    padding-left: 0;
    margin-top: 30px;
  }
  .tsl-ack-bar {
    padding: 30px 15px;
  }
}

body.disclaimer-active {
  overflow: hidden; /* Lock background scroll */
}

/* =========privacy-policy=============== */

/* Privacy Policy Custom Styles */
.privacy-content-section {
  color: #2f343b;
  font-family: var(--font-heading);
  line-height: 1.8;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-eyebrow {
  color: var(--accent-red, #b22222);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.privacy-section-title {
  font-family: var(--font-heading);
  color: #1a1a1a;
  font-size: 1.85rem;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.privacy-text {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #444;
}

.privacy-date-badge {
  display: inline-block;
  background: #f9f9fa;
  padding: 5px 15px;
  border-left: 3px solid var(--accent-red);
  font-size: 0.85rem;
  color: #666;
  margin-top: 20px;
}

.privacy-contact-box {
  margin-top: 60px;
  padding: 40px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

.privacy-contact-box h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.privacy-contact-box a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: 0.3s;
}

.privacy-contact-box a:hover {
  color: var(--accent-red);
}

@media (max-width: 768px) {
  .privacy-section-title {
    font-size: 1.5rem;
  }
}

/* -------insignt-page */

/* Hero Section */
.insights-hero {
  padding: 120px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45vh;
  color: #ffffff;
  /* Using a placeholder blurred office background */
  background-image:
    linear-gradient(rgb(79 105 131 / 85%), rgba(4, 27, 49, 0.85)),
    url(../images/home-page-banner.png);
  background-size: cover;
  background-position: center;
  color: white;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  display: block;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  color: var(--accent-red);
  margin: 0;
}

/* Typography */
.section-heading-serif {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-dark);
  font-weight: 700;
}
.section-sub-text {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Filters */
.filter-btn {
  font-family: var(--font-body);
  background: white;
  border: 1px solid #ddd;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  color: #444;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-btn.active {
  border-color: var(--accent-red);
  color: var(--accent-red);
}
.filter-btn:hover:not(.active) {
  border-color: #999;
}

/* Card UI */
.tsl-card {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tsl-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.tsl-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tsl-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tsl-card-badge {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tsl-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tsl-card-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 15px;
}
.tsl-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}
.tsl-card-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 25px;
}
.tsl-card-link {
  font-family: var(--font-body);
  color: var(--accent-red);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: auto;
}

/* Middle Red Banner */
.cta-red-banner {
  background-color: var(--accent-red);
  padding: 80px 0;
  color: white;
  margin: 40px 0;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 35px;
}
.btn-outline-white-cta {
  font-family: var(--font-body);
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: 0.3s;
  display: inline-block;
}
.btn-outline-white-cta:hover {
  background: #fff;
  color: var(--accent-red);
}

/* View More Button */
.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.btn-view-more-dynamic {
  font-family: var(--font-body);
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 45px;
  font-weight: 700;
  font-size: 11px;
  color: var(--text-dark);
  letter-spacing: 1.5px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-view-more-dynamic:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background-color: white;
}
