/* ============================================
   SVG Icon Styles
   ============================================ */

/* Feature icons in home section */
.feature-icon img {
  height: 50px;
  width: 50px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.1));
}

.feature-card:hover .feature-icon img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.3));
}

/* Navbar logo */
.navbar-brand img {
  transition: transform 0.3s ease;
  height: 45px;
  width: auto;
}

.navbar-brand:hover img {
  transform: rotate(-5deg) scale(1.05);
}

/* Icon definitions */
.logo-svg {
  height: 50px;
  width: auto;
  display: inline-block;
}

.payment-icon,
.transfer-icon,
.security-icon,
.wallet-icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
}

/* Responsive icon sizing */
@media (max-width: 768px) {
  .feature-icon img {
    height: 40px;
    width: 40px;
  }

  .feature-card:hover .feature-icon img {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Icon hover effects */
svg img {
  cursor: pointer;
}

/* Color variations for different icon types */
.security-icon {
  filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.2));
}

.transfer-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 170, 102, 0.2));
}

.payment-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.2));
}

.wallet-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.2));
}
