   body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f6fa;
    color: #2f3640;
    overflow-x: hidden;

  }

  /* Navbar */
  .navbar {
    background-color: #273c75;
  }

  .navbar-nav .nav-link {
    color: white;
    margin-right: 15px;
  }

  .navbar-nav .nav-link:hover {
    color: #00a8ff;
  }

  /* Hero Section */
  .hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(45deg, #FFF100, #F5F7F8, #B8001F, #399918); */

    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #43e97b);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 2rem;
    font-weight: 600;
    animation: fadeIn 2s ease-in;
  }

  .hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    animation: fadeIn 2.5s ease-in;
  }

  .btn-start {
    background-color: #00a8ff;
    padding: 10px 25px;
    font-size: 1rem;
    color: #fff;
    border: none;
    border-radius: 25px;
    margin-top: 20px;
    animation: bounce 2s infinite 1s ease-in-out;
  }

  /* Ad Section */
  .rek-section {
    background-color: #f9f9f9;
    padding: 0 0 5px 0 ;
    text-align: center;
  }

  .rek-box {
    background-color: #fff;
    border: 2px dashed #e1e1e1;
    padding: 0;
    /* Removed padding to ensure image fits the entire box */
    border-radius: 10px;
    width: 400px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Ensure no overflow if image exceeds the box */
  }

  .rek-box img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* Ensures image covers the entire box */
    border-radius: 10px;
  }

  footer {
    background-color: #2f3640;

    padding: 20px 0;
    color: white;
    text-align: center;
  }

  footer a {
    color: #00a8ff;
    margin: 0 10px;
  }

  /* Animations */
  @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }
