
/* ellhnhkkka/styles.css */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom gradient for navigation */
.bg-nav-gradient {
  background: linear-gradient(to right, #6366F1, #8b5cff);
}

/* Custom card shadow on hover */
.card-hover:hover {
  box-shadow: 0 10px 25px -12px rgba(99,102,241,0.4);
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

/* Custom gradient text for headings */
.text-gradient {
  background: linear-gradient(to right, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom button style for primary buttons */
.btn-primary {
  background: linear-gradient(to right, #6366f1, #8b5cf6);
  color: white;
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(to right, #5856d6, #a855f7);
  box-shadow: 0 8px 30px rgba(99,102,241,0.25);
  transform: translateY(-1px);
}

/* Custom card styles */
.card {
  border: 1px solid rgba(99,102,241,0.1);
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 15px 35px -15px rgba(99,102,241,0.15);
  transform: translateY(-3px);
}

/* Custom section spacing */
.section-padding {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Custom gradient background for hero sections */
.hero-gradient {
  background: linear-gradient(135deg, #ecf0f3, #ffffff);
}

/* Custom utility for rounded corners SVG */
.svg-rounded {
  border-radius: 1.5rem;
  overflow: hidden;
}

/* Custom transition for SVG hover */
.svg-hover:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Custom gradient for CTA sections */
.cta-gradient {
  background: linear-gradient(to right, #6366f1, #a855f7);
}

.cta-gradient.text {
  background: linear-gradient(to right, #fff, #f4f4f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom shadow */
.shadow-neumorph {
  box-shadow: 8px 8px 16px #d9d9d9,
              -8px -8px 16px #ffffff;
}
