.hero {
  background: url("img/hero-bg.jpg") center center / cover no-repeat fixed;
  min-height: 70vh;
}
.colorByme {
  background-color: #f3f8fe;
}
.custom-card {
  background: #f3f8fe;
  border-radius: 10px;
  position: relative;
  padding-top: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 4rem;
  height: 4rem;
  background: #0d6efd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.card-number {
  font-weight: 700;
  font-size: 2.25rem;
}
.card-text {
  font-weight: 300;
  font-size: 16px;
}

@media (max-width: 768px) {
  .custom-card {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .custom-card {
    margin-top: 40px;
  }
}
/* ---------------------------------------------------------------- */
.logo-bar {
  background: #f3f8fe;
  padding: 10px 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo-bar .logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  transition: transform 0.3s ease;
}
.logo-bar .logo-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 12px;
}
.logo-bar .logo-item:hover img {
  transform: scale(1.1);
}

/* ---------------------------------------------------------------- */
.icon-box {
  font-size: 3rem;
  color: #007bff;
  background-color: #f3f8fe;
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
/* ---------------------------------------------------------------- */
.accordion-item {
  border: none;
  border-bottom: 2px solid #494b4c;
  border-radius: 0;
  margin-bottom: 10px;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  color: #494b4c;
}
/* ================================================================ */

.input-group .form-control,
.input-group-text,
.btn {
  border-radius: 0.5rem;
}
.input-group-text {
  padding: 0.45rem 0.75rem;
}
.email-input {
  width: 250px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
/* =================================================================================================================== */
/* ---------------- Hover effects  ---------------- */

* {
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.22, 0.9, 0.35, 1);
}

/* ---- Buttons ---- */
.btn {
  transition-property: transform, box-shadow, filter, background-color, color;
  will-change: transform, box-shadow;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.12);
  text-decoration: none;
  outline: none;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  filter: saturate(1.05);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.18);
  color: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.btn.link-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.btn.link-primary:hover {
  transform: translateX(6px);
  color: #0d6efd !important;
}

.card {
  transition-property: transform, box-shadow, border-color;
  transition-duration: 260ms;
  will-change: transform, box-shadow;
  border-radius: 12px;
  overflow: hidden;
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(8, 24, 63, 0.08);
  border-color: rgba(13, 110, 253, 0.08);
}

.custom-card {
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.35, 1), box-shadow 0.28s;
}
.custom-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 18px 45px rgba(3, 10, 39, 0.06);
}

.card:hover .card-title,
.custom-card:hover .card-number {
  transform: translateY(-3px);
  transition: transform 0.2s;
}

.icon-box,
.card-icon .icon-box,
.icon-circle {
  transition: transform 0.28s, box-shadow 0.28s;
}
.icon-box:hover,
.card:hover .icon-box,
.custom-card:hover .icon-circle {
  transform: translateY(-6px) rotate(-4deg) scale(1.06);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.12);
}

.card:hover .icon-box svg,
.custom-card:hover .icon-circle i,
.card:hover .card-icon i {
  filter: drop-shadow(0 6px 18px rgba(13, 110, 253, 0.08));
  opacity: 0.98;
}

.logo-bar .logo-item img {
  transition: transform 0.28s ease, filter 0.28s;
}
.logo-bar .logo-item:hover img {
  transform: scale(1.12) translateY(-4px);
  filter: saturate(1.05) contrast(1.02);
}

.footer .btn-outline-primary {
  transition: transform 0.22s, background-color 0.2s, color 0.2s;
}
.footer .btn-outline-primary:hover {
  transform: translateY(-4px) scale(1.03);
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.btn:focus-visible,
.card:focus-within {
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
  outline: none;
}

@media (max-width: 576px) {
  .card:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  .btn:hover {
    transform: none;
  }
}
