body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;

  color: #fff;
}




.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px 00px 00px 00px;


}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 15px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}




.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #00cfc8;
}


.menu-item {
  color: #555;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.menu-item:hover {
  color: #00cfc8;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #00cfc8;
  transition: width 0.3s ease;
}

.menu-item:hover::after {
  width: 100%;
}










.dropdown-menu {
  position: absolute;
  top: 48px;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  display: none;
  z-index: 9999;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
  color: #eee;
  padding: 10px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background-color: #333;
  color: #00cfc8;
}




.search-section {
  z-index: 9999;
  background: rgba(243, 12, 12, 0);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  margin: 0 auto 30px auto;
  max-width: 1000px;
  width: 100%;
  /* box-sizing: border-box; */
  /* overflow-x: hidden; */
  /* Prevent horizontal scroll */
}

.search-container {
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 0;
  /* optional */
}

.input-wrapper {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.search-input {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 25px 0px 0px 25px;
  background: rgb(37, 37, 37);
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.search-input::placeholder {
  color: rgba(146, 146, 146, 0.7);
}

.search-btn {
  padding: 11px 20px;

  background: rgba(0, 255, 200, 0.993);
  border: none;
  border-radius: 0px 25px 25px 0px;
  color: black;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}


.search-btn:hover {
  background: rgba(0, 255, 200, 0.993);
  box-shadow: 0 0 60px rgba(0, 255, 200, 0.623), 0 0 10px rgba(0, 255, 200, 0.479);
}

/* Keep side-by-side and responsive without wrapping */
@media (max-width: 600px) {


  .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 00px 00px 00px;


}
  .search-input {
    font-size: 14px;
    padding: 10px 14px;
  }

  .search-btn {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* Suggestion box styles */
#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #525252;
  border-radius: 8px;
  z-index: 99999;
  max-height: 200px;
  overflow-y: auto;
  color: white;
  width: 100%;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

#suggestions div {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 14px;
  color: white;
  border-bottom: 1px solid #333;
}

#suggestions div:hover {
  background-color: #333;
  color: #00cfc8;
}

#suggestions div:last-child {
  border-bottom: none;
}

/* Enhanced suggestion items with images */
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 14px;
  color: white;
  border-bottom: 1px solid #333;
}

.suggestion-item:hover {
  background-color: #333;
  color: #00cfc8;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-image {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 10px;
  background: #444;
  flex-shrink: 0;
}

.suggestion-text {
  flex: 1;
  color: inherit;
  font-size: inherit;
}





.logo {
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  color: #bebebe;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  gap: 25px;
}




.input-wrapper {
  display: flex;
  align-items: center;
  background: #444444;
  border-radius: 6px;
  padding: 0 10px;
  border-bottom: 2px solid #00ffbf;
  max-width: 670px;
  margin: 0 auto;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 12px 8px;
  outline: none;
}

.input-wrapper button {
  background: none;
  border: none;
  color: #00ffaa;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.input-wrapper button:hover {
  color: #00e0ff;
}











.card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);

  /* transition: transform 0.2s ease; */
}

.card:hover {
  transform: scale(1.03);

}

.card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.card-content {
  padding: 15px;
}

.card-content {
  padding: 15px;
  text-align: left;
  /* Center everything */
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card-content p {
  color: #aaa;
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.card-content button {
  padding: 8px 14px;
  background-color: #3e6bff;
  border: none;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 12px;
}




















@media (max-width: 768px) {

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 00px 00px 00px;


}
  .logo {
    font-size: 20px;

  }



  .menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
    z-index: 999;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header {
    padding: 15px -10px 15px 30px;
  }


  .card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
  }


}


















.clean-footer {
  background-color: #1a1a1a;
  padding: 40px 16px;
  font-family: 'Segoe UI', sans-serif;
  color: #ccc;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 140px;
}

.footer-section h4 {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #eee;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00cfc8;
}

.footer-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
  filter: brightness(0.9);
  transition: transform 0.2s ease;
}

.footer-section ul li a:hover .footer-icon {
  transform: scale(1.1);
}

/* ✅ Mobile improvements */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .clean-footer {
    padding: 30px 16px;
  }

  .footer-section ul li a {
    font-size: 0.95rem;
  }
}


/* login */

* {
  box-sizing: border-box;
}

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.auth-box {
  background: #121212;
  border: 1px solid #00cfc8;
  border-radius: 16px;
  padding: 40px 30px;
  width: 300px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  text-align: center;
  color: #fff;
  position: relative;
}

.auth-box h2 {
  margin-bottom: 20px;
  font-size: 1.6em;
  color: #00cfc8;
}

.auth-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  outline: none;
}

.auth-box input:focus {
  border-color: #00cfc8;
  box-shadow: 0 0 5px #00cfc8;
}

.auth-box button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #00cfc8;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auth-box button:hover {
  background: #00b0a5;
}

.auth-toggle {
  margin-top: 15px;
  font-size: 0.9em;
  color: #aaa;
}

.auth-toggle span {
  color: #00cfc8;
  cursor: pointer;
}

.auth-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: #888;
}

/* Password toggle button styles */
.password-input-container {
  position: relative !important;
  display: inline-block !important;
  width: 100% !important;
}

.password-toggle-btn {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  color: #fff !important;
  cursor: pointer !important;
  padding: 0 !important;
  font-size: 16px !important;
  z-index: 1000 !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 4px !important;
  margin: 0 !important;
}

.password-toggle-btn:hover {
  color: #fff !important;
  background: none !important;
}

.password-toggle-btn:focus {
  outline: none !important;
  color: #fff !important;
  background: none !important;
}

/* Ensure password input has proper padding for toggle button */
.password-input-container input[type="password"],
.password-input-container input[type="text"] {
  padding-right: 50px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Override any existing auth-box input styles for password containers */
.auth-box .password-input-container input[type="password"],
.auth-box .password-input-container input[type="text"] {
  padding-right: 50px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix autofill background color - keep dark theme */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
  -webkit-text-fill-color: #fff !important;
  background-color: #1e1e1e !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Specific fix for password fields */
input[type="password"]:-webkit-autofill,
input[type="password"]:-webkit-autofill:hover,
input[type="password"]:-webkit-autofill:focus,
input[type="password"]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
  -webkit-text-fill-color: #fff !important;
  background-color: #1e1e1e !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Firefox autofill fix */
input:-moz-autofill {
  background-color: #1e1e1e !important;
  color: #fff !important;
}



/* Add this CSS to your style section */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Apply the red background color and shake animation */
.shake {
  animation: shake 1s ease-out, shakeColor 1s ease-out;
  background-color: red;  /* Red background for wrong input */
}

/* Optional: Define the shake color animation */
@keyframes shakeColor {
  0% {
    background-color: red;
  }
  100% {
    background-color: initial; /* Default background color */
  }
}


/* login */


