* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .fluid-img{
	max-width: 100%;
	height: auto;
}

  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* navbar001 */
  .navbar001 {
    width: 100%;
    
    padding: 10px 25px;
    position: relative;
    z-index: 10;
  }
  
  .navbar001 img {
    height: 50px;
  }
  
  /* hero001 Section */
  .hero001 {
    
    background: url('img/banner001.png') no-repeat top center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  /* Gradient Overlay */
  .hero001-overlay1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 45%, rgba(0, 0, 0, 0.6) 65%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    padding: 60px;
    color: #fff;
  }
  
  /* Text Content */
  .hero001-content1 {
    max-width: 600px;
	margin-left:80px;
  }
  
  .hero001-content1 h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .hero001-content1 p {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .chat-btn001 {
    display: inline-block;
    background-color: #e30613;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 35px;
  }
  
  .highlight001 {
    color: #fff449;
    font-weight: bold;
  }
  
  .platforms001 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero001-overlay1 {
      padding: 30px;
      text-align: left;
      justify-content: center;
      background-color: black;
    }
    .chat-btn001 {

        font-size: 30px;
    }
  
    .hero001-content1 {
      margin: auto;
    }
  }
  /* Hide on large screens (desktops) */
.mobile-only {
  display: none;
}

/* Show on screens smaller than 992px (tablet & mobile) */
@media (max-width: 991.98px) {
  .mobile-only {
    display: block;
  }
}
