*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Global Styles --- */
html,
body{
    width:100vw;
     overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  
}

/* --- Brand Colors --- */
:root {
  --brand-red: #cf050a;
  --brand-red-hover: #b50f0f;
  --brand-dark-blue: #071324;
  --navy-blue: #013368;
  --bg-light: #eef2f6;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --stripe-bg: #eef1f6;
  --card-white: #ffffff;
  --success-green: #16a34a;

  --bg-light: #f1f4f8;
  --card-text: #4b5563;

  --light-pink: #fce8e8;
  --light-blue: #cbd5e0;

  --light-bg: #f2f5f9;

  --brand-navy: #003366; /* The specific blue from your headings */
  --text-muted: #333333;

  --text-color: #333333;
  --muted-color: #555555;

  --partner-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  --text-muted: #6c757d;
  --bg-gray-btn: #dae1e7;
  --gold-header: #f8f1de;

  --footer-bg: #ebf1f6;
  --footer-blue: #072651;
  --footer-red: #da1b1b;

  --text-color: #333333;

  --icon-bg: #fce8e8;
  --faq-bg: #f8fbfd;

  --brand-green: #16a34a;
  --form-input-bg: #eff3f6;

  --brand-green: #16a34a;
  --card-bg-light: #eff3f6;

   --policy-navy: #003366;
    --policy-green: #28a745;
    --policy-text: #333333;
    --policy-divider: #e0e0e0;
}

/* --- Typography Helpers --- */
.text-white {
  color: #ffffff !important;
}

/* --- Navbar Styles --- */
.custom-navbar {
  background: linear-gradient(
    to bottom,
    rgba(7, 19, 36, 0.9) 0%,
    rgba(7, 19, 36, 0) 100%
  );
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo {
  max-width: 200px;
}

.brand-top {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-red {
  color: var(--brand-red);
}
.brand-white {
  color: #ffffff;
}

.brand-bottom {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.nav-link {
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red) !important;
}

.nav-btn {
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-outline-light:hover {
  color: var(--brand-dark-blue);
}

.btn-red {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: white;
}

.btn-red:hover {
  background-color: var(--brand-red-hover);
  border-color: var(--brand-red-hover);
}

/* --- Hero Section Styles --- */
.hero-section {
  min-height: 100vh;
  position: relative;
  background-image: url("../images/hero/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero-section::after {
  content: "";
  background-image: url("../images/hero/3.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 28%;
  width: 100%;
  height: 100%;
}
/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(7, 24, 46, 0.95) 0%,
    rgba(7, 24, 46, 0.85) 45%,
    rgba(7, 24, 46, 0.3) 100%
  );
  z-index: 0;
} */

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-title {
  font-weight: 300;
  line-height: 1.25;
  font-size: 40px;
}

.hero-btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-description {
  margin-top: 50px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
  max-width: 90%;
}

/* --- Services List Styles --- */
.services-wrapper {
  position: relative;
}

.curved-arrow {
  position: absolute;
  left: -40px;
  top: -10px;
  width: 70px;
  height: 70px;
  z-index: 5;
}

.service-card {
  background-color: #ffffff;
  cursor: pointer;
  padding: 10px 15px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 2px solid transparent;
  border-radius: 20px;
}

.service-card span {
  color: var(--brand-dark-blue);
  font-size: 0.95rem;
}

.icon-box {
  width: 38px;
  height: 38px;
  background-color: #eef2f6;
  color: var(--brand-dark-blue);
  font-size: 1.1rem;
}

/* hover Service Card Highlight */

.service-card:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  background-color: #fce8e8;
}

.service-card:hover span {
  color: var(--brand-red);
}

.service-card:hover .icon-box {
  background-color: var(--brand-red);
  color: #ffffff;
}

.business-model-section {
  background-color: var(--light-bg);
  min-height: 100vh;
}

/* --- Top Subtitle --- */
.top-subtitle {
  font-size: 1.15rem;
  color: #52525b;
  font-weight: 400;
}

/* =========================================
   Left Column: Pricing Card
========================================= */
.pricing-card {
  /* Accurately replicates the dark blue-to-olive radial gradient */
  background: radial-gradient(
    circle at bottom left,
    #69741a 0%,
    #081d36 45%,
    #030c18 100%
  );
  border-radius: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  overflow: hidden; /* Contains the image so it doesn't break rounded corners */
}

.pricing-content {
  position: relative;
  z-index: 3; /* Keep text above everything */
}

.pricing-title {
  color: #ffffff;
  font-size: 35px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.check-icon {
  color: #16a34a; /* Success Green */
  font-size: 1.25rem;
}

/* Delivery Courier Image */
.courier-image {
  position: absolute;
  bottom: 210px; /* Positions exactly behind the white card */
  right: 5%;
  width: 250px;
  z-index: 1; /* Below the white billing card */
}

/* Bottom White Overlapping Card */
.billing-logic-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 10rem;
  position: relative;
  z-index: 2;
}

.billing-logic-title {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.billing-logic-text {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================
   Right Column: Features Section
========================================= */
.growth-label {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.model-main-title {
  color: var(--navy-blue);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 80%;
}

.highlight-text {
  font-weight: 800;
  font-style: italic;
  color: var(--navy-blue);
}

.model-description {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 95%;
}

/* 2x2 Feature Grid Cards */
.feature-box {
  border-radius: 1.75rem;
  padding: 1.79rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

.feature-title {
  color: var(--navy-blue);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: #000;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================
   Section & Background Shapes
========================================= */
.impact-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 1rem;
  z-index: 1;
}

/* Recreates the light gray background with curved bottom edges seen in the design */
.impact-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%; /* Covers the top portion down to the middle of the cards */
  background-color: var(--bg-light-gray);
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  z-index: -1;
}

/* =========================================
   Dark Blue Banner
========================================= */
.blue-banner {
  background-color: var(--navy-blue);
  border-radius: 2.5rem;
  /* Extra bottom padding creates the space for the cards to overlap */
  padding: 4.5rem 4rem 9rem 4rem;
  color: #ffffff;
}

.impact-label {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.impact-heading {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0;
}

/* Faint vertical line separating title and description */
.vertical-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.25);
}

.impact-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #f3f4f6;
  font-weight: 400;
}

/* =========================================
   Overlapping Stat Cards
========================================= */
.cards-row {
  margin-top: -6.5rem; /* Pulls the cards up over the dark blue box */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.impact-card {
  background-color: #ffffff;
  border-radius: 1.75rem;
  padding: 3rem 2.5rem;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

.stat-value {
  /* font-family: 'Impact', 'Arial Black', sans-serif; */
  color: var(--brand-red);
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  /* letter-spacing: 1px; */

  transform: scaleY(1.1);
  transform-origin: bottom left;
}

.card-title {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 991.98px) {
  .blue-banner {
    padding: 3.5rem 2.5rem 8rem 2.5rem;
  }

  .cards-row {
    margin-top: -5.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .impact-heading {
    font-size: 2.15rem;
  }
}

@media (max-width: 767.98px) {
  .blue-banner {
    text-align: center;
    padding: 3rem 1.5rem 7rem 1.5rem;
  }

  .impact-bg-shape {
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }

  .impact-description {
    font-size: 1rem;
  }

  .stat-value {
    font-size: 4rem;
    transform-origin: bottom center;
  }
}

/* =========================================
   Left Column Typography & Arrow
========================================= */
.content-column {
  padding-right: 3rem;
}

.strategic-label {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.main-heading {
  color: var(--navy-blue);
  font-size: 35px;
  font-weight: 300; /* Thin weight for "The Advantage" */
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.highlight-word {
  font-weight: 800;
  font-style: italic;
  color: var(--navy-blue);
}

.description-text {
  color: var(--navy-blue);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

.arrow-container {
  position: absolute;
  top: 32%;
  right: -25px; /* Pulls the arrow towards the right card */
  z-index: 10;
}

/* =========================================
   Right Column: Table Card
========================================= */
.table-card {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04) !important; /* Soft, large shadow */
}

/* Ensures custom styling works on small screens with scroll */
.table-responsive-custom {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* =========================================
   Custom Comparison Table Layout
========================================= */
.comparison-table {
  width: 100%;
  min-width: 700px; /* Prevents columns from squishing too much */
  border-collapse: separate; /* CRITICAL: Allows border-radius on cells */
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.5rem;
  vertical-align: middle;
  border: none;
  font-size: 15px;
}

/* --- Headers --- */
.col-criteria {
  width: 25%;
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 1.05rem;
}

.col-direct {
  width: 35%;
}

.col-translogics {
  width: 40%;
}

.header-main-text {
  color: var(--navy-blue);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.text-dark {
  color: #000000 !important;
}

.header-sub-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* --- Table Body Typography --- */
.criteria-text {
  color: #334155;
  font-size: 1rem;
  font-weight: 400;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-main {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.05rem;
}

.feature-sub {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* --- Icons --- */
.icon-box-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #fee2e2; /* Very light red */
  border-radius: 4px;
}

.icon-box-red i {
  font-size: 0.85rem;
}

.icon-green {
  color: var(--success-green);
  font-size: 1.25rem;
}

/* =========================================
   Zebra Striping (Rows 1, 3, 5)
========================================= */
.comparison-table tbody tr:nth-child(odd) td {
  background-color: var(--stripe-bg);
}

/* Round the ends of the gray stripes so they look like floating bars */
.comparison-table tbody tr:nth-child(odd) td:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.comparison-table tbody tr:nth-child(odd) td:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  border-radius: 0;
}

/* =========================================
   Translogics Highlighted Box (Last Column)
========================================= */

/* Top header borders & top rounded corners */
.comparison-table th:last-child {
  border-top: 1.5px solid var(--navy-blue);
  border-left: 1.5px solid var(--navy-blue);
  border-right: 1.5px solid var(--navy-blue);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  background-color: #ffffff; /* Overrides transparency to sit purely above */
}

/* Middle body cell borders */
.comparison-table td:last-child {
  border-left: 1.5px solid var(--navy-blue);
  border-right: 1.5px solid var(--navy-blue);
}

/* Bottom cell borders & bottom rounded corners */
.comparison-table tbody tr:last-child td:last-child {
  border-bottom: 1.5px solid var(--navy-blue);
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 991.98px) {
  .content-column {
    padding-right: 15px; /* Reset padding for mobile stack */
    text-align: center;
  }

  .main-heading {
    font-size: 2.75rem;
  }

  .table-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

.mission-section {
  position: relative;
  padding: 50px 0;
  background-image: url(../images/mission-section/4.png);
  background-position: 60% 160px;

  background-size: contain;
  background-repeat: no-repeat;
}

/* --- Decorative Ribbon --- */
/* .decorative-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
} */

.z-index-2 {
  z-index: 2;
}

/* --- Typography --- */
.mission-section .section-subtitle {
  color: var(--navy-blue);
  letter-spacing: 1px;
  font-size: 35px;
  font-weight: 700;
}

.section-desc {
  font-size: 1.5rem;
  color: var(--text-black);
  line-height: 1.4;
}

.fw-800 {
  font-weight: 800;
}
.fw-600 {
  font-weight: 600;
}

/* --- Blue Banner Box --- */
.blue-aggregator-box {
  background-color: var(--navy-blue);
  border-radius: 40px;
  position: relative;
  margin-top: 50px;
  padding: 70px;
  /* min-height: 350px; */
}

.banner-headline {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 50px;
}

.delivery-man-img {
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: -105px;
  z-index: 3;
  right: -50px;
}

/* --- Stat Overlap Cards --- */
.mission-stats-container {
  position: absolute;
  bottom: -60px; /* Pulls cards down to overlap border */
  left: 0;
  right: 0;
  z-index: 10;
  max-width: 90%;
  margin: auto;
}

.stat-overlap-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  transition: transform 0.3s ease;
}

.stat-overlap-card:hover {
  transform: translateY(-5px);
}

.stat-icon-wrapper {
  width: 65px;
  height: 65px;
  background-color: #fce8e8; /* Very light red tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrapper i {
  color: var(--brand-red);
  font-size: 1.8rem;
}

.stat-val {
  margin: 0;
  font-size: 1.75rem;
  color: var(--text-black);
}

.stat-name {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-gray);
  font-weight: 600;
}

.mission-footer-text {
  font-size: 1rem;
  color: var(--text-black);
}

/* --- Responsive fixes --- */
@media (max-width: 991px) {
  .blue-aggregator-box {
    padding-bottom: 250px; /* Space for stacked cards */
  }

  .mission-stats-container {
    position: relative;
    bottom: 0;
    margin-top: -200px; /* Adjusting for mobile stack */
  }

  .delivery-man-img {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
    max-width: 280px;
  }

  .banner-headline {
    font-size: 1.8rem;
    text-align: center;
  }

  .section-desc {
    font-size: 1.2rem;
  }

  .decorative-ribbon {
    display: none; /* Hide curve on mobile for better readability */
  }
}

.text-brand-red {
  color: var(--brand-red);
}

.text-navy-blue {
  color: var(--navy-blue);
}

/* --- Section Styling --- */
.why-choose-section {
  background-color: #ffffff;
  overflow: hidden;
}

.section-title {
  font-size: 35px;
  font-weight: 500;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #111;
  font-weight: 400;
  max-width: 90%;
}

/* --- Feature Items --- */
.feature-icon {
  color: var(--brand-red);
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 2px;
}

.feature-desc {
  color: #424242;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
}

/* --- Image Positioning --- */
.choose-image-main {
  /* Scale and position to slightly overlap if needed, 
       or keep it simple and clean within the grid */
  max-width: 100%;
  transform: scale(1.1); /* Subtle magnification to look impactful */
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }

  .choose-image-main {
    margin-top: 3rem;
    transform: scale(1);
  }

  .section-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .feature-item {
    margin-bottom: 0.5rem;
  }
}

/* --- Section Styling --- */
.problem-landscape {
  background-color: var(--bg-light);
  font-family: "Inter", sans-serif;
}

.text-brand-red {
  color: var(--brand-red);
}

.text-navy {
  color: var(--navy-blue);
}

.problem-title {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 400;
}

/* --- Decorative Arrow Positioning --- */
.decorative-arrow {
  position: absolute;
  bottom: 0px;
  right: -10px;
  z-index: 2;
}

/* --- Card Styling --- */
.problem-card {
  background-color: var(--card-white);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.problem-icon {
  color: var(--brand-red);
  font-size: 1.8rem;
}

/* --- Footer Summary Text --- */
.footer-summary {
  font-size: 1.1rem;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .problem-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .problem-card {
    padding: 2rem 1.5rem;
  }
}

/* --- Global Vars & Fonts --- */

.text-brand-red {
  color: var(--brand-red);
}
.text-navy {
  color: var(--navy-blue);
}
.bg-navy {
  background-color: var(--navy-blue);
}
.bg-brand-red {
  background-color: var(--brand-red);
}
.fw-800 {
  font-weight: 800;
}

/* --- Section Heading --- */
.ecosystem-title {
  font-size: 2.75rem;
  font-weight: 400;
}

/* --- Custom Tab Headers --- */
.ecosystem-card-wrapper {
  position: relative;
  padding-top: 3.5rem; /* Space for the header tab */
}

.custom-tab-header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.25rem 2.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 2.5rem 2.5rem 0 0;
  z-index: 1;
  /* This creates the slanted effect on the right side of the tab */
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  width: fit-content;
  min-width: 320px;
}

/* --- Accordion Styling --- */
.ecosystem-accordion {
  border-radius: 0 3.5rem 3.5rem 3.5rem;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem 0.5rem;
}

.ecosystem-accordion .accordion-item {
  border-bottom: 1px solid #f1f1f1;
}

.ecosystem-accordion .accordion-button {
  padding: 1.5rem 1.5rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  box-shadow: none;
  font-size: 1.05rem;
}

.ecosystem-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
  border-bottom: none;
}

/* Icons */
.icon-blue {
  color: var(--navy-blue);
  font-size: 1.4rem;
}
.icon-red {
  color: var(--brand-red);
  font-size: 1.4rem;
}

/* --- Disclaimer --- */
.disclaimer-box {
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .ecosystem-title {
    font-size: 2rem;
  }
  .custom-tab-header {
    min-width: 280px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .ecosystem-accordion {
    border-radius: 0 1.5rem 1.5rem 1.5rem;
  }
  .custom-tab-header {
    min-width: 220px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* --- Variables --- */

.text-brand-red {
  color: var(--brand-red);
}

/* --- Section Layout --- */
.detailed-overview-section {
  background-color: #f8f9fa; /* Page background color outside the box */
}

/* The dark blue box */
.overview-card {
  background-color: var(--navy-blue);
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Truck Positioning */
.truck-decoration {
  position: absolute;
  top: -20px; /* Adjust based on image height to sit on border */
  left: 100px;
  width: 200px;
  z-index: 5;
}

/* Vertical divider between columns */
.border-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- Left Column Navigation --- */
.overview-main-title {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
}

.nav-item-custom {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-item-custom.active {
  background-color: #032b5e; /* Brighter navy for active state */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-item-custom:hover:not(.active) {
  color: #ffffff;
}

/* --- Checklists --- */
.custom-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: #cbd5e0; /* Light grayish-blue for list text */
  font-size: 0.95rem;
}

.custom-check-list i {
  font-size: 1.2rem;
}

/* Middle list icons (Green) */
.green-checks i {
  color: #16a34a; /* Success Green */
}

.green-checks li {
  color: #ffffff; /* Middle text is pure white in design */
  font-weight: 500;
}

/* Right list icons (Red) */
.red-checks i {
  color: var(--brand-red);
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .overview-card {
    border-radius: 2rem;
  }

  .border-divider {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .overview-main-title {
    font-size: 1.8rem;
  }

  .truck-decoration {
    left: 40px;
    width: 150px;
  }
}

@media (max-width: 576px) {
  .truck-decoration {
    display: none; /* Hide truck on very small screens to save space */
  }
}

/* --- Variables & Globals --- */

.tech-platform-section {
  background-image: url(../images/tech-platform/bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* --- Decorative Swoosh Background --- */
.swoosh-container {
  position: absolute;
  width: 140%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

/* --- Typography --- */
.tech-label {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

.tech-main-title {
  color: var(--navy-blue);
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.tech-main-title .powerhouse {
  font-weight: 800;
  font-style: italic;
}

.tech-subtitle {
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Cards --- */
.tech-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-title {
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.card-icon {
  color: var(--brand-red);
  font-size: 2.25rem;
  line-height: 1;
}

.card-desc {
  color: var(--card-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .tech-main-title {
    font-size: 2rem;
  }
  .tech-subtitle {
    font-size: 1.1rem;
  }
} /* --- Variables --- */

/* --- Concentric Circles Background --- */
.circle-background {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(10, 37, 64, 0.05);
  border-radius: 50%;
}

.circle-1 {
  width: 300px;
  height: 300px;
}
.circle-2 {
  width: 600px;
  height: 600px;
}
.circle-3 {
  width: 900px;
  height: 900px;
}

/* --- Section Typography --- */
.partner-title {
  font-size: 2.75rem;
  color: var(--navy-blue);
  font-weight: 400;
}

.partner-desc {
  max-width: 800px;
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
}

.text-brand-red {
  color: var(--brand-red);
}

/* --- Partner Cards --- */
.partner-card {
  height: 100px;
  border-radius: 15px;
  padding: 15px;
  box-shadow: var(--partner-shadow);
  transition: transform 0.3s ease;
}

.partner-card.sm {
  height: 80px;
}
.partner-card.lg {
  height: 160px;
  border-radius: 25px;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.bg-red {
  background-color: var(--brand-red);
}
.bg-dark {
  background-color: #211915;
}
.bg-white {
  background-color: #ffffff;
}

/* Inverts logo for dark backgrounds */
.partner-logo-white {
  filter: brightness(0) invert(1);
}

/* --- Decorative Arrow --- */
.partner-network-section .curved-arrow1 {
  position: absolute;
  bottom: -70px;
  right: -30px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .partner-title {
    font-size: 2rem;
  }
  .partner-card.lg {
    height: 120px;
  }
  .circle-background {
    display: none;
  } /* Simpler on mobile */
}

@media (max-width: 576px) {
  .partner-card {
    height: 70px;
    border-radius: 10px;
  }
  .partners-row {
    padding: 0 10px;
  }
}

/* --- Variables --- */

/* --- Section Layout --- */
.shipping-cta-section {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* Main Rounded Navy Box */
.cta-navy-box {
  background-color: var(--navy-blue);
  border-radius: 4rem; /* Large pill-like corners */
  min-height: 500px;
}

/* Typography */
.ready-label {
  color: var(--brand-red);
  text-transform: capitalize;
}

.cta-title {
  font-size: 35px;
  font-weight: 300;
}

.text-light-blue {
  color: var(--light-blue);
  line-height: 1.6;
}

.cta-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.cta-link:hover {
  color: var(--brand-red);
}

.text-red {
  color: var(--brand-red);
}

/* Form Styling */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.custom-input .form-control {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  color: #333;
  font-weight: 500;
}

.custom-input label {
  padding-left: 1rem;
  color: #666;
  font-weight: 500;
}

.custom-input .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 19, 19, 0.2);
}

.textarea-wrapper {
  grid-row: span 2; /* Spans across two input heights */
}

/* Submit Button */
.btn-red-submit {
  background-color: var(--brand-red);
  color: #ffffff;
  border-radius: 12px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-red-submit:hover {
  background-color: var(--brand-red-hover);
  color: #ffffff;
}

/* --- Absolute Image Positioning --- */
.cta-person-img {
  position: absolute;
  bottom: -10px; /* Slight overflow at bottom */
  right: -10px;
  height: 70%;
  z-index: 5;
  pointer-events: none; /* Allows clicking things behind if needed */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .cta-person-img {
    height: 100%;
    right: 10px;
  }
}

@media (max-width: 991px) {
  .cta-navy-box {
    border-radius: 2rem;
    padding-bottom: 2rem;
  }
  .cta-title {
    font-size: 2.25rem;
  }
  .cta-person-img {
    display: none; /* Hide image on mobile for better form access */
  }
  .textarea-wrapper {
    height: 120px !important;
  }
}

@media (max-width: 576px) {
  .cta-navy-box {
    border-radius: 1.5rem;
  }
}

.testimonials-section {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* --- Heading Styling --- */
.text-navy {
  color: var(--navy-blue);
}
.fw-800 {
  font-weight: 800;
}

.testimonial-title {
  font-size: 35px;
  font-weight: 400;
}

.swirly-arrow {
  position: absolute;
  top: -40px;
  right: -20px;
  z-index: 1;
}

/* --- Card Styling --- */
.testimonial-card {
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.card-quote {
  font-size: 0.95rem;
  line-height: 1.6;
}

.client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Navigation Buttons --- */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.prev-btn {
  left: -25px; /* Overlaps left side */
  background: #fff;
  color: #000;
}

.next-btn {
  right: -25px; /* Overlaps right side */
  background: var(--brand-red);
  color: #fff;
}

.next-btn:hover {
  background: #b50f0f;
}
.prev-btn:hover {
  background: #f8f9fa;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .testimonial-title {
    font-size: 2rem;
    text-align: center;
  }
  .swiper-nav-btn {
    display: none;
  } /* Use touch drag on mobile */
  .testimonial-card {
    padding: 1.5rem;
    min-height: 300px;
  }
} /* --- Variables & Fonts --- */

.support-section {
  background-color: #ffffff;
  font-family: "Inter", sans-serif; /* Matches the clean UI look */
}

/* --- Heading Styling --- */
.support-heading {
  color: var(--navy-blue);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

/* --- Card Styling --- */
.support-card {
  background-color: #ffffff;
  border-radius: 1.5rem; /* Matches the large rounded corners */
  padding: 2rem 1.5rem;
  height: 180px; /* Ensures all cards are equal height */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.02); /* Very subtle border */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Replicating the soft, spread-out shadow */
.support-card.shadow-sm {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
}

.support-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  /* Optional: If using actual colored logos, you can use grayscale(1) 
       on hover to keep it professional if desired */
}

/* --- Footer Text --- */
.support-footer-text {
  color: var(--text-color);
  font-size: 1.15rem;
  margin-top: 2rem;
  font-weight: 400;
}

.support-footer-text .fw-bold {
  font-weight: 800 !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .support-heading {
    font-size: 1.75rem;
  }

  .support-card {
    height: 140px;
    padding: 1rem;
    border-radius: 1rem;
  }

  .support-footer-text {
    font-size: 1rem;
    padding: 0 15px;
  }
} /* --- Variables --- */

.faq-section {
  margin-bottom: 150px;
}

/* .faq-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -200px;
  background-image: url(../images/faq-section/bg.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 10;
} */

/* --- Heading Styling --- */
/* .text-navy {
  color: var(--navy-dark);
} */
.fw-800 {
  font-weight: 800;
}

.faq-title {
  font-size: 35px;
  line-height: 1.2;
}

.swirly-arrow-faq {
  position: absolute;
  top: -15px;
  right: -95px;
}

/* --- Decorative Red Wave --- */
.decorative-wave {
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 500px;
  height: 300px;
  background: var(--brand-red);
  /* Recreates the fluid wave shape */
  border-radius: 45% 55% 44% 56% / 30% 64% 36% 70%;
  transform: rotate(15deg);
  z-index: 0;
}

/* --- Accordion Customization --- */
.custom-faq-accordion {
  border: none;
}

.custom-faq-accordion .accordion-item {
  background-color: transparent;
  border: none;
  transition: all 0.3s ease;
  padding: 5px;
}

/* Question style */
.custom-faq-accordion .accordion-button {
  background-color: transparent;
  color: #000;
  padding: 1rem 0;
  font-size: 1.15rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Removing the default Bootstrap arrow rotate if you want to match the design's simplicity */
.custom-faq-accordion .accordion-button::after {
  display: none;
}

/* Active Card Style (Expanded) */
.custom-faq-accordion .accordion-item:has(.show) {
  background-color: #ffffff;
  border-radius: 2.5rem; /* Very rounded as per image */
  /* padding: 2rem 2.5rem; */
  padding: 5px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.custom-faq-accordion .accordion-item:has(.show) .accordion-button {
  padding-top: 0;
  padding-bottom: 1rem;
}

.custom-faq-accordion .accordion-body {
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  padding: 1rem 1.5rem;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .faq-title {
    font-size: 2rem;
    text-align: center;
  }
  .decorative-wave {
    display: none;
  }
  .custom-faq-accordion .accordion-item:has(.show) {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
} /* --- Variables --- */

/* --- Footer Section --- */
.footer-section {
  background-color: #e7ebf1;
  padding: 100px 0 40px;
  position: relative;
  /* overflow: hidden; */
  font-family: "Inter", sans-serif;
}

.footer-section .footer-logo {
  max-width: 250px;
}
/* Decorative Wave Positioning */
.footer-wave {
  position: absolute;
  top: -346px;
  right: 0px;
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* --- Logo Styling --- */
.brand-text {
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
}

.text-red {
  color: var(--footer-red);
  font-size: 2.5rem;
}

.text-blue {
  color: var(--footer-blue);
  font-size: 2.4rem;
}

.footer-about {
  color: #1a202c;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* --- Link Columns --- */
.footer-heading {
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--footer-red);
}

/* --- Social Icons & Bottom Text --- */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--footer-blue);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.social-icon:hover {
  background-color: var(--footer-red);
  transform: translateY(-3px);
  color: #fff;
}

.copyright-text {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .footer-wave {
    width: 200px;
    height: auto;
  }
  .brand-text,
  .footer-about {
    text-align: center;
  }
  .footer-heading {
    margin-top: 20px;
  }
}

/* --- Hero Section Styling --- */
.breadcrumb-section {
  padding: 80px 0;
}

.breadcrumb-section .hero-banner {
  position: relative;
  /* Warehouse background image */
  background-image: url("../images/breadcrumb/5.png");
  background-size: cover;
  background-position: center;
  /* Replicating the very rounded corners seen in image */
  border-radius: 60px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-section.policy-page .hero-banner {
  position: relative;
  /* Warehouse background image */
  background-image: url("../images/breadcrumb/5.png");
  background-size: cover;
  background-position: center;
  /* Replicating the very rounded corners seen in image */
  border-radius: 60px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

 
 

.breadcrumb-section .hero-content {
  z-index: 2;
  max-width: 800px;
}
.breadcrumb-section .hero-content h1 {
  font-size: 40px;
}
.breadcrumb-section .hero-content h6 {
  font-size: 30px;
}
/* --- Typography --- */
.breadcrumb-section .text-red {
  color: var(--brand-red);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-footer p {
  font-size: 1.15rem;
  color: #444;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .breadcrumb-section .hero-banner {
    border-radius: 30px; /* Slightly less rounded on mobile */
    min-height: 300px;
  }

  .breadcrumb-section .text-red {
    font-size: 1.25rem;
  }

  .breadcrumb-section .hero-footer p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* --- About Top Section --- */
.about-title {
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 2.25rem;
}

.about-lead {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
}
.about-content-container {
  padding-right: 80px;
}
.about-body-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  /* margin-bottom: 1.25rem; */
}

/* --- The Custom Image Shape --- */
.custom-rounded-img {
  /* Top-right and bottom-right corners are heavily rounded as per image */
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  width: 100%;
  object-fit: cover;
}

/* --- Bottom Note Section --- */
.footer-note-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted-color);
  font-weight: 400;
  padding: 0 1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .about-title {
    font-size: 1.75rem;
  }

  .custom-rounded-img {
    border-radius: 0; /* Simpler layout for mobile */
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .footer-note-text {
    text-align: left;
  }
}

.vision-mission-section {
  width: 100%;
  height: 100%;
  padding: 100px 0;
}
.vision-mission-section::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  background-image: url(../images/about/2.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 110%;
}

.text-navy {
  color: var(--navy-blue);
}

.z-index-2 {
  z-index: 2;
}

/* Stat Cards */
.stat-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: #fce8e8; /* Very light red */
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content h3 {
  font-size: 1.8rem;
  color: #111;
}

.stat-content small {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #444;
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .red-ribbon-bg {
    display: none; /* Simplifies layout on mobile */
  }
}

/* --- Variables (to match your brand) --- */

/* --- Section Styling --- */
.approach-section {
  background-color: #ffffff;
  font-family: "Inter", sans-serif; /* Recommended clean sans-serif */
}

/* --- Typography --- */
.approach-heading {
  color: var(--brand-navy);
  font-size: 2.25rem; /* Large and impactful */
  font-weight: 700;
  margin: 0;
}

.approach-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Image Styling --- */
.image-wrapper img {
  /* Ensures a clean look if the image is a transparent PNG */
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .approach-heading {
    font-size: 1.75rem;
  }

  .approach-section {
    text-align: center;
  }

  .approach-section .row {
    flex-direction: column; /* Stacks image on top on mobile */
  }

  .mb-5 {
    margin-bottom: 2.5rem !important;
  }
}

.contact-section {
  background-color: #ffffff;
}

/* --- Map Styling --- */
.map-wrapper {
  overflow: hidden;
  /* Rounds the right side only as seen in your image */
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  line-height: 0; /* Prevents tiny gap at bottom of iframe */
}

.map-wrapper iframe {
  filter: grayscale(0.2); /* Optional: makes map look more professional */
}

/* --- Typography --- */
.contact-heading {
  color: var(--navy-blue);
  font-size: 2.5rem;
}

.contact-subtitle {
  color: #000000;
  font-weight: 600;
  font-size: 1.1rem;
  max-width: 90%;
}

/* --- Icon Circles --- */
.icon-circle {
  width: 54px;
  height: 54px;
  background-color: var(--icon-bg);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-text h6 {
  font-size: 1rem;
  color: #000;
}

.contact-text p {
  font-size: 1.1rem;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .map-wrapper {
    border-radius: 40px; /* Simpler rounded look for mobile */
  }

  .contact-heading {
    font-size: 2rem;
  }
}

.contact-form-section {
  background-color: #ffffff;
}

/* --- Left Column Styling --- */
.navy-heading {
  color: var(--brand-navy);
  font-weight: 800;
}

h3.navy-heading {
  font-size: 2rem;
}
h2.navy-heading {
  font-size: 2.5rem;
}

.small-line-height {
  line-height: 1.6;
  font-size: 1.1rem;
}

.contact-checklist li {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-checklist i {
  color: var(--brand-green);
  font-size: 1.3rem;
}

/* Decorative Arrow Positioning */
.decorative-arrow-form {
  position: absolute;
  top: -10%;
  right: -20px;
  z-index: 5;
}

/* --- Form Card Styling --- */
.form-card {
  background-color: #ffffff;
  border-radius: 50px; /* High radius matching image */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Input Styles */
.form-card .form-control,
.form-card .form-select {
  border: none;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #444;
  background-color: #eceff3;
}

/* Active field (White bg with border) */
.form-card .form-control:focus {
  background-color: #ffffff;
  box-shadow: none;
  border: 1.5px solid var(--brand-navy);
}

/* Default Grey Background for fields */
.bg-light-gray {
  background-color: var(--form-input-bg) !important;
}

/* Submit Button */
.btn-red-submit {
  background-color: var(--brand-red);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-red-submit:hover {
  background-color: #b50f0f;
  color: #ffffff;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .form-card {
    border-radius: 30px;
  }

  h2.navy-heading {
    font-size: 2rem;
  }

  .contact-checklist li {
    font-size: 1rem;
  }
}

.offer-section {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

.navy-title {
  color: var(--brand-navy);
}

/* --- Top Gradient Card --- */
.main-gradient-card {
  /* Recreates the yellow -> orange -> pink -> purple gradient */
  background: linear-gradient(
    105deg,
    #fff9d1 0%,
    #ffe0ba 35%,
    #fce1e8 70%,
    #f3e8ff 100%
  );
  border-radius: 3.5rem; /* Massive rounded corners as seen in design */
  overflow: hidden;
}

.icon-green {
  color: var(--brand-green);
  font-size: 1.25rem;
}

.checklist-grid li {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

/* --- Bottom Feature Cards --- */
.sub-feature-card {
  background-color: var(--card-bg-light);
  border-radius: 3rem;
  padding: 3.5rem 2.5rem;
}

.small-line-height {
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563 !important;
}

.sub-feature-card h3 {
  font-size: 1.75rem;
  line-height: 1.2;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .main-gradient-card {
    border-radius: 2rem;
  }

  .sub-feature-card {
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
  }

  .navy-title {
    font-size: 1.5rem;
  }
}

.navy-title {
  color: var(--navy-blue);
}

.text-red {
  color: var(--brand-red);
}

.small-line-height {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Industries Section --- */
.industries-bg-wrapper {
  background-color: var(--bg-light);
  border-radius: 4rem; /* Matching the pill shape in image */
}

.industry-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card i {
  font-size: 1.5rem;
}

.industry-card p {
  font-size: 0.85rem;
}

/* --- How It Works Section --- */
.step-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--brand-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(218, 19, 19, 0.3);
}

.step-text {
  font-size: 0.95rem;
  color: #000;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
}

.step-bg-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 2.5rem;
  color: #e9ecef;
  opacity: 0.8;
}

/* --- Action Button --- */
.btn-red-action {
  background-color: var(--brand-red);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-red-action:hover {
  background-color: #b50f0f;
  color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .industries-bg-wrapper {
    border-radius: 2rem;
  }

  .navy-title {
    font-size: 1.75rem;
  }
}

.text-navy {
  color: var(--brand-navy);
}
.text-red {
  color: var(--brand-red);
}
.bg-navy {
  background-color: var(--brand-navy);
}
.bg-gold {
  background-color: var(--gold-header);
}
.fw-800 {
  font-weight: 800;
}

/* --- Section Heading --- */
.section-title {
  font-size: 2.25rem;
}

/* --- Plan Card Base --- */
.plan-card {
  background: #fff;
  border-radius: 2rem; /* Large rounded corners */
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-header {
  font-size: 0.9rem;
}

.plan-name {
  font-size: 1.75rem;
}

.plan-target {
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- Features Styling --- */
.features-list p {
  font-size: 1.1rem;
  color: #000;
}

.features-list li {
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  display: flex;
  align-items: center;
}

/* --- Highlighted Growth Card --- */
.plan-card.highlighted {
  position: relative;
  border: 4px solid transparent;
  /* Replicates the colorful gradient border */
  background-image:
    linear-gradient(white, white),
    linear-gradient(135deg, #fce0ba 0%, #f7d5e6 50%, #e2caff 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- Buttons --- */
.btn-gray {
  background-color: var(--bg-gray-btn);
  color: #000;
  border: none;
  border-radius: 12px;
}

.btn-gray:hover {
  background-color: #cbd5e0;
  color: #000;
}

.btn-red {
  background-color: var(--brand-red);
  border: none;
  border-radius: 12px;
}

.btn-red:hover {
  background-color: #b50f0f;
}

/* --- Footer Text --- */
.small-footer-text {
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 400;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .plan-card {
    border-radius: 1.5rem;
  }
  .plan-name {
    font-size: 1.5rem;
  }
}

.pricing-explanation-section {
  background-color: #f4f7f9;
  margin-top: 100px;background-image: url(../images/mission-section/4.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- The Dark Navy Banner --- */
.pricing-explanation-section .navy-banner {
  background-color: var(--navy-blue);
  border-radius: 40px;
  min-height: 250px;
  z-index: 1;
}

.pricing-explanation-section .banner-title {
  margin-left: 10%;
}

/* --- The Pop-out Image --- */
.pricing-explanation-section .delivery-man-img-one {
  width: auto;
  position: absolute;
  bottom: -120px;
  right: -120px;
  z-index: 10;
}

/* --- Overlapping Logic --- */
.pricing-explanation-section .card-overlap-row {
  margin-top: -80px; /* Pulls the cards up to overlap the banner */
  position: relative;
  z-index: 20;
}

/* --- Card Styling --- */
.pricing-explanation-section .pricing-card-one {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.01);
}

.pricing-explanation-section .pricing-card-one:hover {
  transform: translateY(-5px);
}

.pricing-explanation-section .icon-circle {
  width: 70px;
  height: 70px;
  background-color: var(--light-pink);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.75rem;
}

.pricing-explanation-section .pricing-card-one p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
}

.pricing-explanation-section .footer-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .pricing-explanation-section .delivery-man-img-one {
    height: 300px;
    right: 0;
    bottom: 0;
    position: relative;
    margin-top: -150px;
  }
  .pricing-explanation-section .banner-title {
    text-align: center;
    margin-left: 0;
  }
  .pricing-explanation-section .navy-banner {
    border-radius: 25px;
  }
}

@media (max-width: 767px) {
  .pricing-explanation-section .card-overlap-row {
    margin-top: -30px;
  }
  .pricing-explanation-section .pricing-card-one {
    padding: 25px 15px;
  }
}


 

.policy-section {
     padding: 60px 20px; 
     margin-bottom: 300px;
    color: var(--policy-text);
}

 
/* --- Block Styling --- */
.policy-block {
    margin-bottom: 30px;
}

.policy-heading {
    color: var(--policy-navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-subtext {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.policy-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- List Styling (Green Checks) --- */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Custom CSS Checkmark Icon */
.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: var(--policy-green);
    border-radius: 50%;
}

.policy-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 4px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
}

/* --- Divider --- */
.policy-divider {
    border: 0;
    border-top: 1px solid var(--policy-divider);
    margin: 30px 0;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .policy-heading {
        font-size: 1.1rem;
    }
    .policy-section {
        padding: 40px 15px;
    }
}