@font-face {
  font-family: Inter; /* set name */
  src: url('../font/Inter-Regular.otf');
  format('otf');
}
html, body {
    font-family: Inter, sans-serif; /*Specify your font name here*/
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #071D49 !important;
}
.strikethrough {
   text-decoration: line-through;
}

.footer-cta {
    position: relative;
    background: url('../img/img_main_bottom.jpg') center center;
    background-size: cover;
    overflow: hidden;
}

.footer-cta .overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 32, 82, 0.85);
}

.footer-cta .container {
    z-index: 2;
}

.footer-cta h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.text-primary-custom {
    color: #5f9cff;
}

.cta-badge {
    display: inline-block;
    background: #2f7df6;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom {
    background: #2f7df6;
    border-color: #2f7df6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
}

.btn-primary-custom:hover {
    background: #2568d4;
    border-color: #2568d4;
    color: #fff;
}

.btn-light-custom {
    background: #fff;
    color: #111;
    padding: 12px 24px;
    border-radius: 10px;
}

.btn-light-custom:hover {
    background: #f2f2f2;
}

.site-footer {
    background: linear-gradient(
        90deg,
        #03224c 0%,
        #01152f 50%,
        #000d23 100%
    );
    padding: 70px 0;
    color: #fff;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}

.footer-brand h3 span {
    color: #2f86ff;
}

.footer-brand p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #8fb9ff;
    margin-top: 4px;
    text-transform: uppercase;
}

.footer-title {
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 28px;
    height: 3px;
    background: #2f86ff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d8e2f1;
    text-decoration: none;
    transition: color .3s ease;
}

.footer-links a:hover {
    color: #2f86ff;
}

.site-footer address {
    color: #d8e2f1;
    line-height: 1.8;
    margin-bottom: 0;
}

.hero-images {
    display: flex;
    gap: 15px;
    justify-content: center;
}


.hero-card {
    width: 180px;
    height: 340px;
    object-fit: cover;

    transform: skewX(-8deg);
    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.step-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-arrow {
    font-size: 2rem;
    color: #999;
}

@media (max-width: 768px) {
  .hero-images {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-images .hero-card {
    width: 30% !important;
    max-width: 110px !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }
}