* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2b2922;
  color: #fff;
  line-height: 1.6;
}
.trending {
  padding-top: 0.8rem;
}
.container {
  max-width: 80%;
  background-color: #2b2922;
  margin: 0 auto;
  padding: 10px 20px;
}
.trending_text {
  color: #ffb80c;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  gap: 0.5rem;
}
.header {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.site-header-top {
  text-align: center;
}
.site_branding {
  display: inline-block;
}
.site_logo {
  margin: 0;
}
.site_logo img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}
.menu_bar {
  width: 100%;
  background-color: #2b2922;
  padding: 15px 0;
  position: relative;
}
.site_nav {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
nav {
  display: flex;
}
.primary_menu {
  background-color: #000;
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.primary_menu li {
  position: relative;
}
.primary_menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  line-height: 2;
  word-break: normal;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.sub_menu {
  position: absolute;
  top: 80%;
  left: 0;
  min-width: 200px;
  padding: 10px 0;
  background-color: #2b2922;
  display: none;
  list-style: none;
  z-index: 10;
  transform: translateY(0.6rem);
  transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
  box-shadow: 0 15px 45px 15px rgb(0 0 0 / 0.07);
}
.primary_menu li:hover .sub_menu {
  display: block;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1100;
}
.menu-toggle .open-icon span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  transition: 0.3s;
}
.menu-toggle .close-icon {
  top: 0;
  font-size: 24px;
  color: #fff;
  display: none;
}
.header-ticker-bar {
  background-color: #1e1e1e;
  padding: 10px 0;
}
.break_bg {
  background-color: #1e1e1e;
}
.ticker-news-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.ticker-news-title {
  min-width: 130px;
  background-color: #ffb80c;
  color: #001102;
  font-size: 15px;
  padding: 10px;
  position: relative;
}
.ticker-news-title h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.ticker-news-title::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 8px;
  height: 0;
  border-bottom: 10px solid #fff0;
  border-left: 10px solid #ffb80c;
}
.ticker-title {
  margin: 0;
  font-size: 18px;
}
.site-breaking-news {
  flex: 1;
}
.swiper-slide {
  white-space: nowrap;
  padding-right: 20px;
}
.entry-title {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.entry-title a {
  color: #fffefe;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}
.entry-title a:hover {
  text-decoration: none;
  color: #ff7c7c;
}
.side_contentmain {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#site_content #primary {
  max-width: 70%;
  padding-right: 3rem;
  border-right: 1px dotted #fff;
}
#site_content #home {
  max-width: 100%;
  padding-right: 3rem;
  /* border-right: 1px dotted #fff; */
}
#site_content {
  border-bottom: 1px dotted #fff;
}
/* #secondary {
  max-width: 30%;
  padding: 10px;
} */
.entry-image img {
  display: block;
  width: 100%;
}
.home_image img {
  width: 100%;
  height: 100%;
}
img {
  height: auto;
  max-width: 100%;
}
img {
  border-style: none;
  vertical-align: top;
}
.master-title {
  font-size: 40px;
  font-weight: 700;
}
.entry_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  flex-direction: column;
  padding: 20px;
  margin-top: 30px;
}
.entry_content h4 {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 400;
}
form {
  width: 550px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-form {
  max-width: 400px;
  height: 250px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
  border: 1px solid #ccc;
}
label {
  display: block;
  margin-bottom: 2px;
}
select {
  margin-bottom: 20px;
}
input[type="text"],
select {
  width: 100%;
  padding: 8px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #1e1e1e;
  color: #fff;
}
#agentid {
  padding: 20px;
}
input[type="submit"] {
  width: 100px;
  background-color: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
input[type="submit"]:hover {
  color: #000;
}
.agent_content {
  border-left: 0.25em solid;
  margin: 13px 0 1.75em;
  padding-left: 1em;
}
.home_content {
  border: none;
  margin: 30px 0 1.75em;
  padding-left: 1em;
}
.home_content p {
  margin-bottom: 1em;
  line-height: 1.5;
}
.agent_content p {
  margin-bottom: 1.5em;
  line-height: 1.5;
}
.table_container {
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
  margin-top: 50px;
  margin-bottom: 50px;
  display: block;
}
#complaintTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  word-break: break-word;
}
#complaintTable th,
#complaintTable td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
@media (max-width: 768px) {
  #complaintTable {
    font-size: 14px;
    font-weight: 700;
  }
  #complaintTable th,
  #complaintTable td {
    padding: 10px;
    font-weight: 700;
  }
}
@media (max-width: 480px) {
  #complaintTable {
    font-size: 8px;
    min-width: 100%;
  }
  #complaintTable th,
  #complaintTable td {
    padding: 10px;
    font-size: 13px;
    width: 15px;
  }
}
.post_nav {
  margin-top: 30px;
  padding: 10px;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav-previous,
.nav-next {
  flex: 1;
}
.nav-previous {
  text-align: left;
}
.nav-next {
  text-align: left;
}
.nav-previous a,
.nav-next a {
  display: inline-block;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}
.nav-previous a:hover,
.nav-next a:hover {
  color: #ff7c7c;
}
.nav-subtitle {
  display: block;
  font-size: 20px;
  opacity: 0.7;
  text-align: left;
}
.nav-title {
  font-size: 22px;
  text-align: left;
}
.search-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}
.widget-area {
  width: 313px;
  height: 113px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 10px;
}
.screen-reader-text {
  font-weight: 700;
  margin-bottom: 10px;
}
.widget_search {
  display: flex;
  flex-direction: row-reverse;
}
.search-formright {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  gap: 0;
}
.search-group {
  display: flex;
  flex-direction: row;
}
.search-field {
  background: #fff0;
  padding: 25px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  flex: 1;
}
.search-submit {
  padding: 10px 16px;
  background-color: #ffb80c;
  border: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 700;
  color: #000;
  margin-left: 0;
}
.search-submit:hover {
  background-color: #ff7c7c;
}
.recent_post {
  width: 100%;
  margin-top: 90px;
  margin-bottom: 90px;
}
.recent_post h2 {
  font-size: 30px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}
.recent_post .recent_contetn {
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}
.recent_contetn a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.recent_contetn a:hover {
  color: #ff7c7c;
}
.recent_commnet {
  width: 100%;
  margin-top: 50px;
}
.recent_commnet .rc {
  font-size: 23px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  color: #fff;
}
.recent_commnet .nc {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #fff;
}
.site_title {
  width: 100%;
  margin-bottom: 15px;
  padding: 30px 0 10px 0;
}
.site_title_content h2 {
  font-size: 40px;
  font-weight: 700;
  border-bottom: 1px dotted #fff;
}
.card_content {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card_content2 {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  border-radius: 10px;
  overflow: hidden;
  width: 375px;
  cursor: pointer;
}
.card2 {
  width: 275px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  align-items: center;
}
.card:hover img {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.2);
}
.card2:hover img {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.2);
}
.card_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s;
}
.card_title h3 {
  padding: 15px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.card_title h3:hover {
  color: #ff7c7c;
}
.card2 .card_title h3 {
  font-size: 18px;
  font-weight: 700;
}
.footer_section {
  width: 100%;
  margin-top: 90px;
}
.archives_section .arch_content {
  font-size: 17px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  padding: 30px 0 10px 0;
  border-bottom: 1px dotted #fff;
  margin-bottom: 30px;
}
.copy_right {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 17px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  color: #fff;
  background-color: #000;
}
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #7d0096;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
  transition: transform 200ms ease, opacity 200ms ease;
  z-index: 9999;
}
.chat-btn:hover {
  transform: scale(1.1);
}
.chat-btn img {
  width: 30px;
  height: 30px;
}
.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
  overflow: hidden;
  font-family: sans-serif;
  z-index: 9999;
}
.chat-header {
  background-color: #25d366;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.chat-tabs {
  display: flex;
  background: #f1f1f1;
}
.chat-tabs button {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.chat-tabs .active {
  background: #fff;
  border-bottom: 2px solid #25d366;
}
.chat-content {
  color: #000;
  padding: 10px;
  max-height: 250px;
  overflow-y: auto;
}
.chat-header {
  font-size: 15px;
  color: #000;
}
.chat-tab {
  display: none;
}
.chat-tab.active {
  display: block;
}
.agent {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.agent a {
  text-decoration: none;
  color: #25d366;
  font-weight: 700;
}
.hidden {
  display: none;
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: opacity 0.3s ease;
}
.whatsapp-icon.hidden {
  opacity: 0;
  pointer-events: none;
}
.whatsapp-icon.visible {
  opacity: 1;
  pointer-events: auto;
}
