   body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f6fa;
    color: #2f3640;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;

  }
  main {
  flex: 1;
}

  /* 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;
  }
.items{

   display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(85deg, #FFF100, #F5F7F8, #B8001F, #399918); */

  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
  /* Ad Section */
  .rek-section {
    background-color: #f9f9f9;
    padding: 40px 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: 300px;
    height: 200px;
    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;
  }


  /* Sections */
  .section {
    padding: 10px 0;
  }

  .section-title {
    /* font-size: 2.2rem; */
    margin-bottom: 3px;
    text-align: center;
    color: #273c75;
  }

  .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 20px;
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: scale(1.1);
  }

  .card h3 {
    color: #00a8ff;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .card p {
    font-size: 1rem;
    color: #7f8fa6;
  }

  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);
    }
  }
