 body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #0a043c 0%, #8c45ff 40%, #ff99cc 100%);
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
    }
.bg-section {
    min-height: 100vh; background: url(../img/bg.jpg) center fixed; background-size: cover;
}
    /* HEADER SECTION */
    .hero-section {
      text-align: center;
      padding: 20px  0; background: url(../img/bg2.webp) center #1e0e2f;    background-size: cover;     background-blend-mode: overlay;
      color: #fff;
    }
header,footer {
    background: #f8d4d5;padding: 20px 0;
}
    .hero-section h1 {
      font-weight: 700;
      font-size: 2.2rem;
    }
section.hero-section h4 {
    font-size: 18px;
    font-weight: 400;
}
    .hero-section p {
      color: #ffd700;
      font-weight: 500;
      margin-top: 10px;
    }

    .hero-section .btn {
      background: #428bff;
      border: none;
      color: #fff;
      font-weight: 600;
      border-radius: 10px;
      padding: 12px 26px;
      margin-top: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 255, 0.3);
      transition: 0.3s;
    }

    .hero-section .btn:hover {
      background: #5c9eff;
      transform: translateY(-2px);
    }
    .backdropBg{backdrop-filter: blur(12px); padding: 30px 0}
    /* SEARCH BAR */
    .search-bar {
      max-width: 700px;
      margin: 0 auto;
      background: #fff;
      border-radius: 50px;
      padding: 10px 20px;position: relative;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
.search-bar i.fas.fa-search {
    position: absolute;
    color: #000;
    left: 15px;
}.tag-buttons i {
    font-size: 10px;
    margin-right: 5px;
}
    .search-bar input {
      border: none;
      outline: none;
      width: 100%;
      border-radius: 50px;
      font-size: 1rem;
    }

    /* TAGS SECTION */
    .tag-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .tag-buttons .btn {
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 6px 16px;
      font-size: 0.9rem;
      transition: 0.3s;
    }

    .tag-buttons .btn:hover {
      background: #1a1a1a;
      color: #ffd700;
    }

    /* TRENDING SECTION */
    .trending-section {
      background: rgba(255,255,255,0.1);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      padding: 30px;
      max-width: 900px;
      margin: auto;    margin: 30px auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }

    .trending-badge {
          background: #428bff;
    color: #fff;
    border-radius: 0 10px 10px;
    display: inline-block;
    padding: 9px 20px;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 10px;
    }

    .tool-card {
     border-radius: 15px;
    background: #f3f4f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    display: flex;
    align-items: center;
    flex-direction: row;    max-width: 49%;
    flex-shrink: 0;

    }
    .tool-card-outer {
   display: flex;
    overflow: auto;
    gap: 15px;
    flex-wrap: wrap;
}
.toolImg {
    width: 110px;
    flex-shrink: 0; margin-right: 10px;
}.toolCont {
    color: #666;
    font-size: 14px;
}
    /*.tool-card:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.2);
    }*/

    .tool-card img {
      border-radius: 12px;
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .views {
      font-size: 0.85rem;
      color: #ffd700;
      font-weight: 500;
    }

    footer {
      text-align: center;
      color: #fff;
      font-weight: 600;
    }

    footer span {
      color: #ff6666;
    }

.trending-section-outer{padding: 40px 0}