.img-hover {
  overflow: hidden;
  display: inline-block;
  border-radius: 12px;
}

.img-hover img {
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-hover:hover img {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.cname {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.35s ease;
}

.cname img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.cname:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.cname:hover img {
  transform: scale(1.06);
}
.purple-glow-card {
  position: relative;
  padding: 30px 40px;
  border-radius: 16px;
  background: rgba(30, 20, 60, 0.4);
  color: #eae6ff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(160, 120, 255, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;

  /* subtle glow (idle state) */
  box-shadow:
    0 0 20px rgba(140, 100, 255, 0.15),
    inset 0 0 15px rgba(140, 100, 255, 0.08);
}

/* gradient border glow */
.purple-glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #a970ff, transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0.4;
  transition: all 0.4s ease;
}

/* soft ambient layer */
.purple-glow-card::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(180,140,255,0.08), transparent 60%);
  opacity: 0.6;
  transition: 0.4s ease;
}

/* hover effect */
.purple-glow-card:hover {
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    0 0 40px rgba(160, 120, 255, 0.45),
    0 0 80px rgba(140, 100, 255, 0.25),
    inset 0 0 25px rgba(160, 120, 255, 0.2);
}

.purple-glow-card:hover::before {
  opacity: 1;
  background: linear-gradient(120deg, #7a3cff, #c084fc, #7a3cff);
  filter: blur(2px);
}

.purple-glow-card:hover::after {
  opacity: 1;
}
.hero-banner {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* Animated gradient background */
  background: linear-gradient(270deg, #ff6a00, #ee0979, #4f46e5, #00c9ff);
  background-size: 800% 800%;
  animation: gradientMove 10s ease infinite;

  /* Depth */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Moving gradient animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-banner {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* Clean professional gradient */
  background: linear-gradient(135deg, #1e3a8a, #2563eb);

  /* Soft inner glow */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 20px 40px rgba(0,0,0,0.15);

  /* Smooth edges */
  border: 1px solid rgba(255,255,255,0.15);
}

/* Subtle top light effect */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Bottom depth shading */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.2),
    transparent 50%
  );
  pointer-events: none;
}
.glow-hero {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  transition: all 0.35s ease;
}

/* Glow effect */
.glow-hero:hover {
  box-shadow:
    0 0 20px rgba(37, 99, 235, 0.6),
    0 0 40px rgba(37, 99, 235, 0.4),
    0 0 60px rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

/* Soft glowing border */
.glow-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.glow-hero:hover::before {
  opacity: 1;
}

/* REUSABLE SLEEK CARD CLASS
   Apply this to any element: <div class="evanza-sleek-card">
*/

.evanza-sleek-card {
    position: relative;
    background: #ffffff;
    /* Sharp edges and thin professional border */
    border: 1px solid #e0d0f0; 
    border-radius: 2px; 
    padding: 30px 40px;
    
    /* Smooth "expensive" transition for hover */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Boxy shadow - starts very subtle */
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.02);
    overflow: hidden;
    cursor: pointer;
}

/* The vertical purple accent line */
.evanza-sleek-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    height: 20px;
    width: 4px;
    background-color: #6a1b9a; /* Evanza Purple */
    transition: all 0.3s ease;
}

/* SLEEK HOVER EFFECTS */
.evanza-sleek-card:hover {
    /* Precise lift effect */
    transform: translateY(-6px);
    
    /* Deepen border and shadow on hover */
    border-color: #6a1b9a;
    box-shadow: 0 15px 35px rgba(106, 27, 154, 0.08);
}

/* Growing accent line on hover */
.evanza-sleek-card:hover::before {
    height: 100%;
    top: 0;
    width: 6px;
}

.hero-banner-curved {
  border-radius: 50% / 10%;
  overflow: hidden;
}