@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  position: relative;
  z-index: -1;
}

.top-heading {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 60px;
  padding: 10px;
}

.top-logo {
  margin-left: 40px;
  padding-left: 20px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #5a5a5a;
}

main {
  width: 100%;
  height: 100vh;
}

.hero-section {
  width: 100%;
  max-height: 400px;
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.overlay-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(to right, #007cbaf6, #007cbacc);
}

.top-content {
  width: 80%;
  height: 100%;
  margin-left: 60px;
  padding: 0 50px;
  padding-left: 20px;
}

.top-content h1 {
  font-size: 2.5rem;
  margin-top: 20px;
  font-weight: 300;
}

.top-content > p {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 200;
}

.input-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.input-box input {
  width: 60%;
  /* margin-top: 20px; */
  padding: 15px 10px;
  border: none;
  border-radius: 10px;
}

input::placeholder {
  font-size: 1rem;
  text-align: left;
  font-weight: 200;
  color: #a1a1a1;
}

.input-box button {
  padding: 15px 20px;
  background-color: #21212133;
  color: #adadad;
  margin-left: 10px;
  border-radius: 10px;
  border: none;
}

.bottom-link {
  margin-top: 30px;
}
.bottom-link p {
  margin-top: 20px;
}
.bottom-link a {
  color: #fff;
}

.print-model {
  width: 230px;
  height: 130px;
  position: absolute;
  right: 40px;
  top: 50%;
}

.print-model-setup {
  /* width: 230px;
    height: 130px; */
  position: absolute;
  right: 80px;
  top: 30%;
}

.print-model-img {
  width: 200px;
  height: 150px;
}

.print-model-img img {
  width: 100%;
  height: 100%;
}


/* Suggeestion container */
.suggestions-container {
  position: absolute;
  top: 50px;
  background: white;
  color: #000;
  border: 1px solid #ccc;
  width: 60%; /* Match input width */
  max-height: none; /* Remove scrolling */
  display: none;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: black;
  background: white;
  border-bottom: 1px solid #ddd;
}

.suggestion-item:hover {
  background: #f0f0f0;
}


.hp-setups{
  width: 100%;
  max-height: 400px;
  position: relative;
}

.hp-setup-contents{
  margin-left: 60px;
  padding: 0 50px;
  padding-left: 20px; 
}

.hp-setup-contents p{
  margin-top: 50px;
  color: #737373;
}

.hp-setup-guides{
  margin-left: 60px;
  padding: 0 50px;
  padding-left: 20px; 
}

.hp-setup-guides p{
  margin-top: 80px;
  color: #737373;
}

.hp-setup-guides i{
  color: #000;
  margin-right: 10px;
}

.hp-content-btn button{
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #fff;
  padding: 10px 20px;
  color: #007cbaf6;
  border: none;
  margin-top: 30px;
  margin-left: 30px;
  border-radius: 10px;
}

.hp-model-setup{
  /* width: 230px;
  height: 130px; */
  position: absolute;
  right: 80px;
  top: 30%;
}

.hp-model-img{
  width: 200px;
  height: 150px;
}

.hp-model-img img{
  width: 100%;
  height: 100%;
}