@charset "utf-8";
/* CSS Document */

 body {
      margin: 0;
      padding: 0;
    }
  /* ======================= Navbar ======================= */

 /* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

/* LOGO */
.navbar-brand {
  font-weight: 600;
  font-size: 20px;
  color: #111827 !important;
}

/* LINKS */
.nav-link {
  color: #374151 !important;
  font-weight: 500;
  margin-right: 15px;
}

.nav-link:hover {
  color: #111827 !important;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px;
}

/* CTA */
.cta-btn {
  background: #111827;
  color: white !important;
  border-radius: 8px;
  padding: 6px 14px;
}

.cta-btn:hover {
  background: #000;
}

/* ================================================= SEction 1 ====================================== */


    .hero {
      background: url( "images/sec1.png") center/cover no-repeat;
      height: 400px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: white;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      border-radius: 20px;
      top: 0;
      left: 0;
    }

    .hero-content {
      position: relative;
      text-align: center;
      width: 100%;
      max-width: 700px;
    }

    .search-box {
      background: white;
      border-radius: 50px;
      padding: 8px 10px;
      display: flex;
      align-items: center;
    }

    .search-box input {
      border: none;
      outline: none;
      flex: 1;
      padding: 8px;
      border-radius: 50px;
    }

    .search-btn {
      background: #20c997;
      border: none;
      color: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    .category-pill {
      background: white;
      color: black;
      border-radius: 50px;
      padding: 5px 15px;
      margin: 5px;
      font-size: 14px;
      display: inline-block;
    }