* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

/*body{
background-image: url("../assests/images/back.jpeg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height:100vh;
color:white;
}*/
body{
    background-color: #ffc20f;
}
.footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: #010007;
  color: white;
  font-size: 0.9rem;
  border-top: 2px solid #ffc20f;
}

.footer a {
  color: #ffc20f;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
.header{
color:black;
text-align:center;
padding:30px;
}
.header h1{
font-size:2.2rem;
margin-bottom:10px;
}

.machines-container{
display:flex;
justify-content:center;
gap:20px;
padding:100px 40px 40px 40px;
flex-wrap:wrap;
}

.machine-card{
  background:#010007;
  width:100%;
  max-width:450px;
  text-align:center;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}



.machine-card h2{
margin:15px 0;
color:white;
}

.machine-card button{
padding:10px 20px;
border:none;
background:#222;
color:white;
cursor:pointer;
border-radius:6px;
margin-bottom:20px;
}

.machine-card button:hover{
background:#444;
}
.machine-card:hover{
transform:translateY(-10px);
box-shadow:0 12px 25px rgba(0,0,0,0.3);
transition:0.3s;
}

.machine-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.3s;
}


.nav-container{
width:100%;
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-family:'Poppins', sans-serif;
font-size:26px;
font-weight:700;
letter-spacing:1px;
color:#FFD700;
text-decoration:none;
}
.logo:hover{
opacity:0.8;
}

.logo img{
height:70px;
width:70px;
object-fit:cover;
border-radius:50%;
}
.navbar{
background:#000;
padding:15px 40px;
display:flex;
align-items:center;
position:sticky;
top:0;
z-index:1000;
}
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .logo {
    font-size: 20px;
    gap: 8px;
  }

  .logo img {
    width: 55px;
    height: 55px;
  }

  .machines-container {
    padding: 80px 15px 30px 15px;
    gap: 15px;
  }

  .machine-card img {
    height: 200px;
  }

  .machine-card h2 {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }

  .machine-card img {
    height: 180px;
  }

  .machines-container {
    padding-top: 70px;
  }
}