/* ==========================================================================
   Custom Design Refresh
   Loaded after the base theme stylesheets — overrides existing theme
   classes only. No new component classes are introduced.
   ========================================================================== */

:root {
  --brand-blue: #0A24F4;
  --brand-blue-dark: #081ac2;
  --ink: #14161f;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --border-soft: rgba(20, 22, 31, 0.08);
  --shadow-soft: 0 10px 30px rgba(10, 36, 244, 0.08);
  --shadow-lift: 0 18px 40px rgba(10, 36, 244, 0.14);
  --radius-lg: 18px;
  --radius-md: 12px;
}

/* -- Typography ------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.01em;
}

.section-title.style1 span,
.content-title.style1 span {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
}

.section-title.style1 h2,
.content-title.style1 h2 {
  margin-top: 10px;
}

/* Restore a visible focus ring for keyboard users (theme disables outline globally) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
  box-shadow: none;
}

/* -- Buttons ------------------------------------------------------------ */
.btn.style1 {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn.style1:hover {
  background-color: var(--brand-blue-dark);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.link.style1 {
  font-weight: 600;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link.style1:hover {
  color: var(--brand-blue);
}

/* -- Hero ---------------------------------------------------------------- */
.hero-wrap.style2 {
  overflow: hidden;
}

.hero-content span {
  display: inline-block;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.18;
}

.hero-img-one img,
.hero-img-two img,
.about-img-one img,
.about-img-two img,
.wh-img img {
  border-radius: var(--radius-lg);
}

.hero-contact-text p {
  font-size: 14px;
}

/* -- Cards: feature / currency / testimonial ----------------------------- */
.feature-card.style3,
.feature-card.style4,
.currency-card,
.testimonial-card.style3 {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 20px rgba(20, 22, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card.style3:hover,
.feature-card.style4:hover,
.currency-card:hover,
.testimonial-card.style3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(10, 36, 244, 0.18);
}

.feature-card .feature-icon i,
.feature-icon i {
  transition: transform 0.25s ease, color 0.25s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.08);
  color: var(--brand-blue);
}

.currency-card {
  padding: 24px;
}

.currency-flag img {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(20, 22, 31, 0.12);
}

.testimonial-card.style3 {
  min-height: 300px;
}

/* -- Header / Nav ---------------------------------------------------------- */
.header-wrap.style2 {
  background-color: var(--surface);
  box-shadow: 0 1px 0 var(--border-soft);
}

.navbar-nav .nav-link {
  font-weight: 600;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-blue);
}

/* -- Footer ------------------------------------------------------------- */
.footer-wrap {
  background-color: #0c0e1a;
}

.footer-widget-title {
  letter-spacing: 0.5px;
}

.social-profile.style1 a {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-profile.style1 a:hover {
  transform: translateY(-3px);
  background-color: var(--brand-blue);
}

.back-to-top {
  background-color: var(--brand-blue);
  box-shadow: var(--shadow-lift);
}

/* -- Responsive polish ---------------------------------------------------- */
@media (max-width: 991px) {
  .feature-card.style3,
  .feature-card.style4,
  .currency-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-card.style3 {
    min-height: auto;
    padding: 24px 20px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section-title.style1 h2,
  .content-title.style1 h2 {
    font-size: 1.5rem;
  }

  .currency-card {
    padding: 18px;
  }
}
