.elementor-273 .elementor-element.elementor-element-16fb66a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-273 .elementor-element.elementor-element-1d65c65{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-273 .elementor-element.elementor-element-14bb751{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c3c1805 */.reddy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: white;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  gap: 10px;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.search-box {
  display: 10px;           /* Ensure visible by default */
  width: 100%;
  max-width: 400px;
}

.search-box input {
  width: 100% !important;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 16px;
}

.rules-btn {
  background-color: #c10930;
  color: white;
  border: none;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap !important;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-btn {
  background-color: #2b2b2b;
  color: white;
  padding: 10px 18px;
  border: 2px solid #c10930;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.auth-btn:hover {
  background-color: #c10930;
  color: white;
}

/* 📱 Tablet and Mobile - Hide Search and Rules */
@media (max-width: 1024px) {
  .search-box,
  .rules-btn {
    display: none !important;
  }

  .reddy-header {
    justify-content: space-between;
  }

  .auth-buttons {
    margin-left: auto;
  }
}

/* 📱 Mobile - Adjust buttons and logo */
@media (max-width: 480px) {
  .logo img {
    height: 35px;
  }

  .auth-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-14bb751 */.menu-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  background-color: #2b2b2b;
  border-top: 2px solid #c10930;
  scrollbar-width: thin;
}

@media (min-width: 1025px) {
  .menu-wrapper {
    scrollbar-gutter: stable;
  }

  .menu-bar {
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
  }

  .menu-bar li {
    flex: 1 1 auto; /* stretch equally */
    max-width: 120px; /* optional limit */
    text-align: center;
  }
}

.menu-bar {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px; /* consistent spacing between items */
}

.menu-bar li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-bar li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 40%;
  background: #444;
  position: absolute;
  right: -8px;
  top: 30%;
}

.menu-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  background-color: #2b2b2b;
  transition: background 0.3s ease;
  min-width: 80px;
  border-radius: 6px;
}

.menu-bar a.active,
.menu-bar a:hover {
  background-color: #c10930;
}

.menu-bar img {
  height: 24px;
  margin-bottom: 5px;
}

/* Scrollbar styling */
.menu-wrapper::-webkit-scrollbar {
  height: 6px;
}
.menu-wrapper::-webkit-scrollbar-thumb {
  background: #c10930;
  border-radius: 4px;
}
.menu-wrapper::-webkit-scrollbar-track {
  background: #1e1e1e;
}

/* Mobile layout */
@media screen and (max-width: 1024px) {
  .menu-bar {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 10px;
  }

  .menu-bar li {
    flex: 0 0 auto;
    max-width: none;
  }

  .menu-bar a {
    font-size: 12px;
    padding: 10px 10px;
    min-width: 70px;
  }

  .menu-bar img {
    height: 20px;
  }
}/* End custom CSS */