:root {
    --bs-primary: #2dc0c5;
    /* Custom teal */
    --bs-secondary: #dbe7f8;
    --bs-light-blue: #aed7ee;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #F6FAFF;
    --bs-light-gradient: linear-gradient(135deg, #73e7e9, #C0C1FF);
    --bs-dark: #363b41;
    --bs-body-font-family: 'Ubuntu', sans-serif;
    --bs-heading-font-family: 'Prompt', sans-serif;
}

.hsfc-Row:first-child .hsfc-Heading {
  color: #2CC0C5 !important;
  margin-bottom: 0px !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

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

/* ================
   Custom Navbar Styling
   ================ */

.navbar {
    background-color: white !important;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding-top: 2rem !important;
}

.navbar-brand img {
    max-height: 44px;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-item .nav-link {
    color: #2c2d30;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.25s ease;
    padding-bottom: 4px;
}

.navbar-nav .nav-item:not(.dropdown) .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-item:not(.dropdown) .nav-link:hover {
    //color: #ffffff;
}

.navbar-nav .nav-item:not(.dropdown) .nav-link:hover::after {
    width: 80%;
}

/* Active link style for non-dropdowns */
.navbar-nav .nav-item:not(.dropdown) .nav-link.active {
    color: var(--bs-primary);
}

.navbar-nav .nav-item:not(.dropdown) .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-item:last-child .nav-link {
    display: inline-block;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
    background: var(--bs-primary);
    color: #fff;
    padding-bottom: 6px;
}


.navbar-nav .nav-item:last-child .nav-link:hover:after {
    display: none;
}


/* Typography */
body {
    font-family: var(--bs-body-font-family);
    font-weight: 400;
    line-height: 1.7;
    //background-color: var(--bs-light);
    margin-top: 40px;
    color: var(--bs-dark);
    /* Optional: dark background to match dark navbar */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--bs-heading-font-family);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: black;
}

.navbar,
.navbar-nav .nav-link {
    font-family: var(--bs-heading-font-family);
}

/* Optional: lighter subtitle styling */
.lead,
.subtitle {
    font-weight: 300;
    color: #57585b;
    font-size: 1.15rem;
}

.shadowed {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
}

.featured-logo {
    max-height: 60px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
}

.featured-logo:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.bg-light-blue {
    background-color: var(--bs-light-blue) !important;
}

.bg-light-gradient {
    background: linear-gradient(153deg, rgba(246, 250, 255, 1) 0%, rgba(230, 240, 255, 1) 99%);
}

.bg-primary {
    background-color: var(--bs-primary) !important;

    .lead,
    .subtitle {
        color: white;
    }

    /* optional for readability */
}




footer a:hover {
    color: var(--bs-primary) !important;
    text-decoration: underline;
}

.custom-bullets {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.custom-bullets .hs_cos_wrapper {
  width: 100%;
  text-align: left;
}

.custom-bullets.white li {
    background-color: white !important;
    text-align: left;
}

.custom-bullets li {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border: 1px solid rgb(235, 235, 245);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    width: 48%;
    color: #212529;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 1440px) {
    .custom-bullets li {
        width: 100%;
    }
}

.custom-bullets li:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.custom-bullets .icon {
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.jumbotron {
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 2px 25px rgba(86, 82, 96, 0.25);
    background: white;
    width: 100%;
    //max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 25px;
    margin-top: 25px;
}

.jumbotron-primary {
    background-color: var(--bs-primary);
    color: white;
}

.jumbotron-dark {
    background-color: #26252f;
    color: white;
}

.logo-carousel img {
    max-height: 100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .logo-carousel .slick-slide {
        padding: 0 10px;
    }
}

.faded-bg {
    position: relative;
    overflow: hidden;

    &:after {
        content: '';
        position: absolute;
        width: 50%;
        right: 0;
        top: 0;
        height: 100%;
        background-image: url('/img/firefighter-laptop.png');
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;
        opacity: 0.25;
    }
}

.hexigons {
    position: relative;
    overflow: hidden;
}

.hexigons .one {
    content: '';
    position: absolute;
    width: 25%;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0.25;
}

.hexigons .two {
    content: '';
    position: absolute;
    width: 25%;
    left: 0;
    top: 0;
    transform: scaleX(-1);
    height: 100%;
    opacity: 0.25;
}

.hexigons .hexigon img {
    object-fit: contain;
    object-position: bottom right;
    width: 100%;
    height: 100%;
}



/* Custom vibrant button style that overrides Bootstrap's .btn */
.btn {
    display: inline-block;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.25s ease;
    //box-shadow: 5px 5px 0 black;
    //border: 2px solid black;
}


/* Hover effect */
.btn:hover,
.btn:active {
    //box-shadow: 3px 3px 0 black;
    //transform: translateY(4px);
    //border: 2px solid black;
    color: rgba(0, 0, 0, 0.3);
}


/* Custom background variants using Bootstrap’s button classes */
.btn-primary {
    background: var(--bs-primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
    background: #249497;
    color: #d4dbd9;
}

.btn-secondary {
    background: var(--bs-secondary);
    color: #77797b
}

.btn-secondary:hover,
.btn-secondary:active {
    background-color: #b5c4da;
    color: #2a2d31
}

.btn-info {
    background: linear-gradient(135deg, #00ffc8, #00aaff);
}

.btn-settings {
    background: linear-gradient(135deg, #2899ff, #004dff);
}



section:first-of-type {
    padding-top: 100px !important;
}


.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  font-size: 0.95rem;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  vertical-align: middle;
  border-top: 1px solid var(--bs-secondary);
}

.pricing-table .tiered-heading {
  background-color: var(--bs-secondary);
  font-weight: 600;
  border-bottom: 0px;
}

.pricing-table .premium-heading {
  background: var(--bs-primary);
  color: white;
  font-weight: 600;
  border-bottom: 0px;
}

.pricing-table .feature-label {
  background-color: transparent;
  font-weight: 600;
  text-align: right;
  max-width: 100px;
  border: 0px;
}

.pricing-table s {
  opacity: 0.6;
  font-size: 0.9rem;
}

.table-price td,
.table-price th {
  font-size: 1.1rem;
  font-weight: 600;
}

.pricing-table .bi-check-lg {
  font-size: 1.4rem;
  font-weight: bold;
}


/* Custom Dropdown Styles */
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  animation: fadeSlideIn 0.3s ease both;
  min-width: 220px;
}

/* Optional animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav .dropdown-item {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  transition: background 0.2s, color 0.2s;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: #f8f9fa;
  color: var(--bs-primary);
  border-radius: 6px;
}

.navbar-nav .dropdown-item:focus, .navbar-nav .dropdown-item:hover {
  color: var(--bs-primary);
}

#sidebar-tabs {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 10px;

  .list-group-item {
    border: none;
    color: #212529;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 500;
    padding: 15px;
    
    &:after {
      color: #c5eaf0;
      content: "\F285";
      display: inline-block;
      font-family: Bootstrap-icons;
      font-size: 1em;
      margin-right: 5px;
      position: absolute;
      right: 0;
      top: 16px;
    }

    &:hover {
      background-color: #f0f4ff;
      color: var(--bs-primary);

      i {
        color: var(--bs-primary);
      }
    }

    &.active {
      color: var(--bs-primary);
      font-weight: 600;

      i {
        color: #fff;
      }
    
      &:after {
        color: var(--bs-primary);
       }
    }

    i {
      font-size: 1.2rem;
      color: #6c757d;
      transition: color 0.2s ease;
    }

    &:not(:last-child) {
      border-bottom: 1px solid #e9ecef;
    }
  }
}

.body-container-wrapper > .container-fluid {
  padding: 0px;
}


.sign-in-link-bar {
  background: white;
  border-bottom: 1px solid #e9e9e9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: right;
  width: 100%;
  height: auto;
  z-index: 9999;
  padding: 4px 6px 2px 6px;
  font-size: 14px;
}
.sign-in-link-bar a {
  text-decoration: none;
  color: #999;
}
.sign-in-link-bar a:hover {
  text-decoration: underline;
  color: var(--bs-primary);
}

.navbar-toggler {
  background: #d9d9d9;
  border-radius: 5px;
  padding: 5px;