/* ===== Modern Hero Section ===== */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;

    /* Premium glass gradient */
    background: linear-gradient(135deg, #c30606, #150ae3, #efebf2);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;

    color: #f5f5f5;
    padding: 0 20px;
  }

  .hero .container {
    max-width: 850px;
    animation: fadeIn 1.2s ease-in-out;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.25;

    /* Tech-style text glow */
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
  }

  .hero .tagline {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 0.8rem;
  }

  .hero .subtext {
    font-size: 1.2rem;
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 2.2rem;
  }

  /* ===== CTA Button Upgrade ===== */
  .cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;

    transition: 0.35s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  }

  .cta-button:hover {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
  }

  /* ===== Background Animation ===== */
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ===== Fade-in Animation ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    .hero .tagline, .hero .subtext {
      font-size: 1.05rem;
    }
    .cta-button {
      padding: 12px 26px;
      font-size: 0.95rem;
    }
  }

  .tenant_home-filter{
    display: none;
  }
