* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f8f9fb;
}

/* Header */
header {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Shiny Logo */
.logo {
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(90deg, #aaa, #fff, #aaa);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
}
@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Search Bar with Categories */
.search-container {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  padding: 2px 5px;
}
.search-container select {
  border: none;
  padding: 6px;
  background: #eee;
  font-size: 14px;
  outline: none;
}
.search-container input {
  border: none;
  padding: 6px 10px;
  font-size: 14px;
  outline: none;
  flex: 1;
}
.search-container button {
  border: none;
  background: #555;
  color: #fff;
  padding: 6px 12px;
  border-radius: 25px;
  cursor: pointer;
}

/* Menu Button */
.menu-btn {
  font-size: 26px;
  cursor: pointer;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #222;
  color: #fff;
  padding: 20px;
  transition: 0.3s;
  z-index: 2000;
}
.sidebar.active {
  left: 0;
}
.sidebar .close-btn {
  font-size: 26px;
  cursor: pointer;
  text-align: right;
  margin-bottom: 20px;
}
.sidebar ul {
  list-style: none;
}
.sidebar ul li {
  padding: 12px 0;
}
.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.sidebar ul li a.active,
.sidebar ul li a:hover {
  color: #0f0;
}

/* User Profile */
.user-profile {
  margin-top: 20px;
  padding: 15px;
  background: #333;
  border-radius: 10px;
  text-align: center;
}
.user-profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.user-profile h3 {
  margin-bottom: 5px;
  font-size: 18px;
}
.user-profile p {
  font-size: 14px;
  color: #bbb;
}

/*Hero Section*/
.hero {
      display: flex;
      flex-wrap: wrap;
      height: 100vh;
    }

    /* Left Hero Section */
    .hero-left {
      flex: 1;
      min-width: 300px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: white;
      text-align: center;
      animation: fadeSlide 1s ease-in-out;
    }

    .hero-left h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      animation: typing 4s steps(30, end) infinite alternate;
      white-space: nowrap;
      overflow: hidden;
      border-right: 3px solid #fff;
    }

    .hero-left p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* Right Side */
    .hero-right {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Iframe Slider */
    .iframe-slider {
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    .iframe-slider iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: none;
    }
    .iframe-slider iframe.active {
      display: block;
    }

    /* Form Section */
    .form-section {
      flex: 1;
      background-size: cover;
      background-position: center;
      padding: 20px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }

    .form-section h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      animation: typing 5s steps(40, end) infinite alternate;
      white-space: nowrap;
      overflow: hidden;
      border-right: 3px solid #fff;
    }

    .form-section p {
      margin-bottom: 15px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    input, textarea, button {
      padding: 10px;
      border-radius: 5px;
      border: none;
      outline: none;
      font-size: 1rem;
    }

    button {
      background: #007bff;
      color: white;
      cursor: pointer;
    }

    button:hover {
      background: #0056b3;
    }

    /* Animations */
    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero { flex-direction: column-reverse; }
      .hero-left, .hero-right { flex: unset; height: 50vh; }
    }

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 8px 10px;
  }
  .logo {
    font-size: 18px;
  }
  .search-container {
    max-width: 250px;
  }
}
