/**

/* Base offset for small screens */
.pt-sticky-offset {
  padding-top: 100px;
}

/* Larger offset for bigger headers on larger screens (optional) */
@media (min-width: 768px) {
  .pt-sticky-offset {
    padding-top: 100px; /* Adjust if your sticky header is taller on desktop */
  }
}


/* Enable hover dropdown for large screens only */

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* optional: smoother animation */
  }
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
  }

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



.dropdown-arrow.rotate {
  transform: rotate(180deg);
}

  .nav-mobile a {

    font-size: 1.2rem;
    line-height: 1.2;
  }

 
  .hero-bg {
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;        
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 16 / 9;         
}

 .industry-card {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.industry-card img {
  transition: transform 0.4s ease;
}

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

.industry-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
}

.industry-card:hover .overlay {
  opacity: 1;
}

.product-image-wrapper {
  aspect-ratio: 4 / 3; /* or try 3 / 2 for wider images */
  background-color: #fff; /* Optional fallback */
}

.object-fit-contain {
  object-fit: contain;
  object-position: center;
}

.form-label, .form-check-label {

  font-size: 13px;
  font-weight: bold;
}

.text-purple {
  color: var(--bs-purple);
}

.graident-1 {
background: #2D2B84;
background: linear-gradient(99deg, rgba(45, 43, 132, 1) 0%, rgba(25, 24, 81, 1) 91%);
}

.hover-scale {
  transition: transform 0.2s ease-in-out;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.blog img {
border-radius: 1rem !important;
}
/*heading formatting reszied*/
.blog h2 { font-size: 2.6rem; }
.blog h3 { font-size: 2.0rem; }
.blog h4 { font-size: 1.6rem; }

@media (min-width: 1400px) {
  .col-xl-1-5 {
    flex: 0 0 auto;
    width: 12.5%; /* 8 logos per row on XL screens */
  }
}

.intro-hd-small {
  letter-spacing: 2px; color: #FDDB00;
}


.h-80px {
  height: 80px !important;
}

.highlight-50 {
    color:#3d399a;
}

/* iPad Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) {
  .ipad-hide {
    display: none !important;
  }
}

/* iPad Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) {
  .ipad-hide {
    display: none !important;
  }
}


.wha-trust-bar {
  background: #191851;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 16px 0;
}

.wha-trust-bar .trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.wha-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  position: relative;
  flex-shrink: 0;
}

.wha-trust-item + .wha-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.wha-trust-item .trust-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wha-trust-item .trust-icon svg {
  width: 22px;
  height: 22px;
  fill: #F16522;
}

.wha-trust-item .trust-text {
  display: flex;
  flex-direction: column;
}

.wha-trust-item .trust-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #9aa5b8;
  line-height: 1.2;
}

.wha-trust-item .trust-value {
  font-size: 14px;
  font-weight: 600;
  color: #e8eaf0;
  line-height: 1.3;
  margin-top: 2px;
}

.wha-trust-item.am-item .am-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wha-trust-item.am-item .am-logo-wrap img {
  width: 38px;
  height: auto;
}

.wha-trust-item.am-item .am-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wha-trust-item.am-item .am-wordmark span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #4ecf99;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .wha-trust-item + .wha-trust-item::before { display: none; }
  .wha-trust-item { padding: 8px 8px; }
  .wha-trust-item .trust-label { display: none; }
}

@media (max-width: 1100px) {
  .wha-trust-item {
    padding: 10px 6px;
  }
  .wha-trust-item .trust-label {
    display: none;
  }
}

@media (max-width: 767px) {
  .wha-trust-item + .wha-trust-item::before { display: none; }
  .wha-trust-item { padding: 8px 8px; }
  .wha-trust-item .trust-label { display: none; }
}

.wha-logos-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #9aa5b8;
  margin-bottom: 16px;
}

.wha-trust-logos {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.wha-trust-logo-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 10px;
}

.wha-trust-logo-item img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.wha-trust-logo-item p {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.wha-trust-logo-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
}

@media (max-width: 575px) {
  .wha-trust-logos {
    flex-direction: column;
  }
  .wha-trust-logo-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}


.wha-ipc-callout {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}

.wha-ipc-callout-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #f8f9fb;
  border-bottom: 1px solid #e5e7eb;
}


.wha-ipc-callout-text svg {
  width: 22px;
  height: 22px;
  fill: #F16522;
  flex-shrink: 0;
  margin-top: 2px;
}

.wha-ipc-callout-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #1a2235;
  margin: 0;
  font-weight: 500;
}

.wha-ipc-logos {
  display: flex;
  align-items: center;
  background: #fff;
}

.wha-ipc-logo-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
}

.wha-ipc-logo-item img {
  height: 52px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.wha-ipc-logo-item span {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

.wha-ipc-logo-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
}

@media (min-width: 768px) {
  .wha-ipc-callout {
    max-width: 700px;
  }
}

@media (max-width: 575px) {
  .wha-ipc-callout-text {
    flex-direction: column;
  }
  .wha-ipc-logos {
    flex-direction: column;
  }
  .wha-ipc-logo-item {
    width: 100%;
  }
  .wha-ipc-logo-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}

.wha-quality-strip {
  background: #f8f9fb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 32px 0;
}

.wha-quality-strip-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #9aa5b8;
  text-align: center;
  margin-bottom: 20px;
}

.wha-quality-strip-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.wha-quality-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 20px;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}

.wha-quality-strip-item svg {
  width: 28px;
  height: 28px;
  fill: #F16522;
  flex-shrink: 0;
}

.wha-quality-strip-item div {
  display: flex;
  flex-direction: column;
}

.wha-quality-strip-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a2235;
  line-height: 1.3;
}

.wha-quality-strip-item span {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

@media (max-width: 575px) {
  .wha-quality-strip-item {
    max-width: 100%;
  }
}