.hero {
  background: url("../images/home/HerosSection.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.portfolio-section {
  background: url("../images/home/portfolio bg.webp") no-repeat center;
  background-size: cover;
}

/* comparison tables */
.comparison-table {
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  border-collapse: collapse;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: scroll;
}

.comparison-table thead tr {
  background-color: #2a2a2a;
}

.comparison-table thead th {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #333;
  color: #3b82f6;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #333;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background-color: #252525;
}

.comparison-table tbody td {
  padding: 24px;
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: #e5e5e5;
  text-align: left;
  background-color: #222;
  width: 200px;
}

.comparison-table tbody td:nth-child(2),
.comparison-table tbody td:last-child {
  text-align: center;
  color: #cccccc;
  background-color: #1f1f1f;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 14px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 16px 12px;
  }

  .comparison-table tbody td:first-child {
    width: auto;
  }
}

@media (max-width: 425px) {
  .comparison-table {
    font-size: 12px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 8px;
  }

  .comparison-table tbody td:first-child {
    width: auto;
  }
}
/* comparison tables */

/* spotlight */
.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.spotlight {
  position: relative;
  display: inline-block;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  user-select: none;
  transition: --spotlight-visible 0.3s ease;
}
.spotlight h2 {
  margin: 0;
  line-height: 1.25;
  font-weight: 800;
  font-family: "Orbitron", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  letter-spacing: 0.05em;
  font-size: 70px;
  transform: translateZ(0);
}
.base {
  color: #0b0b0b;
  z-index: 0;
  position: relative;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}
.spotlight {
  --g1: radial-gradient(
    circle 140px at var(--x) var(--y),
    rgba(0, 160, 255, calc(var(--spotlight-visible) * 1)) 0%,
    rgba(0, 110, 190, calc(var(--spotlight-visible) * 0.95)) 28%,
    rgba(0, 0, 0, 0) 60%
  );
}
.glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--g1);
  filter: blur(18px) saturate(120%);
  opacity: 0.55;
}
.fill {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--g1);
  mix-blend-mode: screen;
  opacity: 1;
}
@media (max-width: 520px) {
  .glow {
    filter: blur(12px);
    opacity: 0.45;
  }
}
/* spotlight */