/* Section styling */
.five-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color:white;
    color:black;
  }
  
  /* Individual divs inside the section */
  .five-box {
    background-color: red;
    color: white;
    padding: 10px;
    border-radius:10px;
    text-align: center;
    width: 18%; /* 5 boxes in a row on large screens */
  }
  
  .buttonaw {
    text-align: center;
    width:150px;
    margin-left:85%;
    margin-right:10px;
    padding:5px;
    font-size:16px;
    background-color:black;color:white;
    border-radius:30px;
  }

  .tinkerh1 {
    font-size:60px;
    font-weight: bold;
  }

  /* Mobile-specific layout */
  @media (max-width: 768px) {
    .five-section {
      flex-direction: column; /* Stack the divs vertically */
      align-items: center;
      min-height:500px;
    }
  
    .five-box {
      width: 80%; /* Each box takes up most of the width */
      margin-bottom: 10px;
    }

    .buttonaw {
        text-align: center;
        width:150px;
        margin-left:60%;
        margin-right:10px;
        padding:10px;
        background-color:black;color:white;
        border-radius:30px;
      }

      .tinkerh1 {
        font-size:37px;
        font-weight: bold;
      }
  }

  /* Featured Section */
.featured {
    background-color:white;
    margin-top:30px;

}

.featured h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: black; /* Tomato color for the title */
}

.featured-carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
}

.featured-slide {
    margin: 0 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-height:400px;
}

.featured-slide i {
    font-size: 2rem;
    color: #FF6347;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-slide p {
    font-size: 1.2rem;
    color: #ddd;
    margin: 20px 0;
}

.featured-slide h3 {
    font-size: 1.5rem;
    color: white;
    margin-top: 10px;
}

.featured-slide p:last-child {
    font-style: italic;
    color: #bbb;
}

/* Carousel Animation */
@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.owl-carousel .item {
    padding: 10px;
  }
  .owl-carousel img {
    width: 100%;
    border-radius: 8px;
    max-height:600px;
  }