/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #018086;
  --secondary-color: #ffffff;
  --third-color: #78b7d0;
  --accent-color: #9cf4f6;
  --text-color: #1b1b1b;
  --text-white: #ffffff;
}

.pkp_site_name_wrapper,
.pkp_site_name,
.pkp_site_name > a {
  padding: 0 !important;
}

.pkp_navigation_primary_row,
#navigationPrimary ul {
  background: var(--secondary-color);
}

.pkp_site_name .is_img img {
  max-height: 250px !important;
}

#navigationPrimary a,
.pkp_navigation_search_wrapper a,
#navigationPrimary ul a {
  color: var(--text-color);
}

#navigationPrimary li a,
a.pkp_search.pkp_search_desktop {
  background: var(--secondary-color);
}

.custom_about_section {
  font-family: "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  text-align: justify;
}

.custom_about_section h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.custom_about_section p {
  margin-bottom: 10px;
}

.custom_about_section ul {
  padding-left: 20px;
}

.custom_about_section li {
  margin-bottom: 8px;
}

.custom_about_section a {
  color: #007bff;
  text-decoration: none;
}

.custom_about_section a:hover {
  text-decoration: underline;
}

.side-bar-header,
.pkp_block .title {
  display: block !important;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  color: #455a64;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid #1976d2 !important;
}

.side-bar-item {
  border-bottom: 1px solid #eceff4;
  transition: all 0.3s ease;
}

.side-bar-item:last-child {
  border-bottom: none;
}

.side-bar-item:hover {
  background-color: #f0f7ff;
}

.side-bar-item a {
  font-family: sans-serif;
  color: #455a64;
  text-decoration: none;
  display: block;
  padding: 14px 0px;
  transition: all 0.3s ease;
  font-size: 15px;
  text-transform: capitalize;
}

.side-bar-item a:hover {
  color: #1976d2;
  padding-left: 25px;
}

.side-bar-item em {
  width: 20px;
  margin-right: 10px;
  color: #5c8ab9;
  text-align: center;
}

/* Optional: Add a subtle hover effect */
.side-bar-item:hover i {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

/* Sidebar Box */
.sidebar-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 25px;
}

/* Template Image */
.sidebar-box a img {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.sidebar-box a img:hover {
  transform: scale(1.05);
}

.announcement-box {
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}
.call-box {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin: 15px 0;
}
.call-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.call-box em {
  font-size: 24px;
  color: #ff6f61;
}
.obj_article_summary {
  border: 1px solid #455a64;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 3px 3px #1976d2;
}
