

.card-reduced-padding {
    padding: 2rem 1rem;
}
.equalize-card {
    min-height: 175px;
}
.swiper-hero .swiper-slide {
    height:900px !important
}
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .header-title {margin-top:50px}
}
.hero-image {
    width:100%;
  max-width: 1800px;
}


@media (min-width: 1400px) {
  .hero-image {
    max-width: 1800px;
  }
}
/* Global font */
body,
button,
input,
select,
textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color:#fff;
}

body {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color:#fff;
}
/* Body copy */
body,
p,
li,
a,
span,
small,
label,
input,
textarea,
select,
button {
  font-family: 'Inter', sans-serif;
  color:#fff;
}
.bg-soft-primary {
  color: #000;
}

.bg-soft-primary h1,
.bg-soft-primary h2,
.bg-soft-primary h3,
.bg-soft-primary h4,
.bg-soft-primary h5,
.bg-soft-primary h6,
.bg-soft-primary p,
.bg-soft-primary li {
  color: #000;
}
/* Plyr YouTube thumbnail sizing */
.player {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.plyr {
  height: 100%;
}
/* Light modal with black text */
.modal-light-text .modal-content {
  background-color: #fff;
  color: #000;
}

.modal-light-text h1,
.modal-light-text h2,
.modal-light-text h3,
.modal-light-text h4,
.modal-light-text h5,
.modal-light-text h6,
.modal-light-text p,
.modal-light-text b,
.modal-light-text span {
  color: #000;
}

.modal-light-text .btn-close {
  filter: none; /* ensures close button stays visible on white */
}
/* Ensure close button shows correctly on light modals */
.modal-light-text .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854z'/%3e%3c/svg%3e");
  opacity: 1;
  filter: none;
}
/* RESET Bootstrap close button for light modals */
.modal-light-text .btn-close {
  background: none !important;
  box-shadow: none !important;
  opacity: 1;
  filter: none;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Custom X using pseudo-elements */
.modal-light-text .btn-close::before,
.modal-light-text .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #000;
  transform-origin: center;
}

.modal-light-text .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-light-text .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Optional hover */
.modal-light-text .btn-close:hover {
  opacity: 0.7;
}
.hero-simple {
  padding-bottom: 4rem; /* controls space before next section */
}

.hero-subtitle{
  font-size: clamp(1.35rem, 2vw, 1.75rem); /* larger, responsive */
  font-weight: 600;
  opacity: 1;
  margin-bottom: 3rem; /* space before next section */
}

/* Home page styles taken from old home page */

        .home-hero-gradient {
        background-image: linear-gradient(45deg,#a163f1,#6363f1 22%,#3498ea 40%,#40dfa3 67%, rgba(64, 223, 163, 0));
        background-size: 150% 100%;
        background-repeat: no-repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: intro-gradient 1.2s cubic-bezier(0.85, 0.26, 0.89, 0.93);
        animation-iteration-count: 1;
        animation-fill-mode: backwards;
        animation-delay: 0.4s; }

        .overlay-card {
          position: relative;
          height: 450px; /* taller card to show more of the image */
        }
        
        .overlay-card .card-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
        
        /* Overlay text in bottom-left without shadow */
        .card-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          padding: 1rem;
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          color: #fff; /* white text */
        }
        
        .card-title {
          font-size: 1.25rem;
          font-weight: 700;
          line-height: 1.2;
          margin: 0;
          color: #fff; /* ensure white */
        }
        
        .btn {
          align-self: start;
          color: #fff; /* white button text */
          background-color: #007bff; /* button background color */
          border: none;
        }

        .img-cover {
          position: absolute;
          inset: 0; /* top:0; right:0; bottom:0; left:0 */
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center top; /* show top of the image on large screens */
        }
        
        /* Make image taller on large screens */
        .image-col {
          min-height: 500px; /* default large screen height */
        }
        
        @media (min-width: 1200px) {
          .image-col {
            min-height: 650px; /* extra height on extra-large screens */
          }
        }
        
        @media (max-width: 991.98px) {
          .image-col {
            min-height: 400px; /* taller for stacked mobile */
            object-position: center top; /* prioritize top of image on mobile too */
          }
        }

        /* Remove default Bootstrap caret */
        .accordion-button::after {
          display: none;
        }
        
        /* Blue circle with white + symbol */
        .accordion-icon {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 28px;
          height: 28px;
          border-radius: 50%;
          background-color: #007bff; /* Blue color */
          color: #fff;
          font-weight: bold;
          font-size: 18px;
          transition: transform 0.3s ease;
        }
        
        /* Rotate + to x when expanded */
        .accordion-button:not(.collapsed) .accordion-icon {
          transform: rotate(45deg); /* + becomes × */
        }
        .accordion-wrapper .card-header button.collapsed::before {
            display: none !important;
        }
        .accordion-wrapper .card-header button:before {
        display: none !important;
        }
    
        /* Add this responsive CSS */
          @media (max-width: 576px) {
            .mobile-margin {
              margin-top: 100px;
            }
          }
 
          /* footer stuff */
          .footer-dark { background-color: #17161a; }
/* mobile menu stuff */
.navbar-dark .navbar-toggler {
  border: 0;
}

/* Force visible hamburger icon */
.navbar .navbar-toggler {
  border: 0;
  box-shadow: none;
}

.navbar .navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: none !important; /* avoid broken SVG refs */
  position: relative;
}

/* Draw 3 bars */
.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after,
.navbar .navbar-toggler-icon {
  display: inline-block;
}

.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff; /* white bars */
}

.navbar .navbar-toggler-icon::before { top: 0.35em; }
.navbar .navbar-toggler-icon::after  { top: 1.05em; }

/* Middle bar */
.navbar .navbar-toggler-icon {
  background: linear-gradient(#fff,#fff) 0 0.7em / 100% 2px no-repeat;
}

/* api PAGE FORMATTING */
.api-heading-primary {
    font-weight: 500;
}

.api-heading-secondary {
    font-weight: 600;
    font-size: 25px;
}



.wrapper.bg-black {
    padding: 60px 0;
    color: #ffffff; /* Ensures text is visible on black background */
}
/* checkmark bullet */
.custom-check-list {
  list-style: none;
  padding-left: 0;
}

.custom-check-list li::before {
  content: "✓"; /* The checkmark */
  color: #3f78e0; /* Your primary blue color */
  font-weight: bold;
  display: inline-block; 
  width: 1.5em;
  margin-left: -1.5em;
}

/* jotform */
.jotform-form {
  background: red;
}

/* hide the missing icons and use SVG instead */
.dropdown-toggle::after { display:none !important; }

/* Hide bootstrap caret so we can use our own SVG */
.dropdown-toggle::after { display:none !important; }

/* Close button (SVG) */
.icon-btn{
  appearance:none;
  border:0;
  background:transparent;
  padding:8px;
  border-radius:999px;
  color:#fff;                 /* makes SVG white */
  cursor:pointer;
  line-height:0;
}
.icon-btn:hover{ background: rgba(255,255,255,.12); }
.icon-btn svg{ display:block; }

/* Hide Bootstrap caret */
.navbar-nav .dropdown-toggle::after {
  display: none;
}

/* SVG caret */
.nav-caret{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:.4rem;
  color:inherit;
  transition: transform .2s ease;
}

.nav-link[aria-expanded="true"] .nav-caret{
  transform: rotate(180deg);
}

/* Mobile alignment */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.4;
  }
}

/* Hamburger */
.navbar-toggler{
  border: 0;
  padding: .25rem .25rem;
}

.hamburger-svg{
  display:inline-flex;
  color:#fff;
}
.nav-caret {
  width: 1.25em;
  height: 1.25em;
}

