@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Funnel+Display:wght@300..800&display=swap");
*,
*::before,
*::after {
  /* box-sizing: border-box; */
  margin: 0;
  padding: 0;
}

:root {
  --red: #cc0000;
  --dark: #0a0a0a;
  --white: #ffffff;
  --grey: rgba(255, 255, 255, 0.55);
  --nav-h: 72px;
}

html,
body {
  overflow-x: hidden;
  background: var(--white);
  font-family: "Clash Display", sans-serif;
}

/* 
       NAVBAR
     */
.Slifax-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  width: 100%;
  height: var(--nav-h);
  border-bottom: none;
}

.Slifax-nav > .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Brand */
.Slifax-brand {
  text-decoration: none;
  flex-shrink: 0;
  font-family: "Clash Display", sans-serif;
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.Slifax-brand sup {
  font-family: "Clash Display", sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  vertical-align: top;
  margin-top: 5px;
}

/* Logo */
.Slifax-brand img {
  width: 140px;
}

/* Nav list */
.nav-links {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Every top-level link / button */
.nav-links > li > a,
.nav-links > li > .dd-btn {
  font-family: "Clash Display", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > .dd-btn:hover {
  color: var(--red);
}

.nav-links > li.active > a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav-links > li.active > a {
  color: var(--white);
}

/* Chevron */
.dd-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-links > li.dd-open > .dd-btn .dd-chevron {
  transform: rotate(180deg);
}

/* Dropdown wrapper */
.nav-links > li.has-dd {
  position: relative;
}

/* Dropdown panel */
.dd-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.45rem 0;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 300;
}

.dd-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Caret */
.dd-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top: none;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dd-panel::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: none;
  border-bottom-color: #141414;
}

.dd-panel a {
  display: block;
  padding: 0.62rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Funnel Display", sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}

.dd-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.dd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0.3rem 0;
}

/* Contact */
.btn-contact {
  font-family: "Funnel Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #292828;
  background: var(--white);
  border: 1.5px solid var(--white);
  border-radius: 2px;
  padding: 8px 17px;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.22s,
    color 0.22s;
  white-space: nowrap;
}

.btn-contact:hover {
  background: transparent;
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 
       MOBILE NAV  (floats over the hero, below the navbar)
     */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0e0e0e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.4rem 0 1rem;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 240;
}

.mobile-nav.open {
  display: flex;
}

.mn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 1.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Funnel Display", sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition:
    background 0.15s,
    color 0.15s;
}

.mn-row:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.mn-row .mn-chevron {
  font-size: 0.72rem;
  transition: transform 0.2s;
}

.mn-row.open .mn-chevron {
  transform: rotate(180deg);
}

.mn-sub {
  display: none;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
}

.mn-sub.open {
  display: flex;
}

.mn-sub a {
  padding: 0.65rem 3rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Funnel Display", sans-serif;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.15s;
}

.mn-sub a:hover {
  color: var(--white);
}

.mn-divider-sub {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.mn-contact {
  margin: 0.9rem 1.8rem 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-family: "Funnel Display", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: none;
  border-radius: 2px;
  padding: 0.55rem 1.2rem;
  text-decoration: none;
}

/* Update this class */
/* Add this new class for when the user scrolls */
/* Base Navbar state */
.Slifax-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  /* Start transparent */
  transition: all 0.4s ease-in-out;
  /* padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; */
}

/* Scrolled state */
.Slifax-nav.scrolled {
  background-color: #0e0e0e !important;
  height: 70px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  /* Adjusting padding so the nav looks compact when scrolled */
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Ensure the mobile nav stays fixed too */
.mobile-nav {
  position: fixed;
  /* Changed from absolute */
  /* ... rest of your mobile-nav code ... */
}

/*
       HERO SLIDER
     */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide backgrounds */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-1 {
  background-image: url("../images/slide1.jpeg");
  background-size: cover;
  background-position: center right;
}

.slide-2 {
  background-image: url("../images/slider-2.jpeg");
  background-size: cover;
  background-position: center right;
}

.slide-3 {
  background-image: url("../images/slider-3.jpeg");
  background-size: cover;
  background-position: center right;
}

.slide-4 {
  background-image: url("../images/slider-4.jpeg");
  background-size: cover;
  background-position: center right;
}

/* Slide SVG figure */
.slide-figure {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  max-width: 700px;
  height: 95%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.slide-figure svg {
  width: 100%;
  height: 100%;
}

.slide-1 .slide-figure {
  display: none;
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 2;
  padding-left: clamp(1.5rem, 6vw, 6rem);
  padding-top: var(--nav-h);
  max-width: 900px;
  transform: translateX(-30px);
  opacity: 0;
  transition:
    transform 0.8s 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s 0.25s ease;
}

.slide.active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

.slide-eyebrow {
  font-family: "Funnel Display", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.2rem;
}

.slide-title {
  letter-spacing: 1.5px;
  font-family: "Funnel Display", sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  line-height: 75px;
  margin-bottom: 0;
}

.slide-highlight {
  display: inline-block;
  margin-top: 0.3rem;
  background: transparent linear-gradient(90deg, #f85376 0%, #cf335f 100%) 0% 0%
    no-repeat padding-box;
  color: var(--white);
  font-family: "Funnel Display", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  padding: 2px 12px 2px;
}

/* Purple */
.slide-2 .slide-highlight {
}

/* Green */
.slide-3 .slide-highlight {
  background: transparent linear-gradient(90deg, #003156 0%, #009eff 100%) 0% 0%
    no-repeat padding-box;
}

/* Blue */
.slide-4 .slide-highlight {
  background: transparent linear-gradient(90deg, #575037 0%, #e0c274b3 100%) 0%
    0% no-repeat padding-box;
}

.slide-body {
  font-family: "Clash Display", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.65;
  margin-top: 1.4rem;
  max-width: 640px;
  opacity: 80%;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
  font-family: "Clash Display", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 12px 20px;
  background: transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-explore:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* Counter */
.slide-counter {
  position: absolute;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 10;
  font-family: "Clash Display", sans-serif;
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-align: right;
}

.counter-dots {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.dot {
  height: 2px;
  width: 28px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
}

.dot.active {
  background: var(--white);
  width: 44px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
  user-select: none;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.slider-arrow.prev {
  left: 1.5rem;
}

.slider-arrow.next {
  right: 1.5rem;
}

/* Progress bar */
.progress-bar-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-bar-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
}

.scroll-hint span {
  font-family: "Funnel Display", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: var(--white);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

/* Glow ring */
.glow-ring {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 640px);
  height: min(52vw, 640px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: ringPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-50%) scale(1.04);
    opacity: 0.15;
  }
}
/* ===== MOBILE VIEW FIX ===== */
@media (max-width: 768px) {
  .hero-slider {
    overflow: hidden;
  }

  .slide {
    display: flex;
    flex-direction: column; /* Stack vertically */
    height: auto;
    min-height: 100vh;
    padding: 0;
  }

  /* Text content comes FIRST */
  .slide-content {
    order: 1;
    width: 100%;
    padding: 40px 20px 20px 20px;
    text-align: center;
    z-index: 2;
    position: relative;
  }

  /* Image/figure comes BELOW text */
  .slide-figure {
    order: 2;
    width: 100%;
    height: 55vw; /* Adjust height as needed */
    min-height: 260px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: block !important;
  }

  /* If slide background image is on .slide itself, move it to .slide-figure */
  .slide-1 .slide-figure {
    background-image: url("YOUR_SLIDE1_IMAGE.jpg");
  }
  .slide-2 .slide-figure {
    background-image: url("YOUR_SLIDE2_IMAGE.jpg");
  }
  .slide-3 .slide-figure {
    background-image: url("YOUR_SLIDE3_IMAGE.jpg");
  }
  .slide-4 .slide-figure {
    background-image: url("YOUR_SLIDE4_IMAGE.jpg");
  }

  /* Counter and dots stay at bottom */
  .slide-counter {
    order: 3;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .slide-eyebrow {
    font-size: 13px;
  }

  .slide-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .slide-highlight {
    font-size: 24px;
  }

  .slide-body {
    font-size: 14px;
  }

  .btn-explore {
    display: inline-block;
    margin-top: 16px;
  }

  /* Hide glow ring on mobile (optional) */
  .glow-ring {
    display: none !important;
  }

  /* Progress bar at very bottom */
  .progress-bar-track {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
}
/* 
       RESPONSIVE
     */
@media (max-width: 991px) {
  .slide-figure {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .Slifax-nav .nav-links,
  .Slifax-nav .btn-contact {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }
  .Slifax-nav {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .slide-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
  }

  .slide-figure {
    width: 100%;
    opacity: 0.2;
    right: -10%;
  }

  .slider-arrow {
    display: none;
  }

  .slide-counter {
    bottom: 1.4rem;
    right: 1.2rem;
  }

  .hero-slider {
    height: 100vh;
  }
}

@media (max-width: 480px) {
  .slide-title,
  .slide-highlight {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================
   MOBILE HERO SLIDER - COMPLETE SEPARATE CODE
   Max-width: 767px
   Layout: Text TOP → Full Image BOTTOM
   ============================================ */

@media (max-width: 767px) {
  /* ── Slider container ── */
  .hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 83vh;
    overflow: hidden;
  }

  /* ── Each slide: vertical stack ── */
  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column; /* Stack TOP to BOTTOM */
    align-items: stretch;
    justify-content: flex-start;
    height: 100vh;
    min-height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);

    /* Remove background image from slide itself on mobile */
    background-image: none !important;
    background: #0a0a0a; /* Dark fallback */
  }

  .slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── TEXT BLOCK — top half ── */
  .slide-content {
    order: 1;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 24px 24px 24px; /* 80px top = space for navbar */
    text-align: left;
    transform: translateX(-30px);
    opacity: 0;
    transition:
      transform 0.8s 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.8s 0.25s ease;
    background: transparent;
    flex-shrink: 0;
  }

  .slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
  }

  /* ── IMAGE BLOCK — bottom half (full width, full image) ── */
  .slide-figure {
    order: 2;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 42vh !important; /* Adjust this to show more/less image */
    min-height: 240px;
    max-width: 100% !important;
    opacity: 1 !important; /* Override the 0.2 opacity from old code */
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    display: block !important;
    flex-shrink: 0;
    z-index: 1;
  }

  /* ── Assign slide images to .slide-figure on mobile ── */
  .slide-1 .slide-figure {
    background-image: url("../images/slide1.jpeg") !important;
  }

  .slide-2 .slide-figure {
    background-image: url("../images/slider-2.jpeg") !important;
  }

  .slide-3 .slide-figure {
    background-image: url("../images/slider-3.jpeg") !important;
  }

  .slide-4 .slide-figure {
    background-image: url("../images/slider-4.jpeg") !important;
  }

  /* ── Typography ── */
  .slide-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
  }

  .slide-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 0;
  }

  .slide-highlight {
    font-size: 30px;
    line-height: 1.2;
    padding: 2px 8px;
  }

  .slide-body {
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 100%;
    opacity: 0.85;
  }

  /* ── Button ── */
  .btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    font-size: 13px;
    padding: 10px 18px;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
  }

  /* ── Hide glow ring ── */
  .glow-ring {
    display: none !important;
  }

  /* ── Hide arrows on mobile ── */
  .slider-arrow {
    display: none !important;
  }

  /* ── Counter dots — bottom right ── */
  .slide-counter {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 10;
    text-align: right;
  }

  .counter-dots {
    justify-content: flex-end;
  }

  .dot {
    width: 20px;
    height: 2px;
  }

  .dot.active {
    width: 34px;
  }

  /* ── Scroll hint ── */
  .scroll-hint {
    display: none; /* Hide on mobile — not needed */
  }

  /* ── Progress bar ── */
  .progress-bar-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 3px;
  }

  /* ── Navbar ── */
  .Slifax-nav .nav-links,
  .Slifax-nav .btn-contact {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .Slifax-nav {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}

/* ── Extra small phones ── */
@media (max-width: 400px) {
  .slide-title {
    font-size: 26px;
  }

  .slide-highlight {
    font-size: 24px;
  }

  .slide-content {
    padding: 116px 18px 20px 18px;
  }

  .slide-figure {
    height: 17vh !important;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1368px;
  }
}

/* About */
.core-thought-section {
  background-color: #f5f3f0;
}

.content-text p {
  font-size: 18px;
  color: #161a34;
}

.tool {
  font-size: 18px !important;
  font-weight: 500 !important;
}

/* Custom Variables */
:root {
  --bg-light: #f7f5f2;
  --navy-blue: #131b31;
  --brand-red: #a30000;
  --text-muted: #555555;
  --card-bg: #f3f3f3;
}

/* Typography */
.main-title {
  font-size: 52px;
  letter-spacing: 0.78px;
}

.text-brand-red {
  color: #af0400;
}

.text-muted-custom {
  line-height: 1.6;
  font-weight: 400;
  font-size: 15px !important;
  color: #555252 !important;
}

.quote-text {
  /* Gives it a more literary feel */
  color: #161a34;
}

.btn-navy {
  position: relative;
  overflow: hidden;
  padding: 13px 17px !important;
  color: #fff;
  border: none;
  background: #161a34;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.btn-navy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-navy:hover {
  background: #242d47;
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 20px rgba(22, 26, 52, 0.25);
}

.btn-navy:hover::before {
  left: 150%;
}

/* Vision/Mission Cards */
.info-card {
  background-color: transparent;
  border: 1px solid #80868f94;
  border-radius: 25px;
  padding: 21px 28px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.info-card h5 {
  font-size: 18px;
  font-weight: 500 !important;
}

.icon-box img {
  width: 56px;
  height: 56px;
  color: #b90902;
  margin-bottom: 10px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .content-text {
    padding-right: 0 !important;
  }
}

/*  HERO  */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 70px 60px 50px;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.08);
  }
}

.hero-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.18;
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-title strong {
  font-weight: 800;
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  max-width: 493px;
  position: relative;
  z-index: 1;
}

.btn-view-programs {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
}

.btn-view-programs:hover {
  background: #fff;
  color: #3b0c07;
  transform: translateX(3px);
}

.btn-view-programs svg {
  transition: transform 0.2s;
}

.btn-view-programs:hover svg {
  transform: translateX(4px);
}

/*  CARDS SECTION  */
.slider-viewport {
  overflow: hidden;
  padding: 40px 0 60px;
  /* Increased padding so scaled cards aren't clipped */
  max-width: 1300px;
  /* Limits container so 3 cards look good on large screens */
  margin: 0 auto;
}

.slider-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide-item {
  flex: 0 0 var(--slide-w);
  min-width: var(--slide-w);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
  /* padding: 14px; */
}

.slide-item.side {
  /* opacity: 0.4; */
  transform: scale(0.9);
  /* Side cards are smaller */
}

.slide-item.center {
  opacity: 1;
  transform: scale(1.05);
  /* Active card is slightly larger */
  z-index: 3;
}

.program-card {
  background: #191919;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.program-card.featured {
  background: linear-gradient(160deg, #8b1a0a 0%, #6b1208 45%, #4e0e06 100%);
  border-color: rgba(255, 100, 60, 0.3);
  /* box-shadow:
    0 24px 80px rgba(160, 30, 10, 0.6),
    0 0 0 1px rgba(255, 80, 40, 0.25); */
  animation: shimmerBorder 2.4s ease-in-out infinite;
}

/* @keyframes shimmerBorder {
  0%,
  100% {
    box-shadow:
      0 24px 80px rgba(160, 30, 10, 0.6),
      0 0 0 1px rgba(255, 80, 40, 0.2);
  }
  50% {
    box-shadow:
      0 28px 90px rgba(200, 50, 10, 0.75),
      0 0 28px 3px rgba(255, 120, 60, 0.4);
  }
} */
.card-header-block {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin: 16px 16px 0;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.featured .card-header-block {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 120, 80, 0.2);
}

.card-icon {
  width: 53px;
  height: 53px;
  font-size: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-program-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.card-program-sub {
  font-size: 16px;
  color: #ffffff;
  margin-top: 2px;
}

.featured .card-program-sub {
  color: #f0b8a8;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 16px;
}

.featured .card-divider {
  background: rgba(255, 120, 80, 0.2);
}

.card-price-block {
  text-align: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0 16px;
}

.featured .card-price-block {
  border-bottom-color: rgba(255, 120, 80, 0.2);
}

.card-price {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.card-price-label {
  font-size: 16px;
  color: #ffffff;
  margin-top: 5px;
}

.featured .card-price-label {
  color: #f0b8a8;
}

.card-features {
  list-style: none;
  padding: 16px 28px;
  flex: 1;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #ffffffb0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

.featured .card-features li {
  color: #f5d5cc;
  border-bottom-color: rgba(255, 120, 80, 0.15);
}

.card-features li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 18px;
  height: 18px;
  border: 1.5px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.featured .check-icon {
  border-color: #ff9070;
}

.check-icon svg {
  width: 9px;
  height: 9px;
}

.card-footer-block {
  padding: 14px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-view-details {
  font-size: 0.84rem;
  color: #fff;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-weight: 500;
}

.btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: scale(1.1);
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.sl-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s;
}

.sl-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: scale(1.1);
}

.sl-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: #bbadad;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #e03010;
  width: 40px;
}

/*  SCROLL ANIMATIONS  */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-zoom-in {
  opacity: 0;
  transition: all 0.7s ease;
}

.anim-fade-up {
  transform: translateY(50px);
}

.anim-fade-left {
  transform: translateX(-60px);
}

.anim-fade-right {
  transform: translateX(60px);
}

.anim-zoom-in {
  transform: scale(0.82);
}

.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-zoom-in.visible {
  opacity: 1;
  transform: none;
}

.card-features li {
  /* opacity: 0; */
  transform: translateX(-16px);
  transition: all 0.4s ease;
}

.card-features.list-visible li:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.card-features.list-visible li:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.card-features.list-visible li:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.19s;
}

.card-features.list-visible li:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.26s;
}

.card-features.list-visible li:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.33s;
}

@keyframes pricePop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.card-price.price-popped {
  animation: pricePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 44px 24px 36px;
  }

  .hero-title {
    font-size: 35px;
  }
}

:root {
  --bg-cream: #f8f7f4;
  --Slifax-red: #bc1a1a;
  --dark-navy: #1a1e2e;
}

.section-container {
  padding: 80px 0;
  background: #f5f3f0;
}

.head-thin {
  font-weight: 400;
  font-size: 52px;
  margin-bottom: 1px;
}

.head-bold {
  font-weight: 700;
  font-size: 52px;
  color: #af0400;
}

.sub-desc {
  color: #555252;
  max-width: 442px;
  font-size: 16px;
  margin-top: 15px;
}

.btn-view-more {
  background-color: var(--dark-navy);
  color: white;
  padding: 15px 31px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  align-items: center;
  transition: 0.3s;
}

.btn-view-more:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.cards-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-card {
  background: white;
  width: 280px;
  /* Fixed width for all cards */
  height: 120px;
  /* Fixed height for all cards */
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}

.exp-card p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #1a1a1a;
}

.card-num {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  background: #f5f3f0;
}

@media (min-width: 992px) {
  /* Left Side Offsets */
  .card-01 {
    align-self: flex-end;
    margin-right: 6px;
  }

  .card-02 {
    align-self: flex-start;
    margin-left: 45px;
  }

  .card-03 {
    align-self: flex-start;
    margin-left: -35px;
  }

  .card-04 {
    align-self: flex-end;
    margin-right: -1px;
    margin-top: -139px;
  }

  /* Right Side Offsets */
  .card-05 {
    align-self: flex-start;
    margin-left: 5px;
  }

  .card-06 {
    align-self: flex-end;
    margin-right: -40px;
  }

  .card-07 {
    align-self: flex-start;
    margin-left: 16px;
  }
}

.char-box {
  background-color: #fde9d8;
  border-radius: 40px;
  width: 100%;
  max-width: 379px;
  height: 387px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.char-img {
  width: 100%;
  /* Character pops out */
  height: auto;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/*  Animations  */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating motion */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-item {
  animation: float 5s ease-in-out infinite;
}

.float-item-delay {
  animation: float 5s ease-in-out infinite 2s;
}

/* Responsive Mobile */
@media (max-width: 991px) {
  .exp-card {
    width: 100%;
    height: auto;
    min-height: 100px;
    align-self: center !important;
    margin: 0 !important;
  }
  .float-item {
    animation: none;
  }

  .float-item-delay {
    animation: none;
  }
  .char-box {
    margin: 40px auto;
    height: 100%;
  }

  .head-thin,
  .head-bold {
    font-size: 2.5rem;
    text-align: center;
  }

  .sub-desc {
    text-align: center;
    margin: 15px auto;
  }

  .btn-view-more {
    display: flex;
    margin: 0 auto 40px;
    width: fit-content;
  }
}

.head-thin {
  font-weight: 300;
  font-size: 52px;
  color: #1a1e2e;
  margin: 0;
  letter-spacing: -1px;
}

.head-bold {
  font-weight: 800;
  font-size: 52px;
  color: #af0400;
  margin-top: -6px;
  letter-spacing: 1px;
}

.head-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  max-width: 691px;
  margin-top: 29px;
}

.gallery-grid {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  align-items: flex-start;
}

/* Column Widths precisely matching the design proportions */
.gal-col-1 {
  width: 22%;
}

.gal-col-2 {
  width: 22%;
}

.gal-col-3 {
  width: 22%;
}

.gal-col-4 {
  width: 34%;
}

/* Wider to accommodate text/button space */
.gallery-item {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #eee;
  transition: transform 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: scale 0.5s ease;
}

.gallery-item:hover img {
  scale: 1.05;
}

/* Column 1 (Camera Man) - Centered vertically */
.img-1 {
  height: 440px;
  margin-top: 100px;
}

/* Column 2 (Studios) - Higher up */
.img-2 {
  height: 320px;
  margin-top: 40px;
}

.img-3 {
  height: 320px;
}

/* Column 3 (Tall Center - Woman with plants) */
.img-4 {
  height: 530px;
  margin-top: -30px;
}

/* Column 4 (Sunset & Portrait) */
.img-5 {
  height: 380px;
  margin-top: 20px;
}

.img-6 {
  height: 280px;
}

.btn-container {
  display: flex;
  justify-content: flex-end;
  /* Aligns to far right under Image 6 */
  margin-top: 10px;
}

.btn-view-more {
  background-color: #1a1e2e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 0px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transition: background 0.3s ease;
}

.btn-view-more:hover {
  background: #000;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .gallery-grid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .gal-col-1,
  .gal-col-2,
  .gal-col-3,
  .gal-col-4 {
    width: calc(100% - 8px);
  }

  .gallery-item {
    height: 300px !important;
    margin-top: 0 !important;
  }

  .head-thin,
  .head-bold {
    font-size: 35px;
  }

  .head-desc {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/*  Section Styles  */
.mentors-section {
  background-color: #000;
  background-image: url("../images/about-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Red Light Streak Simulation (Optional Pseudo-element) */
.mentors-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(188, 26, 26, 0.15) 40%,
    transparent 60%
  );
  pointer-events: none;
}

/*  Mentor Image  */
.profile-frame {
  display: inline-block;
  padding: 8px;
  background: #fff;
  /* White border */
  border-radius: 50%;
}

.mentor-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

.mentor-name {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.mentor-name span {
  /* font-weight: 700; */
}

.mentor-name small {
  font-size: 1rem;
  color: #bbb;
  font-weight: 300;
  margin-left: 10px;
}

.mentor-desc {
  opacity: 90%;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 929px;
}

.mentor-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 60px 0;
  opacity: 1;
}

/*  ANIMATION STATES  */
.reveal {
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.anim-left {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1.2s ease;
}

.anim-right {
  transform: translateX(100px);
  opacity: 0;
  transition: all 1.2s ease;
}

.anim-fade-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

/* When "active" class is added by JS */
.active.reveal,
.active .anim-left,
.active .anim-right,
.active.anim-fade-up {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delaying internal parts */
.active .mentor-content {
  transition-delay: 0.3s;
}

.active .profile-frame {
  transition-delay: 0.1s;
}

@media (max-width: 768px) {
  .mentor-name {
    font-size: 2rem;
  }

  .mentor-img {
    width: 180px;
    height: 180px;
  }
}

/* Unique Branding Colors */
.Slifax-blog-section {
  --blog-red: #bc1a1a;
  --blog-navy: #161b2e;
  background-color: #fff;
  overflow: hidden;
}

/*  Heading  */
.Slifax-blog-heading-thin {
  font-weight: 400;
  font-size: 52px;
  letter-spacing: 0.78px;
  color: #161a34;
}

.Slifax-blog-heading-bold {
  font-weight: 800;
  color: var(--blog-red);
}

.Slifax-blog-top-desc {
  color: #555252;
  font-size: 16px;
  line-height: 1.6;
  max-width: 548px;
  font-weight: 400;
}

.Slifax-blog-view-all {
  background-color: #161a34;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 0px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

/*  Carousel Wrapper  */
.Slifax-blog-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 19px 0;
  scrollbar-width: none;
  /* Firefox */
}

.Slifax-blog-container::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */
.Slifax-blog-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 282px;
  border: 1px solid;
  padding: 27px;
  border: 0.5px solid #70707066;
  border-radius: 20px;
  opacity: 1;
}

.Slifax-blog-card {
  border: none;
  background: transparent;
}

.Slifax-blog-img-box {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  /* Allows date badge to sit slightly out */
  height: 234px;
}

.Slifax-blog-img-box img {
  width: 89%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.Slifax-blog-date {
  position: absolute;
  top: 20px;
  right: -10px;
  font-weight: 500;
  font-size: 25px;
  color: #1a1a1a;
  text-align: center;
  line-height: 1;
}

.Slifax-blog-date span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1f242e;
}

.Slifax-blog-title {
  font-size: 18px;
  font-weight: 500;
  margin: 18px 7px 15px;
  line-height: 1.4;
  color: #1a1a1a;
}

.Slifax-blog-link {
  color: var(--blog-red) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

/*  Progress Bar & Buttons  */
.Slifax-blog-progress-bg {
  height: 4px;
  background-color: #eee;
  border-radius: 10px;
  width: 100%;
}

.Slifax-blog-progress-bar {
  height: 100%;
  background-color: var(--blog-navy);
  width: 25%;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.Slifax-blog-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #796868d9;
  background: transparent;
  color: #333;
  margin-left: 12px;
  transition: 0.3s;
}

.Slifax-blog-nav-btn:hover {
  border-color: var(--blog-navy);
  background: var(--blog-navy);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .Slifax-blog-item {
    flex: 0 0 calc(50% - 15px);
  }

  .Slifax-blog-heading-thin,
  .Slifax-blog-heading-bold {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .Slifax-blog-item {
    flex: 0 0 85%;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Main Styles Ã¢â€â‚¬Ã¢â€â‚¬ */
.Slifax-footer-section {
  background-color: #161a34;
  /* Dark navy background */
  padding: 80px 0 30px;
  color: #ffffff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Typography Ã¢â€â‚¬Ã¢â€â‚¬ */
.Slifax-footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #fbfbf9;
  max-width: 322px;
  opacity: 80%;
}

.Slifax-footer-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: #ffffff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Social Icons (Outlined) Ã¢â€â‚¬Ã¢â€â‚¬ */
.Slifax-footer-socials {
  display: flex;
  gap: 12px;
}

.Slifax-footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.Slifax-footer-socials a:hover {
  background-color: #ffffff;
  color: #121626;
  border-color: #ffffff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Links Ã¢â€â‚¬Ã¢â€â‚¬ */
.Slifax-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Slifax-footer-links li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ffffff;
  /* opacity: 99%; */
}

.Slifax-footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  opacity: 80%;
}

.Slifax-footer-links li a:hover {
  color: #ffffff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Contact Info Ã¢â€â‚¬Ã¢â€â‚¬ */
.Slifax-footer-contact p {
  margin: 0;
  font-size: 0.95rem;
  color: #b1b1b1;
  line-height: 1.5;
}

.Slifax-footer-contact i {
  color: #ffffff;
  font-size: 1.1rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Bottom Copyright Ã¢â€â‚¬Ã¢â€â‚¬ */
.Slifax-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 60px !important;
}

.Slifax-footer-bottom p {
  font-size: 15px;
  color: #fff;
  opacity: 90%;
}

.Slifax-credits span {
  color: #ffffff;
  font-weight: 500;
}

.hero-slider .dot.active {
  background: #fff;
  width: 40px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 991px) {
  .Slifax-footer-section {
    padding: 60px 0 30px;
  }
}

/* Specific Styles for Inner Breadcrumb Page */
.breadcrumb-section {
  background-color: #000;
  background-image: url("../images/bb.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 140px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
  content: "➜";
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-item.active {
  color: #fff;
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
  justify-content: center;
}

.breadcrumb h2 {
  font-size: 34px;
  color: #fff;
}

.rfac-vision-section {
  position: relative;
  min-height: 100vh;
  background-color: #fff;
  /* Right side color */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

/* Diagonal Background Image */
.vision-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  /* Extends over half */
  height: 100%;
  background: url("../images/aa.png") no-repeat center center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 70% 103%, 0% 100%);
  /* The diagonal cut */
}

/* Content Container */
.vision-content-wrapper {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Staggered Row Layout */
.vision-item {
  display: flex;
  align-items: center;
  gap: 53px;
}

/* Rotate items to follow the diagonal slope */
.vision-item:nth-child(1) {
  margin-left: 150px;
}

.vision-item:nth-child(2) {
  margin-left: -10px;
}

.vision-item:nth-child(3) {
  margin-left: -225px;
}

/* The Red Diamond Icons */
.vision-diamond {
  width: 70px;
  height: 70px;
  background-color: #bc1a1a;
  /* Your Brand Red */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  /* Rotates the square to a diamond */
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(188, 26, 26, 0.3);
}

.vision-diamond i {
  color: #fff;
  font-size: 1.8rem;
  transform: rotate(-45deg);
  /* Un-rotates the icon so it stays upright */
}

/* Text Content */
.vision-text h3 {
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 8px;
  color: #1a1b2e;
}

.vision-text p {
  color: #555252;
  font-size: 15px;
  line-height: 1.6;
  max-width: 570px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 991px) {
  .vision-bg-image {
    width: 100%;
    height: 400px;
    position: relative;
    clip-path: none;
  }

  .rfac-vision-section {
    flex-direction: column;
    padding: 0 0 80px;
  }

  .vision-item {
    margin-left: 0 !important;
    padding: 0 20px;
    flex-direction: column;
    text-align: center;
  }

  .vision-content-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.rfac-stats-section {
  background-color: #f5f3f0;
  /* Light cream background */
  padding: 100px 0;
}

/* Heading Styles */
.rfac-stats-section .head-thin {
  font-weight: 400;
  font-size: 52px;
  color: #161a34;
}

.rfac-stats-section .head-bold {
  font-weight: 800;
  font-size: 3.5rem;
  color: #1a1e2e;
  line-height: 1;
}

.rfac-stats-section .head-bold span {
  color: #bc1a1a;
  /* Your Brand Red */
}

/* Vertical Line Divider (Desktop Only) */
@media (min-width: 992px) {
  .border-start-lg {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* Stat Item Styling */
.stat-number {
  font-weight: 500;
  font-size: 42px;
  color: #1a1e2e;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 15px;
  color: #161a34;
  font-weight: 400;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .rfac-stats-section .head-thin,
  .rfac-stats-section .head-bold {
    font-size: 35px;
  }

  .stat-number {
    font-size: 2.8rem;
  }
}

/* â”€â”€ Section Specific Typography â”€â”€ */
.rfac-faq-section .head-thin {
  font-weight: 400;
  font-size: 52px;
  color: #161a34;
}

.btn-navy {
  text-decoration: none;
}

/* â”€â”€ Custom Accordion â”€â”€ */
.rfac-custom-accordion {
  border: none;
}

.rfac-custom-accordion .accordion-item {
  border: 1px solid #eee;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

/* Active Glow Effect */
.rfac-custom-accordion .accordion-item:has(.show) {
  border-color: rgba(188, 26, 26, 0.1);
  box-shadow: 0 15px 35px rgba(188, 26, 26, 0.08);
}

.rfac-custom-accordion .accordion-button {
  padding: 22px 25px;
  font-weight: 500;
  font-size: 1.05rem;
  color: #222e34;
  background-color: #fff;
  border: none;
  box-shadow: none !important;
}

.rfac-custom-accordion .accordion-button:not(.collapsed) {
  color: #222e34;
}

/* Custom Icon (Plus/Minus) */
.rfac-custom-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1e2e;
  transition: transform 0.3s ease;
}

.rfac-custom-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
  color: #bc1a1a;
  transform: rotate(180deg);
}

.rfac-custom-accordion .accordion-body {
  padding: 0 25px 25px;
  color: #040135;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

/* â”€â”€ Image Wrapper â”€â”€ */
.faq-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
a {
  text-decoration: none;
}
/* Responsive fixes */
@media (max-width: 991px) {
  .rfac-faq-section .head-thin,
  .rfac-faq-section .head-bold {
    font-size: 2.5rem;
    text-align: center;
  }

  .sub-desc {
    text-align: center !important;
    margin: 15px auto !important;
  }

  .btn-navy {
    display: table;
    margin: initial;
  }

  .faq-image-wrapper img {
    height: 400px;
  }
}
:root {
  --Slifax-cream: #f9f8f4;
  --Slifax-navy: #161a34;
  --Slifax-red: #bc1a1a;
}

.Slifax-pg-section {
  background-color: #fff;
}

/* ── Heading ── */
.Slifax-pg-main-title {
  font-weight: 400;
  font-size: 52px;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 0;
}
.Slifax-pg-sub-title {
  font-weight: 800;
  font-size: 52px;
  letter-spacing: 2px;

  color: var(--Slifax-red);
}

/* ── Program Cards ── */
.Slifax-pg-card {
  background-color: #f5f3f0;
  border-radius: 23px;
  padding: 35px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.Slifax-pg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.Slifax-pg-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  background: #ffffff;
  justify-content: center;
  border-radius: 23px;
  padding: 23px;
}
.Slifax-pg-icon {
  font-size: 3.5rem;
}
.Slifax-pg-card-header h5 {
  font-weight: 800;
  margin: 0;
  font-size: 1.15rem;
  color: #1a1a1a;
}
.Slifax-pg-card-header span {
  font-size: 14px;
  color: #666;
}

.Slifax-pg-price-box {
  text-align: center;
  margin-bottom: 25px;
}
.Slifax-pg-price-box h3 {
  font-weight: 500;
  font-size: 42px;
  color: var(--Slifax-navy);
  margin-bottom: 0;
}
.Slifax-pg-price-box p {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.Slifax-pg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
}
.Slifax-pg-features li {
  font-size: 15px;
  color: #1b1818;
  margin-bottom: 8px;
  display: flex;
  gap: 11px;
  line-height: 40px;
  border-bottom: 1px solid #88601129;
  font-weight: 400;
}
.Slifax-pg-features li i {
  color: #24212180;
  font-size: 15px;
}
.Slifax-pg-btn {
  background-color: var(--Slifax-navy);
  color: white !important;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  transition: background 0.3s;
}
.Slifax-pg-btn:hover {
  background-color: #000;
}
.Slifax-pg-arrow {
  background: #fff;
  color: var(--Slifax-navy);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ── Notice Card ── */
.Slifax-pg-notice-card {
  background: linear-gradient(180deg, #000000 0%, #4a0000 100%);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Slifax-pg-notice-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.Slifax-pg-date {
  font-weight: 800;
  font-size: 3rem;
}
.Slifax-pg-note {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 300;
}

/* ── Animation Reveal ── */
.Slifax-pg-reveal {
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.Slifax-pg-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .Slifax-pg-main-title {
    font-size: 1.6rem;
  }
  .Slifax-pg-sub-title {
    font-size: 2.2rem;
  }
}
:root {
  --gal-red: #bc1a1a;
  --gal-navy: #1a1b2e;
}

.Slifax-gal-main-title {
  font-weight: 400;
  font-size: 2.5rem;
  color: #333;
}
.Slifax-gal-main-title span {
  font-weight: 800;
  color: var(--gal-red);
}

/* Filter Tabs */
.Slifax-gal-filters {
  gap: 30px;
  font-size: 0.95rem;
}
.Slifax-gal-filter-btn {
  cursor: pointer;
  font-weight: 500;
  color: #666;
  padding-bottom: 5px;
  position: relative;
  transition: 0.3s;
}
.Slifax-gal-filter-btn.active {
  color: #000;
}
.Slifax-gal-filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gal-red);
  transition: 0.3s;
}
.Slifax-gal-filter-btn.active::after {
  width: 29px;
}

/* Grid Layout */
.Slifax-gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.Slifax-gal-item {
  border-radius: 24px;
  overflow: hidden;
  /* height: 350px; */
  background-color: #f5f5f5;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.form-label {
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: 500;
}
.Slifax-gal-wide {
  grid-column: span 2;
}

.Slifax-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.Slifax-gal-item:hover img {
  transform: scale(1.05);
}

/* Tab Filtering Animation Classes */
.Slifax-gal-hide {
  display: none;
}
.Slifax-gal-show {
  animation: SlifaxFadeIn 0.5s ease forwards;
}

@keyframes SlifaxFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .Slifax-gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .Slifax-gal-wide {
    grid-column: span 1;
  }
}
@media (max-width: 576px) {
  .Slifax-gal-grid {
    grid-template-columns: 1fr;
  }
  .Slifax-gal-item {
    height: 250px;
  }
}
.Slifax-blist-section {
  background-color: #fff;
  --blist-red: #bc1a1a;
}

.Slifax-blist-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.Slifax-blist-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.Slifax-blist-img-box {
  flex: 1;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.Slifax-blist-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Date Badge Style */
.Slifax-blist-date {
  width: 45px;
  text-align: center;
  padding-top: 10px;
}

.Slifax-blist-date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #1a1a1a;
}

.Slifax-blist-date .month {
  display: block;
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  margin-top: 2px;
}

/* Content Area */
.Slifax-blist-body {
  margin-top: 20px;
}
.Slifax-blist-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 12px;
}
.Slifax-blist-link {
  color: var(--blist-red);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}

.Slifax-blist-link:hover {
  color: #000;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .Slifax-blist-img-box {
    height: 180px;
  }
  .Slifax-blist-card {
    padding: 15px;
  }
  .Slifax-blist-date .day {
    font-size: 1.3rem;
  }
}
:root {
  --bs-brand-red: #bc1a1a;
  --bs-navy: #1a1e2e;
}

/* ── Content Styles ── */
.Slifax-bs-meta {
  font-size: 15px;
  color: #888;
  font-weight: 500;
}

.Slifax-bs-meta i {
  color: var(--bs-brand-red);
}

.Slifax-bs-post-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--bs-navy);
}

.Slifax-bs-text-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 1.5rem;
  opacity: 78%;
}

.Slifax-bs-takeaways li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.Slifax-bs-takeaways i {
  color: #000;
  font-size: 1.2rem;
}

/* ── Sidebar Widgets ── */
.Slifax-bs-widget-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #333;
}

/* Search */
.Slifax-bs-search input {
  padding: 12px;
  border: 1px solid #eee;
  background: #fcfcfc;
  font-size: 0.9rem;
}
.Slifax-bs-btn-red {
  background-color: var(--bs-brand-red);
  color: white;
  padding: 0 18px;
}
.Slifax-bs-btn-red:hover {
  color: white;
  background: #000;
}

/* Recent Posts */
.Slifax-bs-recent-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}
.Slifax-bs-recent-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.Slifax-bs-recent-item h6 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
  line-height: 1.4;
  color: #1a1a1a;
}
.Slifax-bs-recent-item span {
  font-size: 0.75rem;
  color: #999;
}

/* Tags */
.Slifax-bs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.Slifax-bs-tags a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  border: 1px solid #eee;
  padding: 6px 15px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
  letter-spacing: 1px;
}
.Slifax-bs-tags a:hover {
  background: var(--bs-brand-red);
  color: white;
  border-color: var(--bs-brand-red);
}

/* Sidebar Gallery */
.Slifax-bs-sidebar-gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.Slifax-bs-sidebar-gal img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .Slifax-bs-post-title {
    font-size: 1.8rem;
  }
  .Slifax-bs-sidebar {
    margin-top: 50px;
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
  }
}

.text-red {
  color: #af0d06;
}
.bg-red {
  background-color: #af0d06;
}

/* Header section */
.contact-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
}
.contact-header p {
  font-size: 0.85rem;
  color: #666;
}

/* Form Container */
.form-section {
  background-color: #f7f5f3;
  border-radius: 20px;
  padding: 40px;
}

.form-control {
  border: none;
  border-radius: 8px;
  padding: 16px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
}
.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  height: 150px;
}

.btn-send {
  background-color: #af0d06;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-send:hover {
  background-color: #8a0b05;
  color: white;
}

/* Image styling */
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Footer Info Section */
.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #af0d06;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.info-text h6 {
  margin: 0;
  font-weight: 500;
  color: #1512129c;
  font-size: 15px;
}
.info-text p {
  margin: 0;
  font-weight: 500;
  color: #1a1a3a;
  font-size: 14px;
}
.vertical-divider {
  border-right: 1px solid #ddd;
}
.vision-item strong {
  font-weight: 550 !important;
  /* color: #bc1a1a; */
}
.bdgets {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #333;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dots {
  height: 8px;
  width: 8px;
  background-color: #ff4b2b;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  position: relative;
}

/* Pulsing effect on the dot */
.dots::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff4b2b;
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .vertical-divider {
    border-right: none;
    margin-bottom: 20px;
  }
  .main-title {
    font-size: 35px;
    letter-spacing: 0.78px;
  }
  br {
    display: none;
  }
}
.Slifax-bs-main-img img {
  height: 940px;
  object-fit: cover;
}
.Slifax-bs-text-content h3 {
  font-size: 18px;
  color: #9c0808;
}
