* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #fdf8f8 !important;
}

body {
  background: #000000;
  color: #f2eded;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

#features,
#products,
#pricing,
#testimonials {
  scroll-margin-top: 90px;
}

.navbar {
  border-bottom: none;
}

.navbar nav a {
  color: #0e0d0d;
}

.hero p,
.stats p,
.category-card p,
.featured-header h2,
.section-label,
.rating small,
#features h2 {
  color: #e2e8f0;
}

.hero h1,
.category-card h4,
.stat h3,
.product-content h3,
.product-content p,
.badge,
.featured-header h2 {
  color: #ffffff;
}

.categories,
.stats,
.featured-section {
  background: #ffffff;
}

.category-card {
  background: #ffffff;
  color: #e2e8f0;
}

.section-label {
  color: #94a3b8;
}


/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: none;
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

.navbar nav a {
  margin: 0 16px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: #ffffff !important;
  color: #000000 !important;
}

.btn.ghost {
  background: transparent;
  color: #ebe1e1;
}

.btn.outline {
  background: transparent;
  border: 1px solid #cbd5f5;
  color: #fff3f3;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #fffdfd;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rating {
  color: #ffa406;
  font-size: 14px;
}

.rating small {
  color: #ffffff;
  margin-left: 8px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 80px;
  border-top: 1px solid #00000000;
  background: #08080800 !important;
}

.stat {
  text-align: center;
  background: transparent;
}

.stat h3 {
  font-size: 28px;
  font-weight: 700;
}

.stat p {
  margin-top: 6px;
  color: #ffffff00;
}

/* Responsive */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 40px;
  }

  .navbar {
    padding: 20px;
  }

  .navbar nav {
    display: none;
  }
}

/* Section labels */
.section-label {
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #94a3b8;
}

/* Categories */
.categories {
  padding: 80px;
}

.categories h2 {
  font-size: 36px;
  margin: 12px 0 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: #000000 !important;
  border-radius: 16px;
  padding: 28px;
  color: #ffffff !important;
}

.category-card .icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.category-card p {
  color: #ffffff !important;
}

.category-card {
 box-shadow: 0 10px 30px #fd2a00;
  transition: 0.3s;
}
.category-card:hover {
  transform: translateY(-6px);
}


.featured-section {
  padding: 80px 8%;
  background: #f7f8fa;
  font-family: 'Inter', sans-serif;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.featured-header h2 {
  font-size: 36px;
  margin: 0;
}

.view-all {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #000000 !important;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px #fd2a00;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #ffffff50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.badge.best-seller {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff;
}

.badge.new {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff;
}

.badge.popular {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff;
}




.product-image {
  height: 220px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-content {
  padding: 24px;
}

.category {
  font-size: 12px;
  color: #090909;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.meta {
  font-size: 13px;
  color: #0b0b0b;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  margin-left: 8px;
  font-size: 14px;
}

.cart-btn {
  background: black;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}


/* Why section */
.why {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 60px 40px;
}

.why-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.why h2 {
  font-size: 34px;
  margin: 16px auto 0;
  max-width: 640px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.why-card {
  background: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(253, 42, 0, 0.28);
  transition: 0.3s;
  border-radius: 14px;
  padding: 22px;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-3px);
}

.why-card h4 {
  margin: 0;
  font-size: 18px;
}

.why-card p {
  color: #4b5563;
  line-height: 1.6;
  margin-top: 10px;
}

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 680px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.steps {
  text-align: center;
  padding: 100px 20px;
  background: #ffffff;
}


.steps h2 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.step-card {
  position: relative;
  padding: 20px;
}

.step-number {
  font-size: 80px;
  font-weight: 700;
  color: rgb(249, 248, 248);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.step-card h3 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.step-card p {
  color: #d4d8e0;
  font-size: 15px;
  line-height: 1.6;
}


/* Footer */
.footer {
  padding: 80px;
  border-top: 1px solid #e5e7eb;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 80px;
}

.footer-brand h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #64748b;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-links h5 {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #0f172a;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer {
    padding: 60px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #94a3b8;
  --card: #111111;
  --border: #333333;
}

[data-theme="dark"] {
  --bg: #000000;
  --text: #ffffff;
  --muted: #94a3b8;
  --card: #111111;
  --border: #333333;
}

body {
  background: #000000 !important;
  color: #ffffff !important;
}

.category-card,
.product-card,
.why-card,
.footer,
.sections,
.featured-section,
.stats,
.categories {
  background: #111111 !important;
  border-color: #333333 !important;
}

.category-card,
.product-card,
.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.product-card:hover,
.why-card:hover {
  transform: translateY(-6px);
}

.hero p,
.navbar nav a,
.btn.ghost,
.btn.outline,
.category-card p,
.stat p,
.rating small,
.footer-links a,
.product-content p,
.meta,
.category,
.step-card p,
.footer-brand p,
.footer-bottom {
  color: #e2e8f0 !important;
}

.hero h1,
.category-card h4,
.stat h3,
.product-content h3,
.badge,
.featured-header h2,
.footer-brand h3,
.step-card h3 {
  color: #ffffff !important;
}

.product-image,
.why-card,
.steps,
.footer,
.category-card {
  background: #111111 !important;
}

.product-image {
  background: #000000 !important;
}

.why {
  background: #000000 !important;
  color: #ffffff !important;
}

.steps {
  background: #000000 !important;
}

.footer {
  background: #111111 !important;
}

.footer-bottom {
  border-top-color: #333333 !important;
}



/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
  z-index: 1000;
}

.modal-box {
  background: white;
  padding: 32px;
  border-radius: 16px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-box input,
.modal-box select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #f5f6f8;
  color: #111;
}

/* Layout */
.container {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid #e5e7eb;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}

.nav a {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  margin-bottom: 6px;
}

.nav a:hover {
  background: #f1f1f1;
}

.nav .active {
  background: black;
  color: white;
}

.badge {
  background: #e5e7eb;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
}

/* Main */
.main {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header h2 {
  font-size: 26px;
  font-weight: 600;
}

.subtitle {
  color: #6b7280;
  margin-top: 4px;
}

.button {
  background: black;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* Cards */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgb(255, 0, 0);
}

.card h3 {
  font-size: 24px;
  margin-top: 8px;
}

.green { color: #16a34a; }
.red { color: #dc2626; }

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  text-align: left;
  font-size: 12px;
  color: #a7a5a5;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.table td {
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

/* Status */
.status-complete { color: #16a34a; }
.status-processing { color: #ca8a04; }
.status-refund { color: #dc2626; }

/* Products */
.products div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.products small {
  color: #6b7280;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 100px 20px;
  background: #000000 !important;
  color: #ffffff !important;
}

.testimonials h2 {
  font-size: 36px;
  margin: 10px 0 60px;
  color: #ffffff !important;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.testimonial-card {
  background: #000000 !important;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 10px 30px #fd2a00;
  transition: 0.3s;
  color: #ffffff !important;
}

.stars {
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 16px;
}

.testimonial-card span {
  font-size: 13px;
  color: #9ca3af;
}

/* Plans (pricing) */
.plans-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
}

.plans-title {
  font-size: 36px;
  margin: 10px 0 20px;
  color: #f8fafc !important;
  letter-spacing: -0.03em;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.plan-card {
  background: #0b0b0b;
  color: #f8fafc;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.plan-card.plan-free{
  background-image: url('images/Free.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-card.plan-basic {
  background-image: url('images/basic1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-card.plan-pro {
  background-image: url('images/pro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-card.plan-premium {
  background-image: url('images/premium.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-card.plan-basic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
  z-index: 0;
}

.plan-card.plan-basic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 35%);
  z-index: 0;
}

.plan-type,
.plan-price,
.plan-desc,
.plan-features,
.plan-btn,
.popular-badge {
  position: relative;
  z-index: 1;
}

.plan-card.plan-basic .plan-type {
  background: transparent;
}

.plan-card.plan-basic .plan-desc,
.plan-card.plan-basic .plan-features li,
.plan-card.plan-basic .plan-price .per {
  color: #f8fafc;
}

.plan-card.plan-basic .plan-desc {
  color: rgba(248, 250, 252, 0.92);
}

.plan-card.plan-basic .plan-features {
  color: #e5e7eb;
}

.plan-card.plan-basic .plan-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.plan-card.plan-basic .plan-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.plan-card.plan-basic .plan-type,
.plan-card.plan-basic .plan-price,
.plan-card.plan-basic .plan-desc,
.plan-card.plan-basic .plan-features,
.plan-card.plan-basic .plan-btn {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.plan-image {
  display: none;
}

.plan-type {
  font-size: 12px;
  color: #e5e7eb;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  display: inline-flex;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.plan-price { display:flex; align-items:baseline; gap:8px; margin-bottom: 16px; }
.plan-price .amount { font-size:36px; font-weight:700; letter-spacing: -1px; }
.plan-price .per { color:#cbd5e1; font-size:15px; }

.plan-desc { color:#cbd5e1; margin:0 0 16px; font-size:15px; line-height:1.7; }
.plan-features { list-style: none; padding:0; margin:0 0 24px; color:#d1d5db; }
.plan-features li { margin-bottom:10px; font-size:14px; }

.plan-btn { display:inline-block; width:100%; padding:12px 14px; border-radius:14px; border:1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.08); color:#ffffff; cursor:pointer; font-weight:600; backdrop-filter: blur(8px); }
.plan-btn:hover { background: rgba(255,255,255,0.14); }
.plan-cta { background:#010101; border-color:transparent; color:#ffffff; box-shadow:0 12px 30px rgb(1, 9, 242); }
.popular-badge { display:inline-block; background: rgba(255, 255, 255, 0); color:#f8fafc; padding:8px 12px; border-radius:999px; font-size:12px; margin-bottom:14px; }

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
}

/* EvilEye background layer */
body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

#evil-eye-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
  overflow: hidden;
}

#evil-eye-background canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.glow-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(600px circle at 10% 10%, rgba(139, 92, 246, 0.12), transparent 40%),
    radial-gradient(500px circle at 90% 30%, rgba(236, 72, 153, 0.08), transparent 40%),
    radial-gradient(700px circle at 50% 90%, rgba(59, 130, 246, 0.08), transparent 50%);
}

body > *:not(#evil-eye-background):not(.grid-bg):not(.glow-bg):not(script) {
  position: relative;
  z-index: 1;
}

.hero, .stats, .categories, .featured-section, 
.steps, .testimonials, .why, .footer {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

.stats {
  border-top: none !important;
  border-bottom: none !important;
}

.footer {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.plan-card {
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
}

.plan-card.active {
    border-color: #ff2706;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgb(4, 45, 248);
}

.selected-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #000000;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: 0.3s;
}

.plan-card.active .selected-badge {
    opacity: 1;
}

.plan-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.selected-plan {
  border: 3px solid #ff0800;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 30, 0, 0.5);
}

.why{
    padding:100px 20px;
    background:
    radial-gradient(circle at top,
    rgba(255,80,0,.25),
    transparent 60%),
    #050505;
    position:relative;
    overflow:hidden;
}

.why-container{
    max-width:1200px;
    margin:auto;
}

.why-header{
    text-align:center;
    margin-bottom:70px;
}

.why-label{
    color:#ff5e00;
    letter-spacing:3px;
    font-size:.85rem;
    font-weight:700;
}

.why-header h2{
    color:#fff;
    font-size:3rem;
    margin:15px 0;
}

.why-header p{
    color:#9ca3af;
    max-width:650px;
    margin:auto;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.why-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    padding:35px;
    border-radius:24px;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#ff5e00;
    box-shadow:0 20px 50px rgba(255,94,0,.25);
}

.why-icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    border-radius:50%;
    background:linear-gradient(135deg,#000000,#000000);
    margin-bottom:20px;
}

.why-card h3{
    color:white;
    margin-bottom:12px;
    font-size:1.3rem;
}

.why-card p{
    color:#b0b0b0;
    line-height:1.7;
}

.why-card{
    position: relative;
    background: #0a0a0a;
    padding: 35px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

/* RGB Border Animation */
.why-card::before{
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00c8,
        #ff0000
    );
    background-size: 400%;
    animation: rgbBorder 8s linear infinite;
    z-index: -2;
}

/* Inner Background */
.why-card::after{
    content: "";
    position: absolute;
    inset: 2px;
    background: #0a0a0a;
    border-radius: 22px;
    z-index: -1;
}

@keyframes rgbBorder{
    0%{
        background-position: 0% 50%;
    }
    100%{
        background-position: 400% 50%;
    }
}

/* Hover Effect */
.why-card:hover{
    transform: translateY(-10px);
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(255,255,255,0.15);
}

.why-card::before{
    filter: blur(8px);
    opacity: .9;
}

.category-card{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #0a0a0a;
    transition: 0.4s ease;
}

/* Rotating RGB Flame Ring */
.category-card::before{
    content: "";
    position: absolute;
    width: 250%;
    height: 250%;
    top: -75%;
    left: -75%;

    background: conic-gradient(
        red,
        orange,
        yellow,
        lime,
        cyan,
        blue,
        violet,
        red
    );

    animation: rotateFlame 4s linear infinite;
    filter: blur(15px);
    opacity: 1;
    z-index: -2;
}

/* Card Inner Layer */
.category-card::after{
    content: "";
    position: absolute;
    inset: 3px;
    background: #0a0a0a;
    border-radius: 14px;
    z-index: -1;
}

/* Rotation */
@keyframes rotateFlame{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* Hover Glow */
.category-card:hover{
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 20px rgba(255,0,255,.5),
        0 0 40px rgba(0,255,255,.4),
        0 0 60px rgba(255,255,0,.3);
}



.icon{
    display:inline-block;
    animation:wobble 2s infinite;
}

@keyframes wobble{
    0%,100%{transform:translateX(0);}
    15%{transform:translateX(-8px) rotate(-5deg);}
    30%{transform:translateX(6px) rotate(3deg);}
    45%{transform:translateX(-4px) rotate(-3deg);}
    60%{transform:translateX(2px) rotate(2deg);}
}