/* =======================
   GLOBAL CSS START
   ======================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

/* Root Variables – Unified Color Palette */
:root {
  --primary-orange: #DB5A36;
  --primary-orange-light: #e8735a;
  --navy-blue: #0B3432;
  --primary-dark: #032E2E;
  --card-border: #0B3432;
  --bg-light-blue: #EFFFFF;
  --text-dark: #0B3432;
  --accent-orange: #DB5A36;
  --text-muted: #5a6b6b;
  --text-white: #ffffff;
  --badge-bg: #FDF1ED;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --btn-shadow: 0 4px 15px rgba(219, 90, 54, 0.3);
  --btn-shadow-hover: 0 8px 25px rgba(219, 90, 54, 0.4);
  --fc-osha-primary-dark: #0B3432;
  --fc-osha-primary-orange: #DB5A36;
  --fc-osha-border: #e0e0e0;

  /* Transition presets */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --hover-lift: translateY(-4px);
  --hover-lift-strong: translateY(-8px);
  --hover-scale: scale(1.02);
}

/* Base Reset */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
}

.section-space {
  padding: 80px 0;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */

header.container-fluid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: transparent;
}

header.container-fluid.sticky {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}



.nav-capsule {
  background: var(--bg-light-blue);
  border-radius: 10px;
  padding: 10px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-top: 5px;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-capsule .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.nav-capsule .navbar-collapse {
  flex-grow: 0;
  order: 2;
}

.nav-capsule .d-flex.justify-content-end {
  order: 3;
}

.navbar-brand {
  order: 1;
}


.logo-img {
  width: 150px;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-center {
  gap: 35px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-collapse {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.navbar-collapse.collapse:not(.show) {
  display: flex;
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none;
  }
  
  .navbar-collapse.show {
    display: block;
  }
}

.nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

/* =======================
   NAVIGATION ACTIVE STATES
   ======================= */

/* Desktop Navigation Active Link */
.nav-link.active {
  color: var(--primary-orange) !important;
}

.nav-link.active::after {
  width: 100%;
}

/* For navbar-nav links (Bootstrap) */
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
}

/* Mobile Navigation Active Link */
.mobile-nav-link.active {
  color: var(--primary-orange);
  background: rgba(219, 90, 54, 0.05);
  padding-left: 32px;
}

.mobile-nav-link.active::before {
  width: 4px;
}

/* =======================
   NAVIGATION ACTIVE STATES END
   ======================= */
/* Desktop CTA Button */
.btn-get-started {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 50%, var(--primary-orange) 100%);
  background-size: 200% 200%;
  box-shadow: var(--btn-shadow);
  color: var(--white);
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-get-started:hover::before {
  left: 100%;
}

.btn-get-started::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 43px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light), var(--primary-orange));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn-get-started:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--btn-shadow-hover), 0 0 30px rgba(219, 90, 54, 0.4);
  background-position: 100% 0;
}

.btn-get-started:hover::after {
  opacity: 1;
  animation: btn-glow-pulse 1.5s ease-in-out infinite;
}

@keyframes btn-glow-pulse {

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

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Mobile menu toggle button styles */
.mobile-menu-toggle {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: relative;
  flex: none;
}

.mobile-menu-toggle i {
  font-size: 24px;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.mobile-menu-toggle .menu-icon {
  position: absolute;
}

.mobile-menu-toggle.active .menu-icon.fa-bars {
  display: none;
}

.mobile-menu-toggle.active .menu-icon.fa-xmark {
  display: block !important;
}

.mobile-toggle-wrapper {
  display: none;
}

/* Tablet and mobile - show menu toggle */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-toggle-wrapper {
    display: block !important;
  }

  .desktop-btn {
    display: none;
  }

  .nav-center {
    display: none;
  }

  .nav-capsule {
    padding: 10px 20px;
  }
}

/* ========================================
   NAVIGATION RESPONSIVE FIXES
   ======================================== */

/* Large Desktop - 1400px+ */
@media (max-width: 1400px) {
  .nav-center {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  .nav-capsule {
    padding: 10px 20px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .nav-center {
    gap: 18px;
  }
  
  .nav-link {
    font-size: 13px;
  }
  
  .logo-img {
    width: 130px;
  }
  
  .nav-capsule {
    padding: 8px 15px;
  }
  
  .d-flex.justify-content-end.gap-3 {
    gap: 10px !important;
  }
  
  .desktop-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Small Desktop - 992px */
@media (max-width: 992px) {
  .nav-center {
    gap: 12px;
  }
  
  .nav-link {
    font-size: 12px;
    padding: 8px 6px;
  }
  
  .logo-img {
    width: 120px;
  }
}

/* ========================================
   HERO & VIDEO BACKGROUND
   ======================================== */

.hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
}

.hero-wrapper-osha {
  position: relative;
  width: 100%;
  min-height: 850px;
  overflow: hidden;
}

.hero-bg-redo {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.25) 30%, transparent 65%),
    radial-gradient(circle at 75% 75%, rgba(140, 170, 165, 0.35) 0%, transparent 55%),
    linear-gradient(140deg, rgba(214, 219, 220, 0.75), rgba(174, 183, 184, 0.75));
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-overlay-img {
  position: absolute;


}

.content-area {
  position: relative;
  z-index: 3;
  height: 700px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-weight: 700;
  color: var(--navy-blue);
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-dark);
}

/* Buttons */
.btn-orange-action {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
  color: white;
  border-radius: 50px;
  padding: 14px 30px;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(219, 90, 54, 0.3);
  z-index: 1;
}

.btn-orange-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-orange-action:hover::before {
  left: 100%;
}

.btn-orange-action::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(15px);
}

.btn-orange-action:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 35px rgba(219, 90, 54, 0.45);
}

.btn-orange-action:hover::after {
  opacity: 1;
  animation: btn-action-glow 1.5s ease-in-out infinite;
}

@keyframes btn-action-glow {

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

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.arrow-bg {
  background: white;
  color: var(--primary-orange);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-orange-action:hover .arrow-bg {
  transform: translateX(5px) rotate(45deg);
  background: var(--navy-blue);
  color: white;
}

.btn-outline-custom {
  border: 2px solid white;
  color: var(--primary-dark);
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.btn-outline-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, white, var(--primary-orange), white);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-outline-custom::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-orange);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-custom:hover::before {
  opacity: 1;
  animation: border-rotate 2s linear infinite;
}

.btn-outline-custom:hover::after {
  left: 100%;
}

@keyframes border-rotate {
  0% {
    background: linear-gradient(135deg, white, var(--primary-orange), white);
  }

  50% {
    background: linear-gradient(225deg, white, var(--primary-orange), white);
  }

  100% {
    background: linear-gradient(135deg, white, var(--primary-orange), white);
  }
}

/* =======================
   TYPOGRAPHY & UTILITIES
   ======================= */

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

.text-primary-orange {
  color: var(--primary-orange) !important;
}

.text-orange {
  color: var(--primary-orange) !important;
}

.bg-white {
  background-color: var(--white);
}

.section-label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  justify-content: center;
}

.section-label .arrow {
  color: var(--accent-orange);
  font-weight: bold;
}

.sub-icon-head {
  width: 12px;
  height: auto;
}

.highlight {
  color: var(--accent-orange);
}

.top-glass-box {
  max-width: fit-content;
  margin: 60px auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 25%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 20px 40px rgba(255, 255, 255, 0.05), inset 0 -20px 40px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  text-align: center;
  z-index: 1000;
}

.top-glass-box-osha {
  max-width: fit-content;
  margin: 60px auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: absolute;
  padding: 20px;
  left: 20px;
  right: 20px;
  bottom: 2%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 20px 40px rgba(255, 255, 255, 0.05), inset 0 -20px 40px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  text-align: center;
  z-index: 3000;
}

.card-items-trans {
  background: rgb(255 255 255 / 34%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 20px;
}

.shape-ser img {
  position: absolute;
  width: 100%;
  height: auto;
  right: 100%;
  left: 0%;
  top: 0%;
}

.banner-content {
  max-width: 850px;
  color: var(--text-white);
}

.top-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 14px;
  opacity: 0.9;
}

/* Glass Cards */
.glass-card {
  border: 1.5px solid var(--card-border);
  border-radius: 20px;
  padding: 25px 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.glass-card p {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--navy-blue);
  font-size: 0.9rem;
}

.glass-card h2 {
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0;
  color: var(--navy-blue);
}

/* =======================
   COMPARISON LIST ICONS (icon-check & icon-cross)
   ======================= */

.icon-check,
.icon-cross {
  width: 22px;
  height: 22px;
  margin-right: 15px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DB5A36' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-cross {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DB5A36' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

/* Comparison List Styling */
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--navy-blue);
  font-weight: 500;
  line-height: 1.4;
}

.comparison-list li:last-child {
  margin-bottom: 0;
}

/* For the ER card with strikethrough */
.comparison-list li del {
  text-decoration: line-through;
  text-decoration-color: var(--text-dark);
}

/* =======================
   COMPARISON LIST ICONS END
   ======================= */
/* =======================
   FOOTER SECTION
   ======================= */

.footer-section {
  background: #FFFFFF;
}

.newsletter-wrapper {
  background: #082624;
  border: 2px solid var(--primary-orange);
  border-radius: 40px;
  padding: 60px;
  margin-top: -80px;
}

.newsletter-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
}

.newsletter-title span {
  color: var(--primary-orange);
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 450px;
}

.newsletter-form .form-control {
  border-radius: 30px;
  padding: 12px 25px;
  border: none;
  font-size: 0.9rem;
}

.btn-subscribe {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
  color: var(--white);
  border-radius: 30px;
  padding: 10px 35px;
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(219, 90, 54, 0.3);
  z-index: 1;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-subscribe:hover::before {
  left: 100%;
}

.btn-subscribe::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 33px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn-subscribe:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(219, 90, 54, 0.45);
}

.btn-subscribe:hover::after {
  opacity: 1;
  animation: btn-subscribe-glow 1.5s ease-in-out infinite;
}

@keyframes btn-subscribe-glow {

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

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

footer {
  padding-top: 80px;
  padding-bottom: 30px;
  background-repeat: repeat;
}

.social-container {
  display: flex;
  gap: 12px;
}

.social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--navy-blue);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-box:hover {
  background: var(--primary-orange);
  transform: translateY(-3px) scale(1.05);
  color: #ffffff;
}

.social-box i {
  font-size: 22px;
}

.footer-logo-text {
  color: #0B3432;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 20px;
}

.footer-heading {
  font-family: 'Sora', sans-serif;
  color: #0B3432;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #0B3432;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a i {
  color: var(--primary-orange);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.copyright-bar {
  border-top: 1px solid #0B3432;
  padding-top: 30px;
  margin-top: 60px;
  color: #0B3432;
  font-size: 0.85rem;
}

/* =======================
   GLOBAL HOVER EFFECTS & ANIMATIONS
   ======================= */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-space {
  animation: fadeInUp 0.8s ease-out;
  padding: 80px 0;
}

.hero-wrapper {
  animation: fadeIn 1s ease-out;
}

.why-it-matters {
  animation: slideInLeft 0.8s ease-out;
}

.who-we-serve {
  animation: slideInRight 0.8s ease-out;
}

/* Global Card Hovers */
.stat-card,
.service-card,
.gain-card,
.comparison-card,
.custom-card,
.fc-osha-info-card,
.fc-osha-step-card,
.fc-osha-step5-card,
.fc-osha-record-card,
.security-feature-card,
.portal-card,
.roi-sum-card,
.roi-mini-card,
.fc-hiw-action-card,
.fcall-feature-card {
  transition: all var(--transition-smooth);
}

.stat-card:hover,
.service-card:hover,
.gain-card:hover {
  transform: var(--hover-lift);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-box,
.card-icon-box,
.fc-p-card-header i,
.vps-icon-wrapper,
.fcall-dial-icon,
.fcall-card-icon-box,
.tos-icon-wrapper,
.question-icon-box {
  transition: all var(--transition-smooth);
}

.icon-box:hover,
.card-icon-box:hover {
  background: var(--primary-dark);
  border-color: var(--primary-orange);
  color: var(--white);
  transform: scale(1.1);
}

.source-link,
.download-link,
.footer-links a,
.nav-btn {
  transition: all var(--transition-base);
}

.source-link:hover,
.download-link:hover,
.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.feature-pill {
  transition: all var(--transition-base);
}

.feature-pill:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: scale(1.02);
}

.accordion-item,
.accordion-button {
  transition: all var(--transition-base);
}

.accordion-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-capsule:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-glow:hover::before {
  left: 100%;
}

/* =======================
   GLOBAL CSS END
   ======================= */


/* =======================
   HOMEPAGE CSS START
   ======================= */

/* FC Horizontal Marquee (Stats) */
.fc-h-marquee {
  background: #fff;
  overflow: hidden;
}

.fc-h-marquee .marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.fc-h-marquee .marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee-scroll 15s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.fc-h-marquee .marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fc-h-marquee .marquee-item i.fc-n-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-orange);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.fc-h-marquee .marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* Stats Icons (SVG backgrounds) */
.fc-n-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.icon-dollar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230B3432' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v12m-3-2.818l.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
}

.icon-clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230B3432' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v6l4 2m5-2a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
}

.icon-percent {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230B3432' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M10 8h.01M14 16h.01' /%3E%3C/svg%3E");
}

.icon-trend {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230B3432' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 18L9 11.25l4.5 4.5L21.75 7.5' /%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M18.75 7.5h3v3' /%3E%3C/svg%3E");
}

/* Who We Serve Section (Swiper) */
.who-we-serve-section {
  background: var(--bg-light-blue);
  position: relative;
  overflow: hidden;
}

.section-header-modern {
  margin-bottom: 60px;
}

.section-title-modern {
  color: var(--navy-blue);
  margin-bottom: 15px;
}

.section-subtitle-modern {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.who-we-serve-swiper-wrapper {
  position: relative;
  padding: 20px 0;
}

.whoWeServeSwiper {
  padding: 10px 0 10px;
}

.swiper-wrapper {
  align-items: stretch;
}

.serve-card-modern {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(11, 52, 50, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(11, 52, 50, 0.06);
}

.serve-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11, 52, 50, 0.15);
}

.serve-card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.serve-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.serve-card-modern:hover .serve-card-image-wrapper img {
  transform: scale(1.08);
}

.serve-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 52, 50, 0.85) 100%);
  pointer-events: none;
}

.serve-card-content {
  padding: 24px 20px;
  position: relative;
}

.serve-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-blue);
  margin: 0;
  font-family: 'Sora', sans-serif;
}

/* Swiper Navigation Arrows (fixed) */
.who-we-serve-swiper-wrapper {
  position: relative;
}

.swiper-button-prev-custom {
  position: absolute;
  top: 42% !important;
  left: -28px;
  transform: translateY(-50%) !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(10, 52, 50, 0.18);
  z-index: 25;
  border: 2px solid transparent;
}

.swiper-button-next-custom {
  position: absolute;
  top: 40% !important;
  right: -28px;
  transform: translateY(-50%) !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(10, 52, 50, 0.18);
  z-index: 25;
  border: 2px solid transparent;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--primary-orange);
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 8px 28px rgba(219, 90, 54, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.swiper-pagination-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 45px;
}

.swiper-navigation-custom {
  display: none !important;
}

@media (max-width: 1200px) {
  .swiper-button-prev-custom {
    left: 10px;
  }

  .swiper-button-next-custom {
    right: 10px;
  }
}

@media (max-width: 768px) {

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 44px;
    height: 44px;
  }

  .swiper-button-prev-custom svg,
  .swiper-button-next-custom svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 40px;
    height: 40px;
    top: 40% !important;
  }
}

/* Comparison Section (FirstCall vs ER) */
.comparison-section {
  background-color: var(--bg-light-blue);
}

.comparison-main-title {
  color: var(--navy-blue);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.vs-text {
  color: var(--primary-orange);
  font-weight: 700;
  margin: 0 10px;
}

.fc-p-card-wrapper {
  width: 100%;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-p-card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 52, 50, 0.12);
}
.fc-p-card-wrapper:hover .step-color{
  color: var(--navy-blue);
}
.fc-p-card-header {
  width: 90%;
  background: #ffffff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 15px 40px;
  border-top-left-radius: 70px;
  position: relative;
  box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.5);
  z-index: 2;
  margin-bottom: 20px;
  border: 1.5px solid #DB5A36;
  min-height: 293px;
}

.fc-p-card-header i {
  font-size: 42px;
  color: #DB5A36;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-p-card-wrapper:hover .fc-p-card-header i {
  color: var(--navy-blue);
  transform: scale(1.15);
}

.fc-p-card-footer {
  width: 100%;
  height: 260px;
  background: var(--navy-blue);
  margin-top: -150px;
  border-radius: 5px 5px 70px 0px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.5);
  transition: background 0.4s ease;
}

.fc-p-card-wrapper:hover .fc-p-card-footer {
  background: var(--primary-orange);
}

.fc-p-footer-content-wrap {
  padding: 0 33px 33px 33px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-p-footer-text-wrap h2 {
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}

.step-color {
  color: var(--accent-orange);
}

.fc-p-footer-text-wrap p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-left: 10px;
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--navy-blue);
  font-weight: 500;
  line-height: 1.4;
}

.icon-check,
.icon-cross {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}



@media (max-width: 768px) {
  .comparison-card {
    padding: 25px;
  }
}

/* Steps Section (Ordered Cards) */
.steps-section-bg {
  background-color: var(--bg-light-blue);
}

.header-section {
  text-align: center;
  margin-bottom: 60px;
}

.rapid-response-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.arrow {
  color: var(--primary-orange);
  font-size: 1.4rem;
  font-weight: 300;
  transform: scaleY(1.4);
}

.tag-text {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: var(--navy-blue);
}

.header-section h1 {
  font-weight: 800;
  margin: 0;
  color: var(--navy-blue);
}

.header-section h1 span {
  color: var(--primary-orange);
}

.header-section p {
  font-size: 1.2rem;
  margin-top: 25px;
  color: var(--text-dark);
  opacity: 0.9;
  max-width: 800px;
  margin-inline: auto;
}

.ol-cards {
  --flapWidth: 2rem;
  --flapHeigth: 1rem;
  --iconSize: 3rem;
  --numberSize: 3rem;
  --colGapSize: 2rem;
  width: min(100%, 42rem);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  padding-inline-start: var(--flapWidth);
  counter-reset: ol-cards-count;
  list-style: none;
}

.ol-cards>li {
  display: grid;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  perspective: 1000;
  grid-template-areas: "icon title nr" "icon descr nr";
  gap: 0 var(--colGapSize);
  align-items: center;
  padding: var(--colGapSize) var(--flapWidth) var(--colGapSize) 0;
  border-radius: 1rem 5rem 5rem 1rem;
  background-image: linear-gradient(to bottom right, #fff4ed, #ffffff);
  counter-increment: ol-cards-count;
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.25));
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.8), inset -2px -2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.ol-cards>li:hover {
  transform: translateY(-12px);
  filter: drop-shadow(15px 20px 25px rgba(11, 52, 50, 0.35));
  background-image: linear-gradient(to bottom right, #ffffff, #fffaf5);
}

.ol-cards>li>.icon {
  grid-area: icon;
  background: var(--primary-orange);
  color: white;
  font-size: var(--iconSize);
  width: calc(2 * var(--flapWidth) + var(--iconSize));
  padding-block: 1.2rem;
  border-radius: 0 5rem 5rem 0;
  margin-inline-start: calc(-1 * var(--flapWidth));
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: grid;
  place-items: center;
  transition: all 0.4s ease;
}

.ol-cards>li:hover>.icon {
  background: var(--navy-blue);
}

.ol-cards>li>.icon::before {
  content: "";
  position: absolute;
  width: var(--flapWidth);
  height: calc(100% + calc(var(--flapHeigth) * 2));
  left: 0;
  top: calc(var(--flapHeigth) * -1);
  clip-path: polygon(0 var(--flapHeigth), 100% 0, 100% 100%, 0 calc(100% - var(--flapHeigth)));
  background-color: var(--primary-orange);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));
  z-index: -1;
  transition: background-color 0.4s ease;
}

.ol-cards>li:hover>.icon::before {
  background-color: var(--navy-blue);
}

.ol-cards>li>.title {
  grid-area: title;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary-orange);
}

.ol-cards>li>.descr {
  grid-area: descr;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #444;
}

.ol-cards>li::after {
  grid-area: nr;
  content: counter(ol-cards-count, decimal-leading-zero);
  color: var(--navy-blue);
  font-size: var(--numberSize);
  font-weight: 800;
  opacity: 0.9;
  transition: color 0.4s ease;
}

.ol-cards>li:hover::after {
  color: var(--primary-orange);
}

@media (max-width: 40rem) {
  .ol-cards {
    --flapWidth: 1.2rem;
    --flapHeigth: 0.6rem;
    --iconSize: 2.2rem;
    --numberSize: 2.2rem;
    --colGapSize: 1.2rem;
  }

  .ol-cards>li>.title {
    font-size: 1.2rem;
  }
}

/* Founder Section */
.founder-section {
  position: relative;
  min-height: 600px;
  color: var(--white);
  background-image: url('../../assets/images/founder-section-bg.webp');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  background-position-x: 74%;
}

.onboarding-text {
  margin: 25px 0 10px 0;
}

.note-tagline {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.founder-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.founder-desc {
  color: #f1f1f1;
}

.btn-founder {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(219, 90, 54, 0.3);
  z-index: 1;
}

.btn-founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-founder:hover::before {
  left: 100%;
}

.btn-founder::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn-founder:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 35px rgba(219, 90, 54, 0.45);
  color: var(--white);
}

.btn-founder:hover::after {
  opacity: 1;
  animation: btn-founder-glow 1.5s ease-in-out infinite;
}

@keyframes btn-founder-glow {

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

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.btn-founder i {
  transition: transform 0.3s ease;
}

.btn-founder:hover i {
  transform: translateX(5px);
}

.doctor-call-card {
  position: absolute;
  right: 40%;
  top: 50%;
  transform: translateY(-80%);
  width: 240px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.doctor-call-card img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* FC Outline Tag */
.fc-outline-tag {
  background-color: #ffffff;
  color: var(--primary-orange);
  border: 1.5px solid var(--primary-orange);
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.05rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.fc-outline-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.fc-outline-tag:hover::before {
  left: 100%;
}

.fc-outline-tag::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(10px);
}

.fc-outline-tag:hover {
  background-color: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(219, 90, 54, 0.35);
}

.fc-outline-tag:hover::after {
  opacity: 1;
  animation: fc-tag-glow 1.5s ease-in-out infinite;
}

@keyframes fc-tag-glow {

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

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* =======================
   HOMEPAGE CSS END
   ======================= */


/* =======================
   HOW IT WORKS PAGE CSS START
   ======================= */

.how-its-works-bg {
  background-image: url('../../assets/images/howitsworks-bg.webp');
  background-size: cover;
  background-position: center;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-title {
color: var(--navy-blue);
}
.fc-hiw-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: white;
  font-family: 'Sora', sans-serif;
}

.fc-hiw-main-heading span.fc-hiw-text-orange {
  color: #DB5A36 !important;
}

.fc-hiw-sub-paragraph {
  color: #cbd5d5;
  max-width: 520px;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
}

.fc-hiw-stepper-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.fc-hiw-stepper-line {
  position: absolute;
  top: 25px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.fc-hiw-step-item {
  z-index: 1;
  text-align: center;
  width: 150px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.fc-hiw-step-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #103A36;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-hiw-step-item.active .fc-hiw-step-icon {
  background: #DB5A36;
  color: white;
}

.fc-hiw-step-item:hover .fc-hiw-step-icon {
  background: #DB5A36;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(219, 90, 54, 0.4);
}

.fc-hiw-step-label {
  color: #DB5A36;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.fc-hiw-step-name {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.fc-hiw-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.fc-hiw-action-card {
  background: white;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.fc-hiw-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #DB5A36;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.fc-hiw-action-card:hover::before {
  transform: scaleY(1);
}

.fc-hiw-action-card:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(219, 90, 54, 0.2);
}

.fc-hiw-action-icon-box {
  background: #DB5A36;
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-hiw-action-card:hover .fc-hiw-action-icon-box {
  background: #DB5A36;
  transform: scale(1.1) rotate(-5deg);
}

.fc-hiw-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-hiw-feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #6c757d;
  transition: all 0.3s ease;
}

.fc-hiw-feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #DB5A36;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.portal-card {
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d1e3e3;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 52, 50, 0.05);
}

.portal-header {
  background-color: var(--navy-blue);
  color: #fff;
  padding: 25px 35px;
}

.portal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.portal-header p {
  font-size: 15px;
  margin: 5px 0 0;
  opacity: 0.9;
}

.portal-body {
  padding: 35px;
}

.nav-pills {
  gap: 15px;
  margin-bottom: 30px;
}

.nav-pills .nav-link {
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.nav-pills .nav-link.active {
  background-color: var(--primary-orange);
color: var(--navy-blue) !important;
}

.nav-link.outline-tab {
  border: 1.5px solid var(--primary-orange);
  color: var(--navy-blue);
  background: transparent;
}

.nav-link.outline-tab:hover {
  background: rgba(219, 90, 54, 0.05);
}

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

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  font-size: 17px;
  color: var(--navy-blue);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

@media (max-width: 576px) {
  .portal-header {
    padding: 20px;
  }

  .portal-body {
    padding: 20px;
  }
}

/* Clinical Excellence Section */
.clinical-excellence-section {
  background-color: var(--bg-light-blue);
}

.icon-box-feature {
  background-color: var(--navy-blue);
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-box-feature i,
.icon-box-feature svg {
  color: white;
  font-size: 1.8rem;
}

.feature-title {
  color: var(--navy-blue);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  padding: 0 10px;
}

.clinical-excellence-section .col-md-6 {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clinical-excellence-section .col-md-6:hover {
  transform: translateY(-10px);
}

.clinical-excellence-section .col-md-6:hover .icon-box-feature {
  background: var(--primary-orange);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(219, 90, 54, 0.4);
}

.clinical-excellence-section .col-md-6:hover .feature-title {
  color: var(--primary-orange);
}

/* FAQ Section (How It Works) */
.fc-hiw-faq-section {
  background-color: var(--bg-light-blue);
}

.fc-hiw-section-main-title {
  color: #032E2E;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: 'Sora', sans-serif;
}

.fc-hiw-text-orange {
  color: #DB5A36;
}

.fc-hiw-custom-faq .accordion-item {
  border-radius: 50px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item {
  border: 1px solid #DB5A36;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--card-border);
}

.fc-hiw-custom-faq .accordion-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fc-hiw-custom-faq .accordion-button {
  background-color: white;
  color: #103A36;
  font-weight: 700;
  padding: 25px 35px;
  border-radius: 50px !important;
  font-size: 1.1rem;
}

.fc-hiw-custom-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-color: #0A2623;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 25px;
  transition: transform 0.3s ease;
  background-position: center;
}

.fc-hiw-custom-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.fc-hiw-custom-faq .accordion-body {
  padding: 0 40px 30px 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-body {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .fc-hiw-section-main-title {
    font-size: 1.8rem;
  }

  .fc-hiw-custom-faq .accordion-button {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .fc-hiw-custom-faq .accordion-body {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
  }
}

/* Step Slider Carousel (Custom Cards) */
.custom-card {
  border: 1.5px solid #f9ccbd;
  border-radius: 24px;
  padding: 45px;
  background: #fff;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
  transition: all var(--transition-smooth);
}

.custom-card:hover {
  box-shadow: 0 15px 40px rgba(11, 52, 50, 0.1);
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-icon-box {
  width: 55px;
  height: 55px;
  border: 2px solid var(--navy-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-top {
  background-color: var(--badge-bg);
  color: var(--accent-orange);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}

.step-label {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
}

.pill-container {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pill {
  background-color: #f6f1ee;
  color: var(--accent-orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-main {
  background-color: var(--accent-orange);
  color: var(--text-white);
  border-radius: 10px;
  padding: 12px 28px;
  border: none;
  font-weight: 600;
  margin-right: 15px;
}

.btn-outline {
  border: 2.5px solid var(--navy-blue);
  color: var(--navy-blue);
  border-radius: 10px;
  padding: 12px 28px;
  background: transparent;
  font-weight: 700;
}

.nav-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.nav-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 10px 25px;
  border-radius: 12px;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
  color: #000;
}

/* =======================
   STEP SLIDER CAROUSEL (From Injury to Clearance)
   ======================= */

/* Carousel Indicators - Custom Styling */
.carousel-indicators {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  background-color: #a3a3a3;
  border-radius: 50%;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  width: 35px;
  height: 8px;
  border-radius: 10px;
  background-color: var(--accent-orange);
}

/* Custom Card Styling */
.custom-card {
  border: 1.5px solid #f9ccbd;
  border-radius: 24px;
  padding: 45px;
  background: #fff;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
  transition: all var(--transition-smooth);
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 52, 50, 0.1);
}

/* Card Header with Icon and Badge */
.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-icon-box {
  width: 55px;
  height: 55px;
  border: 2px solid var(--navy-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-icon-box svg {
  width: 28px;
  height: 28px;
}

.custom-card:hover .card-icon-box {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.custom-card:hover .card-icon-box svg {
  stroke: white;
}

/* Badge Top */
.badge-top {
  background-color: var(--badge-bg);
  color: var(--accent-orange);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Step Label */
.step-label {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* Main Title */
.main-title {
  text-align: center;
  color: #0B3432;
  font-weight: 700;
  margin-bottom: 50px;
}

.main-title span {
  color: var(--accent-orange);
}

/* Feature Pills Container */
.pill-container {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pill {
  background-color: #f6f1ee;
  color: var(--accent-orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: scale(1.02);
}

/* Action Buttons */
.btn-main {
  background-color: var(--accent-orange);
  color: var(--text-white);
  border-radius: 10px;
  padding: 12px 28px;
  border: none;
  font-weight: 600;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background-color: var(--navy-blue);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2.5px solid var(--navy-blue);
  color: var(--navy-blue);
  border-radius: 10px;
  padding: 12px 28px;
  background: transparent;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--navy-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Navigation Controls */
.nav-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.nav-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 10px 25px;
  border-radius: 12px;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
  color: #000;
}

/* Carousel Item Animation */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Text muted override */
.text-muted {
  color: var(--text-muted) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-card {
    padding: 30px 20px;
    min-height: auto;
  }
  
  .card-header-flex {
    flex-direction: column;
    gap: 15px;
  }
  
  .badge-top {
    align-self: flex-start;
  }
  
  .btn-main, .btn-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-right: 10px;
  }
  
  .pill-container {
    gap: 8px;
  }
  
  .feature-pill {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .nav-controls {
    gap: 10px;
  }
  
  .nav-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .custom-card {
    padding: 25px 15px;
  }
  
  .btn-main, .btn-outline {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .btn-main {
    margin-right: 0;
  }
  
  .step-label {
    font-size: 0.9rem;
  }
  
  
}

/* =======================
   STEP SLIDER CAROUSEL END
   ======================= */

/* =======================
   HOW IT WORKS PAGE CSS END
   ======================= */


/* =======================
   SERVICES PAGE CSS START
   ======================= */

.marquee-section {
  white-space: nowrap;
  position: relative;
  display: flex;
  overflow: hidden;
  background: white;
}

.marquee-content {
  display: flex;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
  color: #103A36;
  font-weight: 700;
  font-size: 1.1rem;
}

.marquee-item img {
  height: 24px;
  margin-right: 15px;
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.banner-container {
  width: 100%;
  border-radius: 0px 0px 40px 40px;
  position: relative;
}

.banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 25px;
}

.banner-content h1 .highlight {
  color: var(--primary-orange);
}

.banner-content p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
}

.video-overlay-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0B34319E;
  z-index: -1;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 40px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-container {
    height: auto;
    padding: 60px 0;
    border-radius: 20px;
  }
}

/* Services Overview Cards */
.services-overview-section {
  background: var(--bg-light-blue);
}

.main-heading {
  color: var(--navy-blue);
  letter-spacing: -1px;
}

.text-orange {
  color: var(--primary-orange);
}

.sub-heading {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

.fc-osha-info-card {
  background: #fff;
  border: 1px solid var(--fc-osha-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-osha-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(219, 90, 54, 0.15);
  border-color: var(--primary-orange);
}

.fc-osha-icon-box {
  background-color: var(--navy-blue);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-osha-info-card:hover .fc-osha-icon-box {
  background: var(--primary-orange);
  transform: scale(1.1) rotate(-5deg);
}

.fc-osha-card-heading {
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.fc-osha-info-card:hover .fc-osha-card-heading {
  color: var(--primary-orange);
}

.fc-osha-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.fc-absence-card {
  padding: 2rem;
}

.fc-absence-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fc-absence-list ul {
  margin: 0;
  padding-left: 20px;
}

.fc-absence-list ul li {
  margin-bottom: 8px;
}

/* Vertical Tabs */
.fc-n-tabs-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-n-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(11, 52, 50, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}

.fc-n-tab:hover {
  border-color: var(--primary-orange);
  transform: translateX(4px);
}

.fc-n-tab.active {
  background: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(219, 90, 54, 0.25);
}

.fc-n-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fc-n-tab.active .fc-n-tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.fc-n-tab span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

.fc-n-display-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(11, 52, 50, 0.08);
  border: 1px solid rgba(11, 52, 50, 0.06);
  overflow: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.fc-n-display-card.changing {
  opacity: 0;
  transform: translateY(10px);
}

.fc-n-card-inner {
  padding: 10px;
  height: 100%;
}

.fc-n-icon-large {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 24px;
}

.fc-n-card-content h3 {
  color: var(--navy-blue);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.fc-n-card-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.fc-n-card-image {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.fc-n-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================================
   PROFESSIONAL MOBILE RESPONSIVE TABS
   ====================================== */

/* Tablet Breakpoint */
@media (max-width: 991px) {
  .services-section .row.g-4 {
    gap: 24px;
  }
}

/* Mobile Breakpoint 768px - Professional Accordion Tabs */
@media (max-width: 768px) {

  .services-section {
    padding: 50px 0 !important;
  }
  
  .services-section .container.py-5 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Transform to Accordion Style on Mobile */
  .fc-n-tabs-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  /* Accordion Tab Buttons - Mobile */
  .fc-n-tab {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    text-align: left;
    gap: 14px;
    border-radius: 14px;
    border: 2px solid rgba(11, 52, 50, 0.08);
    box-shadow: 0 2px 10px rgba(11, 52, 50, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #ffffff;
  }

  .fc-n-tab::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .fc-n-tab:hover {
    transform: none;
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(219, 90, 54, 0.15);
  }

  .fc-n-tab:hover::before {
    opacity: 0.5;
  }

  .fc-n-tab.active {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55a3a 100%);
    color: white;
    border-color: var(--primary-orange);
    transform: none;
    box-shadow: 0 6px 20px rgba(219, 90, 54, 0.35);
  }

  .fc-n-tab.active::before {
    transform: translateY(-50%) rotate(45deg);
    opacity: 1;
    border-color: white;
  }

  /* Tab Icon - Mobile Accordion Style */
  .fc-n-tab-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fc-n-tab:not(.active) .fc-n-tab-icon {
    background: linear-gradient(135deg, rgba(219, 90, 54, 0.1) 0%, rgba(219, 90, 54, 0.05) 100%);
    color: var(--primary-orange);
  }

  .fc-n-tab.active .fc-n-tab-icon {
    background: rgba(255, 255, 255, 0.25);
    color: white;
  }

  /* Tab Text - Mobile */
  .fc-n-tab span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
  }

  /* Display Card - Mobile Stacked Below */
  .fc-n-display-card {
    min-height: auto;
    margin-top: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(11, 52, 50, 0.1);
    overflow: hidden;
  }

  .fc-n-card-inner {
    padding: 0;
  }

  .fc-n-card-inner .row {
    flex-direction: column-reverse;
  }

  /* Card Content - Mobile */
  .fc-n-card-content {
    padding: 24px 20px 20px 20px;
    text-align: center;
  }

  .fc-n-icon-large {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 22px;
    margin: 0 auto 16px;
  }

  .fc-n-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .fc-n-card-content p {
    font-size: 14px;
    line-height: 1.65;
    color: #5a6a6a;
  }

  /* Card Image - Mobile Full Width */
  .fc-n-card-image {
    height: 180px;
    margin: 0;
    border-radius: 0;
  }

  .fc-n-card-image img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Animated Tab Indicator */
  .fc-n-tabs-vertical::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
  }
}

/* Small Mobile Breakpoint 576px */
@media (max-width: 576px) {

  .services-section {
    padding: 40px 0 !important;
  }

  .fc-n-tabs-vertical {
    gap: 8px;
  }

  .fc-n-tab {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 12px;
  }

  .fc-n-tab-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
    border-radius: 8px;
  }

  .fc-n-tab span {
    font-size: 13px;
    padding-right: 16px;
  }

  .fc-n-tab::before {
    width: 6px;
    height: 6px;
    right: 12px;
  }

  .fc-n-display-card {
    margin-top: 16px;
    border-radius: 16px;
  }

  .fc-n-card-content {
    padding: 20px 16px 16px 16px;
  }

  .fc-n-icon-large {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .fc-n-card-content h3 {
    font-size: 18px;
  }

  .fc-n-card-content p {
    font-size: 13px;
  }

  .fc-n-card-image {
    height: 160px;
  }
}

/* Extra Small Mobile 400px */
@media (max-width: 400px) {

  .fc-n-tabs-vertical {
    gap: 6px;
  }

  .fc-n-tab {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 10px;
  }

  .fc-n-tab-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 15px;
  }

  .fc-n-tab span {
    font-size: 12px;
  }

  .fc-n-tab::before {
    width: 5px;
    height: 5px;
    right: 10px;
  }

  .fc-n-display-card {
    margin-top: 12px;
    border-radius: 14px;
  }

  .fc-n-card-content {
    padding: 16px 14px 14px 14px;
  }

  .fc-n-icon-large {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 10px;
  }

  .fc-n-card-content h3 {
    font-size: 17px;
  }

  .fc-n-card-image {
    height: 140px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .fc-n-tab:hover {
    transform: none;
    border-color: rgba(11, 52, 50, 0.15);
    box-shadow: 0 2px 10px rgba(11, 52, 50, 0.08);
  }

  .fc-n-tab:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .fc-n-tab.active:active {
    transform: scale(0.98);
  }
}

/* Service Cards Grid (old) */
.services-grid {
  background-color: #EFFFFFE0;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: none;
  box-shadow: 0px 2px 15.8px 0px #0000002B;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(11, 52, 50, 0.12);
}

.service-card .icon-box {
  width: 60px;
  height: 60px;
  border: 1.2px solid var(--navy-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card .icon-box i {
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.service-card h3 {
  color: var(--navy-blue);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

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

.service-card:hover .icon-box {
  background-color: var(--navy-blue);
  border-color: var(--navy-blue);
  transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .icon-box i {
  color: #fff;
}

/* =======================
   SERVICES PAGE CSS END
   ======================= */


/* =======================
   OSHA PAGE CSS START
   ======================= */

.fc-osha-section-space {
  padding: 80px 0;
}

.fc-osha-small-title {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fc-osha-section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy-blue);
}

.fc-osha-text-orange {
  color: var(--primary-orange);
}

.fc-osha-step-card {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-osha-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-orange);
}

.fc-osha-step-card:hover .fc-osha-card-heading {
  color: var(--primary-orange);
}

.fc-osha-dark-container {
  background-color: var(--navy-blue);
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 30px;
}

.fc-osha-record-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.fc-osha-record-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fc-osha-icon-square {
  background-color: var(--navy-blue);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.fc-osha-record-card:hover .fc-osha-icon-square {
  background: var(--primary-orange);
}

.fc-osha-step5-card {
  background-color: #f2f4f5;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-osha-step5-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fc-osha-step5-card:hover .fc-osha-step5-card-h {
  color: var(--primary-orange);
}

.fc-osha-step5-footer-tag {
  background-color: #f5ddd6;
  color: var(--primary-orange);
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 20px 20px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.fc-osha-step5-card:hover .fc-osha-step5-footer-tag {
  background-color: var(--primary-orange) !important;
  color: #fff !important;
}

.fc-osha-step5-alert {
  background-color: var(--navy-blue);
  border-radius: 16px;
  padding: 1rem;
}

.fc-osha-step5-icon-wrap {
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.osha-bg-matter {
  background-image: url('../../assets/images/osha-matter-bg.webp');
  background-size: cover;
  background-position: center;
}

.gain-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.gain-card .icon-box {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--navy-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.gain-card .icon-box i {
  font-size: 1.6rem;
  color: var(--primary-orange);
}

.gain-card h3 {
  color: var(--text-dark);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.gain-card p {
  color: var(--navy-blue);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.95;
}

.gain-card:hover .icon-box {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.1) rotate(8deg);
}

.gain-card:hover .icon-box i {
  color: #fff;
}

.gain-card:hover h3 {
  color: var(--primary-orange);
}

/* OSHA Step 1 Background */
.step-bg-1 {
  background-image: url('../../assets/images/step1bg.webp');
  background-size: cover;
  background-position: center;
}

/* =======================
   OSHA PAGE CSS END
   ======================= */


/* =======================
   IT & SECURITY PAGE CSS START
   ======================= */

.it-security-wrapper {
  position: relative;
}

.security-arrow {
  color: #DB5A36;
  font-size: 1.5rem;
  font-weight: 300;
}

.security-subtitle {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.security-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.plus-symbol {
  color: #DB5A36;
  margin: 0 5px;
}

.security-description {
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.security-feature-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 14px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 100%;
}

.security-feature-card:hover {
  border-color: #DB5A36;
  background: rgba(219, 90, 54, 0.1);
}

.fc-security-marquee {
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  overflow: hidden;
}

.fc-security-marquee .marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.fc-security-marquee .marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.fc-security-marquee .marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-blue);
}

.fc-security-marquee .marquee-item i {
  width: 34px;
  font-size: 1.45rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.fc-security-marquee .marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.top-label-segment {
  display: flex;
  justify-content: center;
}

/* IT Dial & Cards */
.it-round-tab-bg {
  background-color: var(--bg-light-blue);
}

.fcall-main-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
}

.fcall-dial-container {
  position: relative;
  width: 360px;
  height: 360px;
}

.fcall-dial-background-arc {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#ffffff 17deg 221deg, #e8f0f1 148deg 311deg, #ffffff 235deg 310deg);
  box-shadow: 18px 18px 35px rgba(0, 0, 0, 0.12), -12px -12px 30px rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.fcall-dial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #e6e6e6;
  box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.22), inset -10px -10px 20px rgba(255, 255, 255, 0.85), 6px 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.fcall-dial-center::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 3px solid var(--primary-orange);
}

.fcall-center-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 6;
}

.fcall-center-icon-wrapper img {
  width: 32px;
  height: 32px;
}

.fcall-dial-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.12), -6px -6px 12px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  color: var(--navy-blue);
  font-size: 1.1rem;
}

.fcall-dial-icon:hover {
  transform: scale(1.18) translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18), -4px -4px 15px rgba(255, 255, 255, 0.9);
}

.fcall-dial-icon.active {
  background: linear-gradient(135deg, var(--badge-bg) 0%, #fff 100%);
  color: var(--primary-orange);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(219, 90, 54, 0.3), 0 0 20px rgba(219, 90, 54, 0.2), 8px 8px 25px rgba(0, 0, 0, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(219, 90, 54, 0.3), 0 0 20px rgba(219, 90, 54, 0.2), 8px 8px 25px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(219, 90, 54, 0.4), 0 0 30px rgba(219, 90, 54, 0.3), 8px 8px 25px rgba(0, 0, 0, 0.2);
  }
}

.fcall-icon-pos-1 {
  top: 17px;
  left: 154px;
}

.fcall-icon-pos-2 {
  top: 69px;
  right: 43px;
}

.fcall-icon-pos-3 {
  top: 178px;
  right: 8px;
}

.fcall-icon-pos-4 {
  bottom: 45px;
  right: 69px;
}

.fcall-icon-pos-5 {
  bottom: 16px;
  left: 141px;
}

.fcall-cards-container {
  position: relative;
  width: 420px;
  height: 310px;
}

.fcall-feature-card {
  position: absolute;
  width: 100%;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  border: 1px solid rgba(11, 52, 50, 0.08);
}

.fcall-feature-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 10;
}

.fcall-feature-card.prev,
.fcall-feature-card.next {
  opacity: 0.45;
  transform: translateY(-186px) scale(0.93);
  filter: blur(1.5px);
  z-index: 5;
  background: linear-gradient(179.88deg, rgba(255, 255, 255, 0) 0.11%, #032E2E 181.61%);
}

.fcall-feature-card.next {
  transform: translateY(172px) scale(0.93);
}

.fcall-card-icon-box {
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-orange);
  font-size: 22px;
}

.fcall-card-title {
  color: var(--text-dark);
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.fcall-card-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media(max-width: 960px) {
  .fcall-main-wrapper {
    flex-direction: column;
    gap: 50px;
    padding: 20px 15px;
  }

  .fcall-dial-container {
    width: 320px;
    height: 320px;
  }

  .fcall-cards-container {
    width: 380px;
    height: 280px;
  }

  .fcall-icon-pos-1 {
    top: 14px;
    left: 136px;
  }

  .fcall-icon-pos-2 {
    top: 60px;
    right: 36px;
  }

  .fcall-icon-pos-3 {
    top: 156px;
    right: 6px;
  }

  .fcall-icon-pos-4 {
    bottom: 38px;
    right: 58px;
  }

  .fcall-icon-pos-5 {
    bottom: 12px;
    left: 124px;
  }

  .fcall-dial-center {
    width: 160px;
    height: 160px;
  }

  .fcall-center-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .fcall-center-icon-wrapper img {
    width: 28px;
    height: 28px;
  }

  .fcall-dial-icon {
    width: 48px;
    height: 48px;
  }
}

@media(max-width: 576px) {
  .fcall-dial-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .fcall-dial-center {
    width: 150px;
    height: 150px;
  }

  .fcall-dial-center::after {
    inset: 14px;
  }

  .fcall-center-icon-wrapper {
    width: 54px;
    height: 54px;
  }

  .fcall-center-icon-wrapper img {
    width: 26px;
    height: 26px;
  }

  .fcall-dial-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .fcall-cards-container {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 280px;
    margin: 0 auto;
  }

  .fcall-feature-card {
    padding: 20px;
    width: 100%;
  }

  .fcall-card-title {
    font-size: 1.15rem;
  }

  .fcall-feature-card.prev,
  .fcall-feature-card.next {
    display: none;
  }
}

/* IT Security FAQ */
.fc-hiw-faq-section-it {
  background-color: var(--text-white);
}

/* =======================
   IT & SECURITY PAGE CSS END
   ======================= */


/* =======================
   RESOURCES PAGE CSS START
   ======================= */

.resources-banner {
  padding: 0;
}

.banner-wrapper {
  position: relative;
  min-height: 400px;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.banner-content {
  color: #ffffff;
  padding: 20px;
}

.banner-content h1 {
  letter-spacing: -1px;
}

.grid-resources {
  background-color: #EFFFFFE0;
}

.resource-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 2px 15.8px 0px #0000002B;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(219, 90, 54, 0.12);
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.badge-type {
  background-color: var(--badge-bg);
  color: var(--primary-orange);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.badge-report {
  background-color: var(--badge-bg);
}

.resource-card h3 {
  color: var(--navy-blue);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.download-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.download-link:hover {
  color: var(--navy-blue);
  transform: translateX(5px);
}

.resource-card .icon-box {
  width: 50px;
  height: 50px;
  border: 1.2px solid var(--navy-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card .icon-box i {
  font-size: 1.2rem;
  color: var(--primary-orange);
}

.resource-card:hover .icon-box {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.1);
}

.resource-card:hover .icon-box i {
  color: #fff;
}

/* =======================
   RESOURCES PAGE CSS END
   ======================= */


/* =======================
   ROI CALCULATOR PAGE CSS START
   ======================= */

.roi-layout-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
}

.roi-sidebar {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #021f1f 100%);
  color: var(--white);
  padding: 1.5rem 1.25rem;
  height: auto;
  overflow-y: auto;
  position: sticky;
  top: 80px;
  border-radius: 0 0 20px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.roi-sidebar-label {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roi-sidebar-label::before {
  content: '';
  width: 15px;
  height: 2px;
  background: var(--primary-orange);
}

.roi-slider-block {
  margin-bottom: 1.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-sl-label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.15rem;
}

.roi-sl-hint {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.roi-sl-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.roi-slider-block input[type=range] {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  appearance: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 1.5rem 0;
}

.roi-slider-block input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 3px solid var(--navy-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.roi-slider-block input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  border-color: var(--primary-orange);
}

.roi-main-content {
  padding: 2.5rem 3rem;
  min-height: 100vh;
}

.roi-section-head {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.roi-section-head::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.roi-sum-card {
  background-color: var(--bg-light-blue);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.roi-sum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.roi-sum-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(219, 90, 54, 0.12);
  border-color: rgba(219, 90, 54, 0.2);
}

.roi-sc-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.roi-sc-val {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #333;
  line-height: 1.2;
}

.roi-sc-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.roi-mini-card {
  background-color: var(--navy-blue);
  color: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.roi-mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.roi-mini-card:hover::before {
  left: 100%;
}

.roi-mini-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(3, 46, 46, 0.4);
}

.roi-mini-card.roi-orange {
  background-color: var(--primary-orange);
}

.roi-mini-card span:first-child {
  opacity: 0.85;
  font-size: 0.85rem;
  font-weight: 500;
}

.roi-mini-card span:last-child {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.roi-table-container {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.roi-table-container .table thead th {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f3 100%);
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  border: none;
}

.roi-table-container .table tbody td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-color: #f0f0f0;
}

.roi-table-container .table tbody tr {
  transition: all 0.3s ease;
  cursor: pointer;
}

.roi-table-container .table tbody tr:hover {
  background: linear-gradient(90deg, rgba(219, 90, 54, 0.04) 0%, rgba(219, 90, 54, 0.02) 100%);
  transform: scale(1.005);
}

.roi-table-container .table tbody tr:hover td:first-child {
  border-left: 3px solid var(--primary-orange);
  padding-left: calc(1.25rem - 3px);
}

.roi-chart-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.custom-alert {
  background-color: #f6e6e0;
  border: none;
  border-radius: 12px;
  color: #333;
  padding: 1.25rem;
}

.italic-text {
  font-style: italic;
}

.roi-fc-i {
  color: #1a3a3a;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.roi-fc-i .icon-wrapper {
  font-size: 1.8rem;
  padding-top: 4px;
}

.roi-fc-i h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.1rem;
  letter-spacing: -0.02em;
}

.roi-fc-i p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .roi-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .roi-sidebar {
    position: relative;
    top: 0;
    border-radius: 0 0 20px 20px;
  }

  .roi-main-content {
    padding: 1.5rem;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .roi-main-content {
    padding: 1rem;
  }

  .roi-sum-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .roi-sc-val {
    font-size: 1.25rem;
  }

  .roi-chart-card {
    height: 250px;
    padding: 1rem;
  }

  .roi-mini-card {
    padding: 0.85rem 1rem;
  }

  .roi-table-container .table thead th {
    font-size: 0.6rem;
    padding: 0.75rem 0.5rem;
  }

  .roi-table-container .table tbody td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .roi-main-content {
    padding: 0.75rem;
  }

  .roi-sum-card {
    padding: 0.85rem;
  }

  .roi-sc-val {
    font-size: 1.1rem;
  }

  .roi-chart-card {
    height: 220px;
  }
}

/* =======================
   ROI CALCULATOR PAGE CSS END
   ======================= */


/* =======================
   PRIVACY POLICY PAGE CSS START
   ======================= */

.privacy-banner {
  position: relative;
  background-image: url('../../assets/images/privacy-bg-img.webp');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
  color: #ffffff;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.policy-arrow {
  color: #DB5A36;
  font-size: 1.5rem;
  font-weight: 400;
}

.policy-subtitle {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.policy-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.policy-description {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}

.privacy-content-section {
  background-color: var(--bg-light-blue);
  min-height: 60vh;
}

.content-card {
  background-color: transparent;
}
/* Custom Variables for consistency */
:root {
    --primary-orange: #DB5A36;
    --navy-dark: #0B3432;
    --bubble-bg: #F2FCFC;
    --bubble-border: #C9E8E8;
}

/* Main Card Styling */
.sms-example-card {
    background: #ffffff;
    border: 1px solid #E9ECEF;
    border-radius: 20px !important;
    padding: 30px 20px !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* Header Section (Icon + Title) */
.card-header-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.card-header-top img{
width: 20px;
}
.brand-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
}

/* Tag/Label Styling */
.user-dept-tag {
    display: inline-block;
    background-color: #FCEBE6; /* Light orange tint */
    color: var(--navy-dark);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Speech Bubble Styling */
.speech-bubble {
    background: var(--bubble-bg);
    border: 1px solid var(--bubble-border);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

.example-body-text {
    font-size: 0.88rem !important;
    color: var(--navy-dark) !important;
    line-height: 1.5;
    margin: 0;
}

/* Footer Section (Avatar + Name) */
.user-info-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-box {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #DEE2E6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.user-name-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-orange);
}
.policy-heading {
  color: var(--navy-blue);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.policy-text {
  color: var(--navy-blue);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
  max-width: 100%;
  margin-bottom: 0;
}

.tos-main-title {
  color: var(--navy-blue);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}

.tos-heading {
  color: var(--navy-blue);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tos-text {
  color: var(--navy-blue);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.tos-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
}

.tos-icon-wrapper {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  width: 56px;
}

.tos-list {
  list-style: none;
  padding-left: 0;
}

.tos-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--navy-blue);
  font-size: 0.95rem;
  font-weight: 500;
}

.tos-list li::before {
  content: "•";
  color: var(--primary-orange);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.5rem;
  position: absolute;
  top: -5px;
}

.tos-example-box {
  background-color: var(--navy-blue);
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 8px;
  font-style: italic;
  font-size: 0.9rem;
}

.tos-disclosure-card {
  background-color: var(--bg-light-blue);
  border: 1px solid #c9e8e8;
  border-radius: 20px;
}

.disclosure-title {
  color: var(--navy-blue);
  font-weight: 800;
}

.sms-terms-section {
  background-color: #EFFFFF;
}

.sms-main-title {
  color: #0B3432;
  font-weight: 800;
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.sms-description {
  color: #0B3432;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.9;
}

.sms-example-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(11, 52, 50, 0.1);
}

.orange-stars {
  color: #DB5A36;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.example-body-text {
  font-size: 0.82rem;
  color: #0B3432;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-divider {
  opacity: 0.1;
  margin: 15px 0;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.user-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.user-dept {
  font-size: 0.75rem;
  color: #6c757d;
}

.sms-disclosure-box {
  background: white;
  border: 1px solid rgba(11, 52, 50, 0.1);
  border-radius: 12px;
}

.question-icon-box {
  width: 35px;
  height: 35px;
  border: 2px solid #0B3432;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0B3432;
}

.disclosure-main-title {
  color: #0B3432;
  font-weight: 800;
  font-size: 1.1rem;
}

.disclosure-content {
  font-size: 0.85rem;
  color: #0B3432;
}

.text-navy {
  color: #0B3432;
}

/* Privacy Practices Expandable Cards */
.privacy-wrapper {
  display: flex;
  gap: 15px;
  height: 550px;
  margin-top: 50px;
  perspective: 1000px;
}

.privacy-card {
  position: relative;
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-card.active {
  flex: 4;
  cursor: default;
}

.privacy-wrapper:hover .privacy-card {
  flex: 1 !important;
}

.privacy-wrapper:hover .privacy-card:hover {
  flex: 4 !important;
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 10 !important;
}

.card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 1;
}

.privacy-card.active .card-bg-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 46, 46, 0.4), rgba(3, 46, 46, 0.9));
  z-index: 2;
  transition: background 0.5s ease;
}

.privacy-card.active .card-overlay {
  background: linear-gradient(180deg, rgba(10, 148, 148, 0) 0%, rgba(3, 46, 46, 0.89) 86.54%);
}

.vertical-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: #fff;
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 3;
  transition: opacity 0.4s ease;
  pointer-events: none;
  width: 400px;
  text-align: center;
}

.privacy-card:hover .vertical-title,
.privacy-card.active .vertical-title {
  opacity: 0;
}

.privacy-wrapper:hover .privacy-card.active .vertical-title {
  opacity: 1;
}

.privacy-wrapper:hover .privacy-card:hover .vertical-title {
  opacity: 0;
}

.card-content {
  position: relative;
  padding: 40px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
  z-index: 4;
  max-width: 80%;
  text-align: center;
}

.privacy-card:hover .card-content,
.privacy-card.active .card-content {
  opacity: 1;
  transform: translateY(0);
}

.privacy-wrapper:hover .privacy-card.active .card-content {
  opacity: 0;
  transform: translateY(30px);
}

.privacy-wrapper:hover .privacy-card:hover .card-content {
  opacity: 1;
  transform: translateY(0);
}

.glass-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 30px;
}

@media (max-width: 768px) {
  .privacy-wrapper {
    flex-direction: column;
    height: auto;
  }

  .privacy-card {
    height: 100px;
    flex: none;
  }

  .privacy-card.active {
    height: auto;
    min-height: 350px;
  }

  .vertical-title {
    transform: none;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: auto;
    text-align: left;
  }
}

/* =======================
   PRIVACY POLICY PAGE CSS END
   ======================= */


/* =======================
   CONTACT PAGE CSS START (includes contact.php form)
   ======================= */
/* =======================
   FC HERO CAROUSEL (Contact Page Slider)
   ======================= */

.fc-hero-wrapper {
  width: 100%;
  position: relative;
  perspective: 2000px;
  margin: 0 auto;
}

.fc-hero-carousel-container {
  width: 100%;
  height: 420px;
  position: relative;
  perspective: 2000px;
}

.fc-hero-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-hero-card {
  position: absolute;
  width: 260px;
  height: 360px;
  background: #1f1f1f;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  will-change: transform, opacity;
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.fc-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 191, 255, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.fc-hero-card:hover::before {
  opacity: 1;
}

.fc-hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.8);
  display: block;
}

.fc-hero-card.fc-hero-center .fc-hero-card-img {
  filter: brightness(1);
}

.fc-hero-card.fc-hero-center {
  z-index: 10;
  transform: scale(1.15) translateZ(0);
  box-shadow: 0 30px 60px -10px rgba(0, 191, 255, 0.5);
}

.fc-hero-card.fc-hero-left-2 {
  z-index: 1;
  transform: translateX(-280px) scale(0.8) translateZ(-200px) rotateY(15deg);
  opacity: 0.6;
}

.fc-hero-card.fc-hero-left-1 {
  z-index: 5;
  transform: translateX(-140px) scale(0.95) translateZ(-50px) rotateY(8deg);
  opacity: 0.8;
}

.fc-hero-card.fc-hero-right-1 {
  z-index: 5;
  transform: translateX(140px) scale(0.95) translateZ(-50px) rotateY(-8deg);
  opacity: 0.8;
}

.fc-hero-card.fc-hero-right-2 {
  z-index: 1;
  transform: translateX(280px) scale(0.8) translateZ(-200px) rotateY(-15deg);
  opacity: 0.6;
}

.fc-hero-card.fc-hero-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Member Info Text */
.fc-hero-member-info {
  text-align: center;
  margin-top: 2rem;
  padding: 0.5rem;
  min-height: 130px;
}

.member-info-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.member-name {
  color: #DB5A36;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.member-role {
  color: #a0a8cc;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.member-description {
  color: #a0a8cc;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}

.fc-hero-member-info.animate-out .member-info-content>* {
  opacity: 0;
  transform: translateY(20px);
}

.fc-hero-member-info.animate-in .member-info-content>* {
  opacity: 1;
  transform: translateY(0);
}

/* Dots Navigation */
.fc-hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.fc-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fc-hero-dot.active {
  background: #DB5A36;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* Navigation Arrows */
.fc-hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #DB5A36;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
}

.fc-hero-nav-arrow.left {
  left: 5px;
}

.fc-hero-nav-arrow.right {
  right: 5px;
}

.fc-hero-nav-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: #009acd;
}

/* Responsive */
@media (max-width: 768px) {
  .fc-hero-card {
    width: 200px;
    height: 280px;
  }

  .fc-hero-card.fc-hero-left-2,
  .fc-hero-card.fc-hero-right-2 {
    display: none;
  }

  .fc-hero-card.fc-hero-left-1 {
    transform: translateX(-100px) scale(0.9);
  }

  .fc-hero-card.fc-hero-right-1 {
    transform: translateX(100px) scale(0.9);
  }

  .member-name {
    font-size: 1.4rem;
  }
}

/* =======================
   FC HERO CAROUSEL END
   ======================= */
.let-us-work-together-section {
  background-color: transparent;
}

.outer-form-wrapper {
  background-color: var(--navy-blue);
  border-radius: 40px;
  margin: 0 auto;
}

.inner-form-wrapper {
  border-radius: 30px;
  height: 100%;
}

.inner-form-title {
  font-weight: 700;
}

.custom-input {
  background-color: #f7fcfc !important;
  border-color: var(--navy-blue) !important;
  color: var(--navy-blue) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 12px;
}

.custom-input::placeholder {
  color: rgba(11, 52, 50, 0.6) !important;
}

.contact-img-logo {
  width: 50%;
}

@media (max-width: 768px) {
  .outer-form-wrapper {
    border-radius: 25px;
  }

  .inner-form-wrapper {
    border-radius: 20px;
    padding: 1.5rem !important;
  }

  .fs-1 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 400px) {
  .banner-content {
    padding: 11px;
  }
}

/* =======================
   CONTACT PAGE CSS END
   ======================= */


/* =======================
   VPS VISIBILITY SECTION (commented out but kept)
   ======================= */

.vps-visibility-section {
  background: var(--bg-light-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.vps-flow-container {
  position: relative;
  margin-top: 100px;
}

.vps-step {
  position: relative;
  z-index: 10;
}

.vps-icon-wrapper {
  width: 55px;
  height: 55px;
  border: 1.5px solid var(--navy-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--fc-osha-primary-dark);
}

.vps-step:hover .vps-icon-wrapper {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(219, 90, 54, 0.3);
}

.vps-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.vps-step-title span {
  color: var(--text-dark);
  font-size: 22px;
}

.vps-step-desc {
  font-size: 14.5px;
  opacity: 0.75;
  max-width: 290px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--text-dark);
}

.vps-connector-arrow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.vps-arrow-top-right {
  width: 160px;
  top: -20px;
  right: -10px;
}

.vps-arrow-side {
  width: 60px;
  right: 210px;
  top: 179px;
}

.vps-arrow-bottom-return {
  width: 380px;
  bottom: 80px;
  left: -190px;
}

/* =======================
   RESPONSIVE & UTILITIES
   ========================================
   EQUAL SECTION SPACING & PADDING SYSTEM
   ======================================== */

/* Desktop - Default Section Spacing */
.section-space {
  padding: 80px 0;
}

.fc-osha-section-space {
  padding: 80px 0;
}

/* Tablet Breakpoint 992px */
@media (max-width: 992px) {
  .section-space {
    padding: 60px 0;
  }
  
  .fc-osha-section-space {
    padding: 60px 0;
  }
  
  .py-5,
  .py-4,
  .py-3 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* Mobile Breakpoint 768px */
@media (max-width: 768px) {
  .section-space {
    padding: 50px 0;
  }
  
  .fc-osha-section-space {
    padding: 50px 0;
  }
  
  /* Equal top/bottom padding for all sections */
  .py-5,
  .py-4,
  .py-3,
  .py-2 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  
  /* Container padding */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Bootstrap spacing overrides */
  .g-4,
  .g-5,
  .g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }
  
  .mt-5,
  .my-5 {
    margin-top: 30px !important;
  }
  
  .mb-5,
  .my-5 {
    margin-bottom: 30px !important;
  }
  
  .pt-5,
  .pt-4 {
    padding-top: 50px !important;
  }
  
  .pb-5,
  .pb-4 {
    padding-bottom: 50px !important;
  }
}

/* Small Mobile Breakpoint 576px */
@media (max-width: 576px) {
  .section-space {
    padding: 40px 0;
  }
  
  .fc-osha-section-space {
    padding: 40px 0;
  }
  
  .py-5,
  .py-4 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  .pt-5,
  .pt-4 {
    padding-top: 40px !important;
  }
  
  .pb-5,
  .pb-4 {
    padding-bottom: 40px !important;
  }
  
  .mt-5,
  .my-5 {
    margin-top: 25px !important;
  }
  
  .mb-5,
  .my-5 {
    margin-bottom: 25px !important;
  }
  
  .display-6,
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .main-heading {
    font-size: 1.5rem;
  }
}

/* Extra Small Mobile Breakpoint 400px */
@media (max-width: 400px) {
  .section-space {
    padding: 35px 0;
  }
  
  .fc-osha-section-space {
    padding: 35px 0;
  }
  
  .py-5,
  .py-4 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  
  .pt-5,
  .pt-4 {
    padding-top: 35px !important;
  }
  
  .pb-5,
  .pb-4 {
    padding-bottom: 35px !important;
  }
  
  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .row {
    margin-left: -6px;
    margin-right: -6px;
  }
  
  .row > * {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ========================================
   RESPONSIVE TYPOGRAPHY
   ======================================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .content-area {
    height: auto;
    min-height: 500px;
    padding: 80px 15px 50px;
  }

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

  .card-title,
  .feature-title {
    font-size: 1.1rem;
  }

  .description,
  .section-sub-text {
    font-size: 0.9rem;
  }

  .btn-get-started,
  .btn-orange-action,
  .btn-outline-custom {
    font-size: 0.875rem;
    padding: 10px 20px;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE - HERO & BANNER SECTIONS
   ======================================== */
/* Mobile 768px */
@media (max-width: 1024px) {

.spacing-mobile-toggle{
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
}
/* Tablet and below */
@media (max-width: 991px) {
  .content-area {
    height: auto;
    min-height: 600px;
    padding: 100px 15px 60px;
  }

  .hero-wrapper,
  .hero-bg-redo {
    min-height: auto;
    min-height: 500px;
  }
}

/* Mobile 768px */
@media (max-width: 768px) {
  .content-area {
    height: auto;

    padding: 80px 0 50px;
  }
.spacing-mobile-toggle{
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.25;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5;
    padding: 0 10px;
  }

  .hero-video {
    width: 180%;
    height: 180%;
  }

  .hero-bg-redo,
  .hero-wrapper {
    min-height: auto;
  }

  .banner-container {
    padding: 50px 0;
    border-radius: 0;
  }

  .banner-content {
    padding: 0 15px;
  }

  .banner-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .banner-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .top-label {
    font-size: 11px;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .top-label .sub-icon-head {
    width: 16px;
    height: 16px;
  }
}

/* Small mobile 576px */
@media (max-width: 576px) {
  .content-area {
    min-height: 500px;
    padding: 70px 0 40px;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    padding: 0 5px;
  }

  .hero-video {
    width: 250%;
    height: 250%;
  }

  .banner-container {
    padding: 40px 0;
  }

  .banner-content h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .display-3 {
    font-size: 2rem !important;
  }

  .d-flex.justify-content-center.gap-3 {
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
  }

  .btn-orange-action,
  .btn-outline-custom {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Extra small mobile 400px */
@media (max-width: 400px) {
  .content-area {
    min-height: 600px;
    padding: 60px 0 35px;
  }

  .hero-title {
    font-size: 1.5rem !important;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
  }

  .hero-video {
    width: 300%;
    height: 300%;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 13px;
  }

  .top-label {
    font-size: 10px;
  }
}

/* Remove extra spacing on all sections for mobile */
@media (max-width: 768px) {
  .section-space {
    padding: 40px 0 !important;
  }

  .py-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .pt-5,
  .py-5 {
    padding-top: 30px !important;
  }

  .pb-5,
  .py-5 {
    padding-bottom: 30px !important;
  }

  .mt-5 {
    margin-top: 20px !important;
  }

  .mb-5 {
    margin-bottom: 20px !important;
  }

  .g-4,
  .g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

/* Marquee section mobile fix */
@media (max-width: 768px) {
  .marquee-section {
    padding: 12px 0;
  }

  .marquee-content {
    animation-duration: 20s;
  }

  .marquee-item {
    font-size: 12px;
    padding: 0 20px;
  }

  .marquee-item img {
    width: 20px;
    height: 20px;
  }
}

/* Video overlay fix for mobile */
@media (max-width: 768px) {
  .video-overlay-services {
    background: rgba(11, 52, 50, 0.75);
  }

  .hero-video {
    min-width: 150%;
    min-height: 150%;
    width: auto;
    height: auto;
  }

  .hero-bg-redo .hero-video,
  .hero-wrapper .hero-video {
    width: 200%;
    height: 200%;
    max-width: none;
  }
}

/* How it works section mobile */
@media (max-width: 768px) {
  .how-its-works-bg {
    min-height: 350px;
    padding: 80px 0 40px;
  }

  .how-its-works-bg .display-2 {
    font-size: 1.75rem;
  }

  .how-its-works-bg p {
    font-size: 0.95rem;
  }
}

/* Background image responsive fix */
@media (max-width: 768px) {
  .hero-bg-image {
    width: 200%;
    height: 200%;
    max-width: none;
  }

  .hero-overlay-img {
    background: rgba(255, 255, 255, 0.85);
  }
}

/* Privacy banner mobile */
@media (max-width: 768px) {
  .privacy-banner {
    margin-top: 60px !important;
    margin-bottom: 20px !important;
    padding: 0 10px;
  }

  .privacy-banner .display-3 {
    font-size: 1.75rem;
  }

  .privacy-banner p {
    font-size: 0.95rem;
  }

  .privacy-content-section {
    padding: 30px 0 !important;
  }

  .content-card {
    padding: 20px !important;
  }
}

/* OSHA page mobile */
@media (max-width: 768px) {
  .fc-osha-section-space {
    padding: 40px 0;
  }

  .top-label-segment {
    margin-bottom: 15px;
  }

  .top-label-segment .section-label {
    font-size: 10px;
  }
}

/* ROI Calculator banner mobile */
@media (max-width: 768px) {
  .roi-calc-hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .calculator-banner {
    border-radius: 15px;
    margin: 0 10px;
  }
}

/* Resources page mobile */
@media (max-width: 768px) {
  .resources-banner {
    min-height: 300px;
    padding: 80px 0 40px;
  }

  .resources-banner h1 {
    font-size: 1.75rem;
  }

  .resources-banner p {
    font-size: 0.95rem;
  }
}

/* Contact section mobile */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0 !important;
  }

  .contact-form-card {
    padding: 20px !important;
  }
}

/* Glass card mobile */
@media (max-width: 768px) {
  .top-glass-box {
    position: relative;
    left: auto;
    right: auto;
    margin: 20px auto;
    padding: 25px 20px;
    border-radius: 20px;
    bottom: auto;
    max-width: 90%;
    width: 90%;
    pointer-events: auto;
  }

  .top-glass-box-osha {
    position: relative;
    left: auto;
    right: auto;
    margin: 20px auto;
    padding: 25px 20px;
    border-radius: 20px;
    bottom: auto;
    max-width: 90%;
    width: 90%;
    pointer-events: auto;
  }
}

@media (max-width: 576px) {
  .top-glass-box {
    margin: 15px auto;
    padding: 20px 15px;
    border-radius: 16px;
    max-width: 95%;
    width: 95%;
  }

  .top-glass-box-osha {
    margin: 15px auto;
    padding: 20px 15px;
    border-radius: 16px;
    max-width: 95%;
    width: 95%;
  }
  .calculator-banner{
    min-height: auto !important;
  }
}

@media (max-width: 400px) {
  .top-glass-box {
    margin: 10px auto;
    padding: 16px 12px;
    border-radius: 14px;
  }

  .top-glass-box-osha {
    margin: 10px auto;
    padding: 16px 12px;
    border-radius: 14px;
  }
}

/* Footer newsletter spacing fix */
@media (max-width: 768px) {
  .newsletter-wrapper {
    padding: 30px 20px;
    margin-top: -40px;
    border-radius: 25px;
  }
}

/* Services section mobile fix */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 0 !important;
  }

  .services-overview-section {
    padding: 40px 0 !important;
  }

  .main-heading {
    font-size: 1.5rem;
    margin-bottom: 20px !important;
  }

  .fc-osha-info-card {
    padding: 20px;
  }

  .fc-osha-card-heading {
    font-size: 1.1rem;
  }

  .fc-osha-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  .cta-banner {
    text-align: center;
    padding: 30px 20px;
  }

  .btn-schedule {
    margin-bottom: 12px;
    display: block;
  }

  .btn-pdf-outline {
    display: block;
    width: 100%;
  }
}

.calculator-banner {
  position: relative;
  min-height: 600px;
  border-radius: 25px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.custom-hr-bg {
  border: 2px solid #DB5A36;
  border-radius: 10px;
}

/* ========================================
   FINAL EQUAL SPACING SYSTEM
   All sections now have equal top/bottom padding
   ======================================== */

@media (max-width: 1200px) {
  .section-space,
  .fc-osha-section-space {
    padding: 70px 0;
  }
}

@media (max-width: 992px) {
  .section-space,
  .fc-osha-section-space {
    padding: 60px 0;
  }
  
  .py-5 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

@media (max-width: 768px) {
  .section-space,
  .fc-osha-section-space {
    padding: 50px 0;
  }
  
  .py-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  
  .pt-5 {
    padding-top: 50px !important;
  }
  
  .pb-5 {
    padding-bottom: 50px !important;
  }
  
  /* Equal margin top and bottom */
  .mt-5 {
    margin-top: 30px !important;
  }
  
  .mb-5 {
    margin-bottom: 30px !important;
  }
  
  .my-5 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  
  .section-space.py-5,
  .fc-osha-section-space.py-5,
  .py-5.section-space,
  .py-5.fc-osha-section-space {
    padding: 50px 0 !important;
  }
}

@media (max-width: 576px) {
  .section-space,
  .fc-osha-section-space {
    padding: 40px 0;
  }
  
  .py-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  .pt-5 {
    padding-top: 40px !important;
  }
  
  .pb-5 {
    padding-bottom: 40px !important;
  }
  
  .mt-5 {
    margin-top: 25px !important;
  }
  
  .mb-5 {
    margin-bottom: 25px !important;
  }
  
  .my-5 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
}

@media (max-width: 400px) {
  .section-space,
  .fc-osha-section-space {
    padding: 35px 0;
  }
  
  .py-5 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  
  .pt-5 {
    padding-top: 35px !important;
  }
  
  .pb-5 {
    padding-bottom: 35px !important;
  }
}

/* ========================================
   MOBILE NAVIGATION MENU STYLES
   ======================================== */

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-logo-img {
  height: 35px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(219, 90, 54, 0.1);
  color: #DB5A36;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(3, 46, 46, 0.08);
}

.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  color: #082624;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #DB5A36;
  background: rgba(219, 90, 54, 0.05);
  padding-left: 28px;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background: #DB5A36;
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  width: 4px;
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f9fa;
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
  margin-bottom: 10px;
}

.mobile-cta:last-child {
  margin-bottom: 0;
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   SMS CONSENT CHECKBOX STYLES
   ======================================== */
.sms-consent-wrapper {
    background: rgba(219, 90, 54, 0.05);
    border: 1px solid rgba(219, 90, 54, 0.2);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
}

.sms-consent-wrapper:hover {
    background: rgba(219, 90, 54, 0.08);
    border-color: rgba(219, 90, 54, 0.3);
}

.sms-consent-wrapper .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    border: 2px solid #DB5A36;
    background: white;
    transition: all 0.2s ease;
}

.sms-consent-wrapper .form-check-input:checked {
    background: linear-gradient(135deg, #DB5A36 0%, #e55a3a 100%);
    border-color: #DB5A36;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23032E2E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E");
       background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.sms-consent-wrapper .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(219, 90, 54, 0.2);
}

.sms-consent-wrapper .form-check-label {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    cursor: pointer;
    padding-left: 8px;
}

.sms-consent-note {
    font-size: 12px;
    color: #666;
    padding-left: 28px;
}

.sms-policy-link {
    color: #DB5A36;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.sms-policy-link:hover {
    color: #082624;
}

@media (max-width: 576px) {
    .sms-consent-wrapper {
        padding: 14px;
    }

    .sms-consent-wrapper .form-check-label {
        font-size: 12px;
    }

    .sms-consent-note {
        font-size: 11px;
        padding-left: 0;
    }

    .sms-consent-wrapper .form-check {
        padding-left: 28px;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DB5A36 0%, #e55a3a 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(219, 90, 54, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(219, 90, 54, 0.5);
}

.scroll-to-top-btn i {
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
  transform: translateY(-2px);
}

/* ==========================================
   PAGE-SPECIFIC STYLES
   ========================================== */

/* Hover Effects for All Cards (Homepage) */
.fc-n-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fc-n-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(224, 90, 43, 0.1);
}

.fc-n-item:hover .fc-n-icon-box {
    transform: scale(1.1);
    color: white;
}

/* Comparison Cards Hover */
.comparison-card-group {
    transition: all 0.3s ease;
    cursor: pointer;
}

.comparison-card-group:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.comparison-card-group:hover .comparison-body {
    border-width: 2px;
}

/* Step Items Hover */
.fc-n-step-pill {
    transition: all 0.3s ease;
    cursor: pointer;
}

.fc-n-step-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(224, 90, 43, 0.15);
    background: linear-gradient(135deg, #e05a2b 0%, #ff7f50 100%);
    color: white;
}

.fc-n-step-pill:hover i {
    transform: rotate(10deg);
}

/* Who We Serve Cards Hover */
.serve-card-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.serve-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.serve-card-modern:hover .serve-card-overlay {
    opacity: 0.7;
    background: linear-gradient(to top, rgba(224, 90, 43, 0.9), transparent);
}

.serve-card-modern:hover .serve-card-title {
    transform: translateY(-5px);
    color: #e05a2b;
}

/* Common Transitions */
.fc-n-icon-box,
.serve-card-overlay,
.serve-card-title,
i {
    transition: all 0.3s ease;
}

/* ==========================================
   SMS PRIVACY POLICY PAGE STYLES
   ========================================== */

:root {
    --primary-orange: #DB5A36;
    --dark-teal: #082624;
    --active-teal-bg: #f2fafa;
    --active-teal-border: #7fbfbc;
    --active-orange-bg: #fff8f6;
}

/* Tabs Container */
.legal-nav-tabs {
    border: none;
    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
}

.legal-nav-tabs .nav-item {
    flex: 1;
    max-width: 50%;
}

.legal-nav-tabs .nav-link {
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px !important;
    background: #fff !important;
    padding: 30px !important;
    text-align: left !important;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    color: inherit;
}

/* SPECIFIC TAB STATES */
.nav-link.terms-tab.active {
    border-color: var(--active-teal-border) !important;
    background-color: var(--active-teal-bg) !important;
}

.nav-link.policy-tab.active {
    border-color: var(--primary-orange) !important;
    background-color: var(--active-orange-bg) !important;
}

.tab-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eee;
    font-size: 1.2rem;
}

.terms-tab .tab-icon-wrapper {
    color: var(--primary-orange);
}

.policy-tab .tab-icon-wrapper {
    color: #5db3ad;
}

.nav-link h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.nav-link p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.nav-link .read-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5b78ff;
    text-decoration: none;
}

/* CONTENT STYLING */
.legal-body {
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark-teal);
}

.eff-date {
    font-size: 0.9rem;
    margin-bottom: 45px;
}

.sec-num {
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 35px;
    padding-top: 2px;
    color: var(--primary-orange);
}

.sec-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-teal);
}

.sec-content p {
    color: var(--dark-teal);
    line-height: 1.7;
    font-size: 1rem;
}

.orange-bullet-list {
    list-style: none;
    padding: 0;
}

.orange-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--dark-teal);
    font-size: 1rem;
    line-height: 1.5;
}

.orange-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.btn-home {
    background-color: var(--dark-teal);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: opacity 0.2s;
}

.btn-home:hover {
    color: #fff;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .legal-nav-tabs .nav-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .legal-nav-tabs .nav-link {
        padding: 20px !important;
    }

    .nav-link h4 {
        font-size: 1.1rem;
    }

    .nav-link p {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .content-section {
        flex-direction: column;
        gap: 10px;
    }

    .sec-num {
        font-size: 1.1rem;
    }
}


