<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #fff;
}

header {
  background-color: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

.logo img {
  width: 150px;
  margin-right: 10px;
}

nav {
  position: relative;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

/* HERO SECTION */
.hero {
  height: 92vh;
  background: url("img.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 10px;
  width: 80%;
} */

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.search-box {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.search-box input {
  padding: 15px 20px;
  border: none;
  outline: none;
  width: 80%;
  color: #333;
  font-size: 16px;
}

.search-box button {
  background: #00aaff;
  border: none;
  padding: 15px 26px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #008ecc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  nav ul li a {
    color: #000;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .overlay {
    padding: 30px 20px;
    width: 95%;
  }

  .search-box {
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 10px;
  }

  .search-box input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }

  .search-box button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    background: #00aaff;
    color: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
</pre></body></html>