/* Header Styles */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: #004AAD;
  color: white;
  padding: 8px 0;
  font-size: 13px;
  width: 100%;
}

.header-top-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-social a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header-social a:hover {
  color: #FF9900;
}

.header-main {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #E8ECF1;
  width: 100%;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 55px;
  height: 55px;
}

.logo-text h1 {
  margin: 0;
  font-size: 28px;
  color: #004AAD;
  font-weight: 700;
}

.logo-text p {
  margin: 0;
  font-size: 14px;
  color: #FF9900;
  font-weight: 500;
}

.search-container {
  display: flex;
  flex: 1;
  max-width: 500px;
  min-width: 250px;
  position: relative;
}

.search-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #E8ECF1;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: #004AAD;
}

.search-btn {
  background: #FF9900;
  border: none;
  padding: 0 25px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: #E68A00;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.whatsapp-btn:hover {
  background: #20BD5A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.header-nav {
  background: linear-gradient(135deg, #004AAD 0%, #0066DD 100%);
  padding: 0;
  width: 100%;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.nav-container::-webkit-scrollbar {
  height: 4px;
}

.nav-container::-webkit-scrollbar-track {
  background: transparent;
}

.nav-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.nav-container a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 18px;
  transition: all 0.3s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.nav-container a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: #FF9900;
}

/* News Ticker */
.news-ticker {
  background: #FF9900;
  color: white;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.news-ticker-container {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.news-label {
  background: #E68A00;
  padding: 12px 25px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
  overflow: hidden;
  padding: 12px 0;
}

.news-scroll {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  padding: 0 20px;
}

.news-item {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item.expired {
  opacity: 0;
  transition: opacity 0.5s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.news-ticker:hover .news-scroll {
  animation-play-state: paused;
}

