body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
}

.logo {
  color: orange;
  font-weight: bold;
  font-size: 40px;
}

.search {
  width: 40%;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.nav-right span {
  margin-left: 20px;
  cursor: pointer;
}

.hero {
  background: url('head.jpg') no-repeat center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
  padding: 30px;
  text-align: left;
}

.hero button {
  background: orange;
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
}

.title {
  padding-left: 20px;
}

.menu {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  padding: 20px;
}

.card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
}

.card img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8 px;
  
}

.card button {
  background: orange;
  border: none;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  margin-top: 8px;
  border-radius: 5px;
  font-weight: bold;
}

.scroll-menu {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  background: orange;
  scrollbar-width: none;     
  -ms-overflow-style: none; 
}

.scroll-menu2 {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  background: rgb(255, 255, 255);
  scrollbar-width: none;     
  -ms-overflow-style: none; 
}

.button {
  background: orange;
  border: none;
  padding: 8px;
  color: white;
  cursor: pointer;
  margin-top: 5px;
}
.footer {
  background: #0f2f7f;
  color: white;
  padding: 30px 50px;
  margin-top: 40px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.footer-col a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 8px 0;
  font-size: 24px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social a {
  width: 45px;
  height: 45px;
  background: white;
  color: #0f2f7f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}