@font-face {
  font-family: "Lora";
  src: url("../webfonts/Lora/Lora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../webfonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

.hc-launch * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hc-launch {
  --brand: #04447a;
  font-family: var(--default-font);
  background:
    radial-gradient(circle at 12% 15%, rgba(4, 68, 122, 0.05), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(255, 183, 3, 0.08), transparent 45%),
    #f6f9fc;
  padding: 60px 6vw 64px;
  position: relative;
  overflow: hidden;
}

.hc-launch h2 {
  font-weight: 800 !important;
  font-size: clamp(30px, 4.4vw, 48px);
  color: var(--brand);
  line-height: 1.12;
  margin-bottom: 36px;
}

.hc-launch h2 span {
  color: #e29400;
}

.hc-launch .hc-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.hc-launch .hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff4dc;
  border: 1px solid #ffdda0;
  color: #b3760a;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hc-launch .hc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hc-launch .hc-card {
  background: #ffffff;
  border: 1px solid rgba(4, 68, 122, 0.07);
  border-radius: 18px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow:
    0 4px 20px rgba(4, 68, 122, 0.06),
    0 1px 2px rgba(4, 68, 122, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hc-launch .hc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(4, 68, 122, 0.14);
}

.hc-launch .hc-icon {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 6px 10px rgba(4, 68, 122, 0.18));
}

.hc-launch .hc-card h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--brand);
}

.hc-launch .hc-card p {
  font-size: 12.5px;
  color: #7f92a3;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .hc-launch .hc-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .hc-launch .hc-row {
    grid-template-columns: 1fr;
  }
}

.floating_btn svg {
  fill: white;
  width: 85%;
}

.floating_btn {
  position: fixed;
  bottom: 72px;
  right: 18px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 #42db87;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #d96500;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.call-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.call-now-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.call-now-btn .call-now-text {
  white-space: nowrap;
}

.call-now-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: inherit;
  animation: call-now-pulse 2s infinite;
  z-index: -1;
}

@keyframes call-now-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 768px) {
  .call-now-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .call-now-btn {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .call-now-btn .call-now-text {
    display: none;
  }
}

.phone-frame {
  width: 218px;
}

.hiw-sub {
  color: black;
}

.app-section .section-title h3,
.app-section .section-title h2,
.app-section .section-title h2 span,
.app-section .section-title p {
  color: #ffffff;
}

.testimonial-slider .swiper {
  overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  cursor: pointer;
  border: 0;
}

.slicknav_nav.slicknav-open {
  display: block !important;
}

.accordion-collapse.collapse:not(.show) {
  display: none;
}

.accordion-collapse.collapse.show {
  display: block;
}

html {
  scroll-padding-top: 100px;
}
