.as-bk-footer-icon a:focus,
.cm-secondary-footer-menu li a:focus,
.as-pm-footer-contact a:focus,
.top-menu a:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
.bk-menu li a:focus,
.bk-site-logo a:focus {
  outline: 0px !important;
}

/* .................... Header Css ............. */
.bk-site-header {
  padding: 0px !important;
  margin: 0px !important;
  width: 100%;
  position: fixed !important;
  top: 0;
  z-index: 999 !important;
}

.bk-site-content {
  padding-top: 260px;
}

.bk-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.as-bk-header-top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #dfe1ea;
}

.bk-site-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 30px;
}

.bk-site-logo a {
  margin: 0px !important;
}

.bk-site-logo img {
  width: 100%;
  max-width: 150px !important;
}

.as-bk-header-bottom-bar {
  background-color: #000000 !important;
  padding: 15px 30px;
}

.bk-header-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bk-header-left {
  width: 60%;
}

.bk-header-right {
  width: 40%;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  align-items: center;
}

.bk-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

.bk-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.bk-menu li a:hover {
  color: #ffffff;
}
/* .......... Droupdown Css............ */
.bk-menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}

.bk-menu li.menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #a0a0a0;
}

.bk-menu li.menu-item-has-children > a::before {
  content: " ";
  position: absolute;
  bottom: -26px;
  left: calc(50% - 13px);
  z-index: 111;
  border-style: solid;
  border-width: 0 8px 11px 8px;
  border-color: #fff0 #fff0 #000000 #fff0;
  filter: drop-shadow(0 -2px 2px rgb(0 0 0 / 0.06));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease-in;
}

.bk-menu li {
  position: relative;
}

.bk-menu li ul {
  position: absolute;
  top: 50px;
  left: -20px;
  background: #000000;
  min-width: 200px;
  list-style: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.bk-menu li ul::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.bk-menu li ul li a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 18px;
}

.bk-menu li ul li a:hover {
  background: #f0f0f0;
  color: #000000;
}

.bk-menu li.menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
}

.bk-menu li.menu-item-has-children:hover > a::before {
  opacity: 1;
  visibility: visible;
}

/* ............. Mobile Menu Bar............... */
.bk-menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}
/* .............. end ................ */
/* ............ Search CSS .......... */
.search-icon,
.as-pm-cart,
.as-bk-icon-account,
.bk-menu-toggle {
  cursor: pointer;
  color: #ffffff;
  position: relative;
}

.search-icon i,
.as-pm-cart i,
.as-bk-icon-account i,
.bk-menu-toggle i {
  font-size: 22px;
}

.search-box {
  position: absolute;
  top: calc(100% + 14px);
  right: -14px;
  width: 340px;
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid #000000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  margin-top: 12px;
}

.search-box form {
  margin: 0px !important;
  display: flex;
}

.search-box input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
}

.search-box button {
  padding: 10px 25px;
  background: #4f4f4f;
  border: none;
  border-radius: 0 10px 10px 0;
  color: #fff;
  cursor: pointer;
  transition: 0.8s;
}

.search-box button:hover {
  background: #4f4f4f;
  color: #ffffff;
}

.search-box::before {
  content: " ";
  position: absolute;
  top: -12px;
  right: 18px;
  z-index: 111;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: #fff0 #fff0 #000000 #fff0;
  filter: drop-shadow(0 -2px 2px rgb(0 0 0 / 0.06));
  opacity: 0;
  transition: opacity 0.2s ease;
}

#searchBox.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#searchBox.active::before {
  opacity: 1;
}
/* ................... Cart Css............. */
.as-pm-cart-wrapper {
  position: relative;
}

.widget_shopping_cart {
  position: absolute;
  width: 300px;
  background: #000000fc;
  z-index: 999;
  right: 0;
  padding: 5px 14px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.as-pm-cart-wrapper:hover .widget_shopping_cart,
.as-pm-cart-wrapper:focus-within .widget_shopping_cart {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.as-pm-cart {
  position: relative;
  cursor: pointer;
}

.as-pm-cart-count {
  position: absolute;
  font-size: 14px;
  right: -12px;
  top: -8px;
  background-color: #ffffff;
  padding: 0 8px;
  color: #000000;
  font-weight: 900;
  border-radius: 50%;
}

.woocommerce-mini-cart-item a {
  color: #ffffff !important;
}

.woocommerce-mini-cart-item a:hover {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .bk-menu-toggle {
    display: block;
    text-align: right;
  }

  .bk-primary-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #000000;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 999999;
    transition: right 0.8s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
  }

  .bk-primary-nav.active {
    right: 0;
  }

  .bk-menu {
    flex-direction: column;
    gap: 0;
  }

  .bk-menu li {
    border-bottom: 1px solid #eee;
  }

  .bk-menu li a {
    padding: 12px 0;
    display: block;
  }

  .bk-menu li ul {
    position: static;
    margin: 0px !important;
  }

  .bk-menu li.menu-item-has-children > ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .bk-menu li.menu-item-has-children.active > ul {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .bk-menu-toggle {
    text-align: left;
  }

  .bk-site-logo {
    justify-content: center;
  }

  .bk-menu li.menu-item-has-children > a::after {
    font-size: 14px;
    color: #bcbcbc;
  }

  .bk-menu li.menu-item-has-children > a::before {
    display: none !important;
  }

  .bk-menu li ul li a {
    padding-left: 18px;
    font-size: 16px;
    color: #d6d6d6;
  }

  .bk-menu li ul li {
    border-bottom: 1px solid rgb(255, 255, 255);
  }

  .bk-menu li ul li:last-child {
    border-bottom: none;
  }

  .search-box {
    width: 260px;
    margin-top: 16px;
  }
}

/* ..................... Footer css................. */
.as-pm-custom-footer {
  background: #ffffff !important;
  width: 100%;
  color: #000;
  border-top: 1px solid #dfe1ea;
}

.as-pm-footer-widgets {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0px;
}

.as-bk-footer-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0px;
}

.as-bk-footer-icon img {
  width: 100%;
  max-width: 250px;
}

.as-pm-footer-column {
  flex: 1;
  max-width: 25%;
}

.as-pm-footer-about {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.as-pm-footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
}

.cm-secondary-footer-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.cm-secondary-footer-menu li a {
  text-decoration: none;
  font-weight: 500;
  color: #000000;
  font-size: 18px;
}

.cm-secondary-footer-menu li a:hover {
  color: #000000;
}

.as-pm-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.as-pm-footer-contact a {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  transition: 0.8s ease;
}

.as-pm-footer-contact a:hover {
  color: #000;
}

.as-pm-footer-contact i {
  color: #000;
  font-size: 16px;
  margin-top: 7px;
}
.as-bk-footer-bottom-wrapper {
  background-color: #000000 !important;
}

.as-pm-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  padding: 8px 0px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.as-pm-footer-bottom img {
  width: 100%;
  max-width: 150px;
}

.as-pm-footer-bottom p {
  margin: 0;
}

@media (max-width: 992px) {
  .as-pm-footer-column {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .as-pm-footer-widgets {
    padding: 50px 20px;
  }

  .as-pm-footer-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .as-bk-footer-icon img {
    width: 100%;
    max-width: 200px;
  }

  .as-pm-footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* ........................ post single page desing ................... */
/* ............... Single Header css .............. */
.pkm-post-category a:focus,
.single-post .pkm-post-breadcrumb a:focus,
.blog .pkm-post-breadcrumb a:focus,
.category .pkm-post-breadcrumb a:focus,
.pkm-other-articles .pkm-prev-article a:focus,
.pkm-other-articles .pkm-prev-article .pkm-article-content h4 a:focus,
.pkm-other-articles .pkm-next .pkm-article-content h4 a:focus,
.pkm-other-articles .pkm-next a:focus,
.pkm-archive-wrapper .pkm-archive-blog .pkm-archive-image a:focus,
.pkm-archive-wrapper .pkm-archive-blog .pkm-archive-content h4 a:focus,
.pkm-archive-wrapper .pkm-archive-blog .pkm-archive-content a:focus,
.pkm-pagination .page-numbers:focus {
  outline: 0px !important;
}

.single-post .page_name,
.blog .page_name,
.category .page_name {
  display: none;
}

.pkm-post-single-wrapper,
.pkm-post-archive-wrapper {
  margin: 50px 0;
}

.pkm-hero-image {
  position: relative;
  margin-bottom: 50px;
}

.pkm-hero-image img {
  width: 100%;
  border-radius: 20px;
}

.pkm-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.pkm-hero-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 70%;
  z-index: 10;
}

.pkm-post-category {
  margin-bottom: 8px;
}

.pkm-post-category a {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  font-weight: 600;
}

.pkm-post-breadcrumb {
  color: #ffffff;
  font-weight: 600;
}

.pkm-post-breadcrumb a {
  color: #41c9ff;
}

.pkm-post-title {
  margin: 30px 0;
}

.pkm-post-title .pkm-span {
  background: #fff;
  color: #000;
  padding: 0 4px;
  border: 5px solid #fff;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
}
/* ................. single content .............. */
.pkm-content-area p {
  margin-bottom: 16px;
  text-align: justify;
}

.single-next-prev-posts-container {
  padding: 50px 0;
  border-top: 1px solid #dfe1ea;
  border-bottom: 1px solid #dfe1ea;
  margin: 50px 0;
}

.single-next-prev-posts-title {
  font-weight: 800;
  margin-bottom: 30px;
}

.pkm-other-articles {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.pkm-article {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 50%;
  text-decoration: none;
  color: #000;
}

.pkm-article img {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.pkm-article-content {
  max-width: 300px;
}

.pkm-nav-label {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 6px;
}

.pkm-article-content a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
  transition: color 0.4s ease;
}

.title-animation-underline {
  position: relative;
  display: inline;
  color: #000;
  text-decoration: none;
  background-image: linear-gradient(#41c9ff, #41c9ff);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition:
    background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    color 0.4s ease;
}

.title-animation-underline:hover {
  background-size: 100% 2px;
  background-position: 0 100%;
  color: #41c9ff;
}

.pkm-next {
  justify-content: flex-end;
  text-align: right;
}

/* ........... Related Post ............. */
.pkm-related-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.pkm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkm-related-image {
  overflow: hidden;
  border-radius: 10px;
}

.pkm-related-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pkm-related-post-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 14px;
  transition: 0.8s ease;
}

.pkm-related-link:hover .pkm-related-image img {
  transform: scale(1.06);
}

/* ............... archive page ............ */
.pkm-archive-blog {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.pkm-archive-image {
  flex: 0 0 30%;
}

.pkm-archive-image img {
  border-radius: 20px;
  width: 100%;
  height: 250px;
  object-position: center;
  display: block;
  object-fit: cover;
}

.pkm-archive-title a {
  color: #000000;
  font-size: 28px;
  font-weight: 600;
}

.pkm-article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 6px;
}

.pkm-article-excerpt {
  font-size: 16px;
  line-height: 28px;
  color: #555;
  margin-bottom: 22px;
}

.pkm-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.8s ease;
}

.pkm-read-more span {
  transition: transform 0.8s ease;
}

.pkm-read-more:hover,
.pkm-read-more:hover svg {
  color: #41c9ff;
  fill: #41c9ff;
}

.pkm-read-more:hover span {
  transform: translateX(6px);
}

.pkm-pagination {
  margin-bottom: 50px;
}

.pkm-pagination .pagination {
  border: 0px !important;
}

.pkm-pagination .page-numbers {
  padding: 10px 14px;
  text-decoration: none;
  color: #000000 !important;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  margin: 0 5px !important;
  transition: ease 0.1s;
}

.pkm-pagination .page-numbers:hover {
  background-color: #41c9ff;
  color: #fff !important;
  border-color: #41c9ff;
}

.pkm-pagination .current {
  background-color: #41c9ff;
  color: #fff !important;
  border-color: #41c9ff;
}

@media (max-width: 1024px) {
  .pkm-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkm-related-image img {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .pkm-archive-blog {
    gap: 30px;
  }

  .pkm-archive-title a {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .pkm-post-single-wrapper,
  .pkm-post-archive-wrapper {
    margin: 25px 0;
  }

  .pkm-hero-overlay {
    position: absolute;
    bottom: 0px;
    left: 15px;
    max-width: 80%;
    z-index: 10;
  }

  .pkm-hero-image img {
    height: 100%;
    max-height: 400px;
    object-fit: cover;
  }

  .pkm-post-title .pkm-span {
    font-size: 28px;
  }

  .pkm-hero-image {
    margin-bottom: 25px;
  }

  .pkm-other-articles {
    flex-direction: column;
  }

  .pkm-article {
    width: 100%;
  }

  .pkm-next {
    justify-content: flex-start;
    text-align: left;
  }

  .pkm-archive-blog {
    flex-direction: column;
    align-items: flex-start;
  }

  .pkm-archive-image {
    width: 100%;
  }

  .pkm-archive-title a {
    font-size: 18px;
  }

  .pkm-pagination .page-numbers {
    margin: 0px !important;
    padding: 8px 10px;
  }
}

@media (max-width: 576px) {
  .pkm-related-grid {
    grid-template-columns: 1fr;
  }

  .pkm-related-image img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .pkm-archive-title a {
    font-size: 16px;
  }

  .pkm-article-excerpt {
    font-size: 14px;
  }
}
