/* styles.css — BloomBoost theme
   Palette:
   --navy: #0A2540
   --electric: #147EFB
   --aqua: #14D4B9
   --bg: #F5F7FA
   --charcoal: #1F1F1F
*/

:root{
  --navy: #0A2540;
  --electric: #147EFB;
  --aqua: #14D4B9;
  --bg: #F5F7FA;
  --charcoal: #1F1F1F;
  --muted: #6c757d;
}

/* Base */
* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--charcoal);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1.6;
}

/* Utility helpers */
.text-accent { color: var(--electric); }
.small-muted { color: var(--muted); font-size: .9rem; }

/* NAVBAR */
.navbar-custom {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.navbar-custom .navbar-brand { color: #fff; font-weight: 700; letter-spacing: .6px; }
.navbar-custom .nav-link { color: rgba(255,255,255,0.92); }
.navbar-custom .nav-link:hover { color: var(--aqua); }

/* Right-side actions wrapper */
.nav-actions { margin-left: auto; display:flex; align-items:center; gap:12px; }

/* Hamburger button (keeps look consistent across pages) */
.hamburger {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 8px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.hamburger .bar {
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
}
.hamburger .bar::before,
.hamburger .bar::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: all .22s ease;
}
.hamburger .bar::before { top: -6px; }
.hamburger .bar::after { top: 6px; }

/* open state => X icon */
.hamburger.open .bar { background: transparent; }
.hamburger.open .bar::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open .bar::after { transform: translateY(-6px) rotate(-45deg); }

/* Offcanvas custom theme (applied inline or via class) */
.offcanvas-custom {
  background: linear-gradient(180deg, var(--navy) 0%, rgba(20,126,251,0.92) 100%);
  color: #fff;
}
.offcanvas-custom .nav-link { color: #fff; }
.offcanvas-custom .nav-link:hover { color: var(--aqua); }

/* HERO */
.hero, .hero-small {
  color: #fff;
  text-align: left;
}
.hero {
  background: linear-gradient(180deg, rgba(10,37,64,0.92), rgba(20,126,251,0.85)), url('demos/gym/images/fitness.webp.png') center/cover no-repeat;
  padding: 90px 0;
}
.hero-small {
  background: linear-gradient(180deg, rgba(10,37,64,0.92), rgba(20,126,251,0.85));
  padding: 48px 0;
}
.hero h1, .hero-small h1 { font-weight: 700; margin: 0 0 .5rem 0; }
.hero p.lead { font-size: 1.05rem; opacity: .95; margin-bottom: .75rem; }

/* Buttons */
.btn-primary {
  background: var(--electric);
  border-color: var(--electric);
}
.btn-primary:hover {
  background: #0e6fe6;
  border-color: #0e6fe6;
}
.btn-dark {
  background: #081a35;
  border-color: #081a35;
}
.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

/* Ebook banner */
.ebook-banner {
  background: linear-gradient(90deg, var(--electric), var(--aqua));
  color: #fff;
  padding: 22px;
  border-radius: 10px;
}

/* SERVICES / CARDS */
.service-card, .card {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(10,37,64,0.06);
  border: none;
  background: #fff;
}
.service-card { padding: 18px; transition: transform .24s ease; }
.service-card:hover { transform: translateY(-6px); }
.service-icon { font-size: 28px; color: var(--electric); }

/* BLOG / POSTS */
.post-card, .blog-article .card {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.card-img-top { height: 200px; object-fit: cover; }

/* Testimonials */
.testimonial { background: #fff; padding: 18px; border-radius: 10px; box-shadow: 0 6px 20px rgba(10,37,64,0.06); }
.testimonial .quote { color: var(--navy); font-weight: 600; font-size: 1.03rem; }

/* Forms */
.form-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(10,37,64,0.06);
  border: none;
}
.form-control:focus {
  box-shadow: 0 0 0 0.18rem rgba(20,126,251,0.18);
  border-color: var(--electric);
}

/* FOOTER */
footer {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}
footer h5 { color: #fff; }
footer a { color: #dbeafe; text-decoration: none; }
footer a:hover { color: var(--aqua); text-decoration: underline; }
footer .social a { color: #fff; margin-right: 10px; font-size: 1.25rem; }

/* Misc */
.container .section-title { color: var(--navy); margin-bottom: 1rem; }
.lead-accent { color: var(--electric); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero { padding: 64px 0; }
  .ebook-banner { text-align: center; }
}

/* Accessibility focus outlines */
a:focus, button:focus, input:focus { outline: 3px solid rgba(20,126,251,0.18); outline-offset: 2px; }

/* Utility spacing overrides for consistent look */
.mb-1 { margin-bottom:.25rem !important; }
.mb-2 { margin-bottom:.5rem !important; }
.mt-3 { margin-top:1rem !important; }

/* Small helper for text contrast on cards inside dark hero (if needed) */
.text-on-hero { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }

/* END OF styles4.css — replace image paths in your HTML as needed */

/* Ebook Section Styling */
.ebook-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4ebf7 100%);
  padding: 60px 0;
}

.ebook-mockup img {
  max-width: 320px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-mockup img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ebook-content h2 {
  font-size: 1.9rem;
  line-height: 1.3;
  color: #222;
}

.ebook-content p {
  font-size: 1.1rem;
  color: #555;
}

.ebook-content .btn {
  background: #007bff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.ebook-content .btn:hover {
  background: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ebook-content h2 {
    font-size: 1.5rem;
  }
  .ebook-content p {
    font-size: 1rem;
  }
}

/* You can change these colours to match your website */
:root {
  --seo-primary: #7457ff;
  --seo-secondary: #a855f7;
  --seo-dark: #13111c;
  --seo-text: #55515f;
  --seo-light: #f7f5ff;
  --seo-border: #e7e2f3;
  --seo-white: #ffffff;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .seo-cards {
    scroll-behavior: auto;
  }

  .seo-card,
  .seo-card::before,
  .slider-dot {
    transition: none;
  }
}

/* ==================================
   SEO APPROACH CARDS
================================== */

.seo-approach {
  padding: 90px 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(20, 126, 251, 0.1),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(20, 212, 185, 0.1),
      transparent 25%
    ),
    #f5f7fa;
}

.seo-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #147efb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 16px;
  color: #0a2540;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: #596675;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cards-wrapper {
  position: relative;
}

.seo-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.seo-card {
  position: relative;
  min-height: 340px;
  padding: 32px 26px;
  overflow: hidden;
  border: 1px solid #dde5ed;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.seo-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #147efb, #14d4b9);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.seo-card:hover {
  border-color: rgba(20, 126, 251, 0.4);
  box-shadow: 0 22px 55px rgba(10, 37, 64, 0.15);
  transform: translateY(-8px);
}

.seo-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(20, 126, 251, 0.13);
  font-size: 2.3rem;
  font-weight: 900;
}

.card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 27px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #147efb, #14d4b9);
  box-shadow: 0 12px 25px rgba(20, 126, 251, 0.25);
  place-items: center;
}

/* This fixes the enormous black SVG shapes */
.card-icon svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.seo-card h3 {
  margin: 0 0 15px;
  color: #0a2540;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.seo-card p {
  margin: 0;
  color: #596675;
  font-size: 0.96rem;
  line-height: 1.7;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #0a2540;
  box-shadow: 0 8px 25px rgba(10, 37, 64, 0.25);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button:hover {
  background: #147efb;
}

.slider-button.previous {
  left: -12px;
}

.slider-button.next {
  right: -12px;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #b9c5d1;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-dot.active {
  width: 27px;
  background: #147efb;
}

/* Tablet horizontal slider */
@media (max-width: 991px) {
  .seo-approach {
    padding: 75px 20px;
  }

  .seo-cards {
    display: flex;
    gap: 18px;
    padding: 10px 5px 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .seo-cards::-webkit-scrollbar {
    display: none;
  }

  .seo-card {
    min-width: calc(50% - 9px);
    scroll-snap-align: start;
  }

  .slider-button {
    display: flex;
  }

  .slider-dots {
    display: flex;
  }
}

/* Phone horizontal slider */
@media (max-width: 600px) {
  .seo-approach {
    padding: 65px 16px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .seo-card {
    min-width: 88%;
    min-height: 330px;
    padding: 30px 25px;
  }

  .slider-button {
    width: 42px;
    height: 42px;
  }

  .slider-button.previous {
    left: -8px;
  }

  .slider-button.next {
    right: -8px;
  }
}

/* =========================================
   BLOOMBOOST SERVICES AND PACKAGE SECTIONS
========================================= */

.services-section {
  padding: 80px 0;
  color: #1f2937;
  background: #eef5fb;
}

.packages-section {
  padding: 80px 0;
  color: #1f2937;
  background: #f8fafc;
}

.services-section h2,
.services-section h3,
.packages-section h2,
.packages-section h3 {
  color: #0a2540;
}

/* Make every Bootstrap column stretch its card */
.service-grid > div,
.package-grid > div {
  display: flex;
}

/* Shared card appearance */
.bb-service-card,
.bb-package-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid #dbe7f1;
  border-radius: 18px;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(10, 37, 64, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.bb-service-card:hover,
.bb-package-card:hover {
  border-color: rgba(20, 126, 251, 0.4);
  box-shadow: 0 18px 45px rgba(10, 37, 64, 0.14);
  transform: translateY(-5px);
}

.bb-service-card h3,
.bb-package-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.bb-service-card p,
.bb-package-card p {
  color: #526273;
  line-height: 1.7;
}

.bb-service-card ul,
.bb-package-card ul {
  margin-bottom: 24px;
  padding-left: 1.3rem;
  color: #465668;
}

.bb-service-card li,
.bb-package-card li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Push buttons to the bottom of every card */
.bb-card-action {
  margin-top: auto;
  padding-top: 10px;
}

.bb-card-action .btn {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 600;
}

/* Highlight the Growth package */
.bb-package-card.featured {
  border: 2px solid #147efb;
  background:
    linear-gradient(
      180deg,
      rgba(20, 126, 251, 0.06),
      rgba(255, 255, 255, 1) 35%
    );
  box-shadow: 0 18px 45px rgba(20, 126, 251, 0.16);
}

.package-label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(90deg, #147efb, #14d4b9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 991px) {
  .services-section,
  .packages-section {
    padding: 65px 0;
  }

  .bb-service-card,
  .bb-package-card {
    padding: 26px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .services-section,
  .packages-section {
    padding: 50px 16px;
  }

  .services-section .container,
  .packages-section .container {
    padding-right: 0;
    padding-left: 0;
  }

  .bb-service-card,
  .bb-package-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .bb-service-card:hover,
  .bb-package-card:hover {
    transform: none;
  }

  .bb-card-action .btn {
    width: 100%;
  }
}/* Clear blue background around service cards */
.services-section {
  margin: 30px 0 60px;
  padding: 48px 32px;
  border: 1px solid #b9daf7;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    #d9ecff 0%,
    #e8f5ff 55%,
    #f2f9ff 100%
  );
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
}

/* Ensure all card columns stretch equally */
.service-grid > div {
  display: flex;
}

/* White service cards */
.service-item.bb-service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid #cddfec;
  border-radius: 18px;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-item.bb-service-card:hover {
  border-color: #147efb;
  box-shadow: 0 18px 40px rgba(20, 126, 251, 0.16);
  transform: translateY(-5px);
}

.service-item.bb-service-card h4 {
  margin-bottom: 14px;
  color: #0a2540;
  font-size: 1.35rem;
  font-weight: 700;
}

.service-item.bb-service-card p,
.service-item.bb-service-card .muted-small,
.service-item.bb-service-card ul {
  color: #526273 !important;
}

.service-item.bb-service-card ul {
  margin-bottom: 24px;
  padding-left: 1.3rem;
}

.service-item.bb-service-card li {
  margin-bottom: 7px;
}

/* Keep every button aligned at the bottom */
.service-item.bb-service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Mobile layout */
@media (max-width: 767px) {
  .services-section {
    margin: 20px 0 40px;
    padding: 24px 14px;
    border-radius: 18px;
  }

  .service-item.bb-service-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .service-item.bb-service-card:hover {
    transform: none;
  }

  .service-item.bb-service-card .btn {
    width: 100%;
  }
}

/* Clear blue background around service cards */
.services-section {
  margin: 30px 0 60px;
  padding: 48px 32px;
  border: 1px solid #b9daf7;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    #d9ecff 0%,
    #e8f5ff 55%,
    #f2f9ff 100%
  );
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
}

/* Ensure all card columns stretch equally */
.service-grid > div {
  display: flex;
}

/* White service cards */
.service-item.bb-service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid #cddfec;
  border-radius: 18px;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-item.bb-service-card:hover {
  border-color: #147efb;
  box-shadow: 0 18px 40px rgba(20, 126, 251, 0.16);
  transform: translateY(-5px);
}

.service-item.bb-service-card h4 {
  margin-bottom: 14px;
  color: #0a2540;
  font-size: 1.35rem;
  font-weight: 700;
}

.service-item.bb-service-card p,
.service-item.bb-service-card .muted-small,
.service-item.bb-service-card ul {
  color: #526273 !important;
}

.service-item.bb-service-card ul {
  margin-bottom: 24px;
  padding-left: 1.3rem;
}

.service-item.bb-service-card li {
  margin-bottom: 7px;
}

/* Keep every button aligned at the bottom */
.service-item.bb-service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Mobile layout */
@media (max-width: 767px) {
  .services-section {
    margin: 20px 0 40px;
    padding: 24px 14px;
    border-radius: 18px;
  }

  .service-item.bb-service-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .service-item.bb-service-card:hover {
    transform: none;
  }

  .service-item.bb-service-card .btn {
    width: 100%;
  }
}

/* =========================================
   SHARED SECTION HEADINGS
========================================= */

.bb-section-heading {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.bb-section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #147efb;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bb-section-heading h2 {
  margin: 0 0 14px;
  color: #0a2540;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 750;
  line-height: 1.2;
}

.bb-section-heading p {
  margin: 0;
  color: #526273;
  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================
   HOW BLOOMBOOST WORKS
========================================= */

.bb-process-section {
  margin: 60px 0;
  padding: 70px 35px;
  border: 1px solid #c7e0f5;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    #e5f2ff 0%,
    #f1f8ff 55%,
    #e7f7f5 100%
  );
}

.bb-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.bb-process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 26px 22px;
  overflow: hidden;
  border: 1px solid #d5e3ee;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bb-process-card:hover {
  box-shadow: 0 17px 38px rgba(20, 126, 251, 0.15);
  transform: translateY(-5px);
}

.bb-step-number {
  position: absolute;
  top: 15px;
  right: 18px;
  color: rgba(20, 126, 251, 0.14);
  font-size: 2rem;
  font-weight: 900;
}

.bb-step-icon,
.bb-project-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #147efb, #14d4b9);
  box-shadow: 0 9px 20px rgba(20, 126, 251, 0.2);
  place-items: center;
}

.bb-step-icon i,
.bb-project-icon i {
  font-size: 1.25rem;
}

.bb-process-card h3 {
  margin: 0 0 12px;
  color: #0a2540;
  font-size: 1.08rem;
  font-weight: 700;
}

.bb-process-card p {
  margin: 0;
  color: #526273;
  font-size: 0.92rem;
  line-height: 1.65;
}


/* =========================================
   SELECTED PROJECTS
========================================= */

.bb-projects-section {
  margin: 60px 0;
  padding: 70px 35px;
  border: 1px solid #c7e0f5;
  border-radius: 24px;
  background: #edf6ff;
}

.bb-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bb-project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border: 1px solid #d2e1ed;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.bb-project-card:hover {
  border-color: #147efb;
  box-shadow: 0 18px 42px rgba(20, 126, 251, 0.15);
  transform: translateY(-5px);
}

.bb-project-type {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 13px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #0a5c96;
  background: #e2f2ff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bb-project-card h3 {
  margin: 0 0 12px;
  color: #0a2540;
  font-size: 1.3rem;
  font-weight: 700;
}

.bb-project-card p,
.bb-project-card ul {
  color: #526273;
  line-height: 1.65;
}

.bb-project-card ul {
  margin-bottom: 25px;
  padding-left: 1.25rem;
}

.bb-project-card li {
  margin-bottom: 7px;
}

.bb-project-button {
  align-self: flex-start;
  margin-top: auto;
}

.bb-projects-cta {
  margin-top: 38px;
  text-align: center;
}

.bb-projects-cta p {
  margin-bottom: 14px;
  color: #0a2540;
  font-size: 1.05rem;
  font-weight: 650;
}


/* =========================================
   RESPONSIVE LAYOUT
========================================= */

@media (max-width: 1199px) {
  .bb-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .bb-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bb-process-section,
  .bb-projects-section {
    margin: 40px 0;
    padding: 48px 18px;
    border-radius: 18px;
  }

  .bb-section-heading {
    margin-bottom: 32px;
  }

  .bb-process-grid,
  .bb-project-grid {
    grid-template-columns: 1fr;
  }

  .bb-process-card {
    min-height: 0;
  }

  .bb-project-button,
  .bb-projects-cta .btn {
    width: 100%;
  }

  .bb-process-card:hover,
  .bb-project-card:hover {
    transform: none;
  }
}

.bb-reveal.bb-reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.bb-reveal.bb-reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bb-reveal,
  .bb-reveal.bb-reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}