/* Domains Section */
.domains-section {
    background: linear-gradient(to bottom right, #071424, #081424);
    padding: 40px 20px;
}

.domains {
    max-width: 1200px;
    margin: 0 auto;
}
.domains-header {
    text-align: center;
    margin-bottom: 10px;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}
.domains-header2 {
  display: flex;
  color: #9ca3af; /* Tailwind text-gray-400 */
  font-size: 0.95rem;
  max-width: 1200px;
  justify-content: space-between; /* push children to edges */
  align-items: center; /* vertically center */
  /* remove gap to avoid shifting */
}

.domains-header2 .p-left-side {
  flex: 1 1 50%;
  max-width: 50%;
  text-align: left; /* align text left */
}

.domains-header2 .p-right-side {
  flex: 1 1 50%;
  max-width: 50%;
  text-align: right; /* align text right */
}



.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Domain Card */
.domain-card {
    background: linear-gradient(to bottom right, #0b1220, #07101b);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 100, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.domain-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 100, 255, 0.5);
}

/* Title */
.domain-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

/* Description */
.domain-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    /* Tailwind gray-400 */
}