@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    font-family: Outfit;
}

/* dropdown hover */
 .dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}
/* hero-image */
.hero-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 70vh; /* Full viewport height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Optional: fallback for very short screens like mobile landscape */
@media (max-height: 500px) {
  .hero-image {
    height: auto;
  }
}

/* Optional: Additional adjustments for very small screens */
@media (max-width: 480px) {
  .hero-image {
    padding: 20px;
    background-position: top center;
  }
}
.hero-text {
  text-align: center;
  color: #1877F2;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0.5em 0;
}

.hero-text p {
  font-size: 1.5rem;
}

/* Responsive text */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
    
  }

  .hero-text p {
    font-size: 1.2rem;
    
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
    
  }

  .hero-text p {
    font-size: 1rem;
  }
}
  .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     /* semi-transparent overlay */
    z-index: 1;
  }

  .hero-image .container {
    position: relative;
    z-index: 2; /* place content above overlay */
  }
 
  @media (max-width: 768px) {
    .text-end {
      max-height: 20vh;
      text-align: right !important;
    }
  }


  /* hoverable tiles */
   .tile {
  background-color: #6c5ce7; /* Original purple */
  color: white;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}
.tile:hover {
  background-color: whitesmoke; /* Slightly darker purple on hover */
  color: black;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
    .tile h5 {
      font-weight: bold;
    }

    .icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }
   
    /* tiles section */

    .category-tile {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 15px;
      padding: 30px 15px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      height: 100%;
    }

    .category-tile:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px) scale(1.02);
    }

    .category-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      font-size: 24px;
      color: #fff;
    }

    .category-label {
      font-weight: 600;
      font-size: 1.1rem;
      color: #0d1b3e;
    }

    /* Category Colors */
    .ecommerce { background-color: #ff6b00; }
    .utilities { background-color: #3ec1f3; }
    .finance { background-color: #2ecc71; }
    .games { background-color: #a55eea; }
    .services { background-color: #c0392b; }
    .travel { background-color: #f1c40f; }
    .telecom { background-color: #2980b9; }
    .entertainment { background-color: #ff5e94; }

