/*
Theme Name: ISUV Theme
Theme URI: https://isuv.gov.al
Author: AKSHI
Author URI: https://akshi.gov.al/
Description: Custom theme for Instituti i Sigurisë Ushqimore dhe Veterinarisë
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isuv
Tags: custom-theme, government, albanian
*/
:root {
  --accent: #0a71b3;
  --accent-dark: #095f97;
  --navy: #1c274c;
  --text-dark: #2c2c2c;
  --accent-orange: #f55d3e;
  --news-bg: #dfebf4;
  --jobs-bg: #e2e7e8;
  --job-card-bg: #f1f4f5;

  --bs-body-font-family: Arial, sans-serif;
  --bs-font-sans-serif: Arial, sans-serif;
}

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text-dark);
}
/* ============================================================
   BOOTSTRAP ICONS FIX
   ============================================================ */
[class^="bi-"],
[class*=" bi-"],
.bi {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
}

/* ============================================================
   GLOBAL HELPERS
   ============================================================ */
.title-text {
  color: var(--accent-dark);
}

.accent-text {
  color: var(--accent-orange);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.isuv-logo img {
  display: block;
  height: 72px;
  width: auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo-link img,
.custom-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
}

.navbar .navbar-collapse {
  align-items: center;
}

.navbar .nav-link {
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.isuv-navbar-search {
  width: 100%;
  max-width: 250px;
  flex-shrink: 0;
}

.isuv-navbar-search .input-group {
  flex-wrap: nowrap;
}

.isuv-navbar-search .form-control {
  min-width: 0;
  height: 40px;
  font-size: 12px;
  border-radius: 999px 0 0 999px;
  border-right: 0;
}

.isuv-navbar-search .form-control:focus {
  box-shadow: none;
  border-color: #86b7fe;
}

.isuv-navbar-search .btn {
  height: 40px;
  width:70px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0 999px 999px 0;
  background-color: var(--accent);
  border-color: var(--accent);
  white-space: nowrap;
}

.isuv-navbar-search .btn:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  font-size: 14px;
}


.navbar .dropdown-menu {
  margin-top: 8px;
  padding: 6px;
  border: 1px solid rgba(9, 95, 151, 0.18);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(9, 95, 151, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08);
  background: #dfebf4;
  min-width: 200px;
  font-size: 12px;

  animation: dropdownReveal 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top center;
}

@keyframes dropdownReveal {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.navbar .dropdown-menu .dropdown-item {
  padding: 9px 14px;
  border-radius: 8px;
  color: #2c2c2c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    background 0.12s ease,
    color 0.12s ease,
    transform 0.1s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(10, 113, 179, 0.12);
  color: #095f97;
  transform: translateX(2px);
}

.navbar .dropdown-menu .dropdown-item:active {
  background: rgba(10, 113, 179, 0.2);
  color: #095f97;
  transform: translateX(2px) scale(0.99);
}

.navbar .dropdown-menu .dropdown-divider {
  border-color: rgba(9, 95, 151, 0.15);
  margin: 4px 8px;
}

@media (max-width: 991.98px) {
  .isuv-logo img {
    height: 60px;
  }

  .navbar .navbar-collapse {
    margin-top: 10px;
  }

  .navbar .nav-link {
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
    padding: 0 0 0 10px;
    border: 0;
    box-shadow: none;
  }

  .isuv-navbar-search {
    max-width: 100%;
    margin-top: 10px;
  }
}


/* ============================================================
   HERO
   ============================================================ */
.isuv-hero__wrap {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.isuv-hero__image {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.isuv-hero__overlay {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(44%, 760px);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--accent);
  border-top-right-radius: 320px;
  border-bottom-right-radius: 320px;
}

.isuv-hero__content {
  width: 100%;
  padding: 48px 72px 48px 56px;
  color: #fff;
}

.isuv-hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.isuv-hero__title span {
  display: block;
  font-size: clamp(28px, 3vw, 58px);
}

.isuv-hero__text {
  margin: 0;
  max-width: 520px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
  .isuv-hero__overlay {
    width: 52%;
    border-top-right-radius: 240px;
    border-bottom-right-radius: 240px;
  }

  .isuv-hero__content {
    padding: 34px 44px 34px 32px;
  }
}

@media (max-width: 768px) {
  .isuv-hero__wrap {
    min-height: 320px;
    background-image: url('assets/img/hero.jpg');
    background-size: cover;
    background-position: center;
  }

  .isuv-hero__image {
    display: none;
  }

  .isuv-hero__overlay {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 320px;
    border-radius: 0;
    background: rgba(10, 113, 179, 0.88);
  }

  .isuv-hero__content {
    padding: 32px 24px;
  }

  .isuv-hero__title span {
    font-size: clamp(26px, 7vw, 40px);
  }

  .isuv-hero__text {
    font-size: clamp(15px, 4vw, 18px);
  }
}


/* ============================================================
   NEWS
   ============================================================ */
.news-section {
  background-color:#dfebf4;
}
.isuv-news {
  background: var(--news-bg);
}

.news-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.news-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;        
}

.news-card .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;   
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;     
}

.news-img {
  height: 220px;
  object-fit: cover;
}

.news-badge {
  background: #fff;
  color: #2a2a2a;
  font-weight: 600;
}

.news-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.news-carousel {
  display: flex;
  transition: transform 0.4s ease;
}

.news-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .news-img {
    height: 200px;
  }
}


/* ============================================================
   Karusel per lajmet dhe punen
   ============================================================ */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.carousel-arrow:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.carousel-arrow-prev {
  left: -12px;
}

.carousel-arrow-next {
  right: -12px;
}

.news-arrow,
.jobs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.news-arrow:hover,
.jobs-arrow:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.news-arrow-prev,
.jobs-arrow-prev {
  left: -12px;
}

.news-arrow-next,
.jobs-arrow-next {
  right: -12px;
}

.news-dot,
.jobs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}

.news-dot.active,
.jobs-dot.active {
  background: #333;
}


/* ============================================================
   Akreditime dhe te tjera
   ============================================================ */
.akreditime__title {
  color: #095f97;
  font-weight: 600;
}

.akreditime__body {
  background: #095f97;
}

.akreditime__item {
  display: block;
  color: #fff;
  transition: transform 0.2s ease;
}

.akreditime__item:hover {
  transform: translateY(-4px);
  color: #fff;
}

.akreditime__icon-wrap {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.akreditime__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.akreditime__label {
  max-width: 220px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .akreditime__icon-wrap {
    width: 130px;
    height: 130px;
  }

  .akreditime__icon {
    width: 64px;
    height: 64px;
  }

  .akreditime__label {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .akreditime__top {
    padding-left: 20px;
    padding-right: 20px;
  }

  .akreditime__icon-wrap {
    width: 110px;
    height: 110px;
  }

  .akreditime__icon {
    width: 54px;
    height: 54px;
  }

  .akreditime__label {
    font-size: 14px;
  }
}


.cert-swiper {
  padding: 0 50px 10px;
  flex: 1;
  min-width: 0;
}
.cert-swiper .swiper-button-prev,
.cert-swiper .swiper-button-next {
  color: #fff;
}
.cert-swiper .swiper-button-prev::after,
.cert-swiper .swiper-button-next::after {
  font-size: 20px;
}

.cert-swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.cert-swiper {
  flex: 1;
  min-width: 0;
}
 
.cert-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
 
.cert-arrow:hover {
  background: var(--accent);
  color: #fff;
}
 
.cert-arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}


/* ============================================================
   DEPARTAMENTET
   ============================================================ */
.isuv-departamente {
  background: #fff;
  overflow: visible;
}
.isuv-departamente .container {
  position: relative;
  overflow: visible;
}

.service-card {
  height: 80px;
  padding: 12px 12px;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 5px 5px 5px 5px;
}

.service-card:hover {
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

.service-card__icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}

.service-card__icon img {
  max-width: 50px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
}

.service-card__label {
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(12px, 2vw, 14px);
  word-break: break-word;
}

@media (max-width: 700px) {
  .service-card {
    min-height: 90px;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .service-card__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .service-card__icon img {
    max-width: 36px;
    max-height: 36px;
  }

  .service-card__label {
    font-size: 14px;
  }
}


/* ============================================================
   Punesimi
   ============================================================ */
.isuv-jobs {
  background: var(--jobs-bg);
}

.job-card {
  width: 100%;
  height: 100%;
  display: flex;
  background: var(--job-card-bg);
  border: 1.5px solid #095f97;
  border-radius: 12px;
}

.job-card__inner {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: var(--job-card-bg);
  border-radius: 12px;
}

.job-card__company {
  margin-bottom: 8px;
  min-height: 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
}

.job-card__title {
  margin: 0 0 16px;
  min-height: 56px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  color: #1f1f63;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  height: 32px;
  margin-bottom: 20px;
}

.job-card__tags span {
  display: inline-block;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--accent);
  background: #fff;
  border: 1.5px solid var(--accent);
  border-radius: 30px;
}

.job-card__footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px dashed var(--accent);
}

.job-card__footer span,
.job-card__deadline {
  display: inline-block;
  min-height: 21px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1f1f63;
}

.job-card__btn {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.job-card__btn:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-2px);
}

.jobs-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.jobs-carousel {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.jobs-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}


/* ============================================================
   Swiperi i punes
   ============================================================ */
.jobs-swiper {
  padding: 0 10px 50px !important;
}

.jobs-swiper .swiper-wrapper {
  align-items: stretch;
}

.jobs-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.jobs-swiper .swiper-slide > * {
  width: 100%;
  height: 100%;
  display: flex;
}

.jobs-swiper .swiper-button-prev,
.jobs-swiper .swiper-button-next {
  color: var(--accent);
}

.jobs-swiper .swiper-button-prev::after,
.jobs-swiper .swiper-button-next::after {
  font-size: 20px;
}

.jobs-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

@media (max-width: 560px) {
  .job-card__inner {
    padding: 16px 14px 14px;
  }

  .job-card__company {
    font-size: 14px;
  }

  .job-card__title {
    min-height: auto;
    font-size: 21px;
  }

  .job-card__tags span {
    padding: 6px 10px;
    font-size: 11px;
  }

  .job-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card__btn {
    width: 100%;
    text-align: center;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.isuv-footer {
  background: #1c274c;
  color: rgba(255, 255, 255, 0.88);
}

.isuv-footer__logo {
  height: 70px;
  width: auto;
  display: block;
}

.isuv-footer__text {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.7;
}

.isuv-footer__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.isuv-footer__links li,
.isuv-footer__contact li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}



.isuv-footer__contact strong {
  color: #fff;
}

.isuv-footer__divider {
  border-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.isuv-footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.isuv-footer__bottom-links a {
  font-size: 14px;
}

@media (max-width: 768px) {
  .isuv-footer {
    text-align: center;
  }

  .isuv-footer__text {
    max-width: 100%;
  }

  .isuv-footer__logo {
    margin: 0 auto;
  }

  .isuv-footer__bottom-links {
    justify-content: center;
  }
}

.isuv-footer__bottom-links ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  align-items: center;
}

.footer__bottom-links li {
  list-style: none;
  position: relative;
}

.footer__bottom-links li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.75rem;
  background-color: currentColor;
  opacity: 0.25;
}

.footer__bottom-links a {
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer__bottom-links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}





/* ============================================================
   WIDGETS
   ============================================================ */

.widget ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  align-items: center;
}

.widget li {
  list-style: none;
  position: relative;
}

.widget li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.75rem;
  background-color: currentColor;
  opacity: 0.25;
}

.widget a {
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  color: #dde6ef;
  transition: opacity 0.2s ease;
  white-space: normal !important;
}

.widget a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.col-12.col-md-6.col-lg-2.widget a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  display: block; 
}

.col-12.col-md-6.col-lg-2.widget {
  min-width: 0;
}

/* ============================================================
   PAGE HERO 
   ============================================================ */
.page-hero {
  background: var(--accent);
  padding: 48px 0 40px;
}

.page-hero__breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  color: #fff;
}

.page-hero__breadcrumb span {
  margin: 0 6px;
}

.page-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 560px;
  font-weight: 500px;
}


/* ============================================================
   DEPARTMENTS — arkiva 
   ============================================================ */
.isuv-departments {
  background: var(--news-bg);
  min-height: 60vh;
}

.dept-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--text-dark);
  border: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(10, 113, 179, 0.14);
  color: var(--text-dark);
}

.dept-card__img-wrap {
  overflow: hidden;
  height: 200px;
  background: #dde6ef;
  position: relative;
  flex-shrink: 0;
}

.dept-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}

.dept-card:hover .dept-card__img {
  transform: scale(1.05);
}

.dept-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.dept-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dept-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}

.dept-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  line-clamp:3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dept-card__head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px;
  margin-top: auto;
  background: #f4f8fb;
  border-radius: 10px;
  font-size: 13px;
}

.dept-card__head i {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 2px;
}

.dept-card__head span {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}

.dept-card__head small {
  color: #888;
  font-size: 12px;
}

.dept-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-top: 14px;
}

.dept-card:hover .dept-card__link {
  text-decoration: underline;
}


/* ============================================================
   DEPARTMENTS — SINGLE PAGE
   ============================================================ */
.dept-single__hero-img img {
  max-height: 420px;
  object-fit: cover;
}

.dept-single__content {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
}

.dept-single__content h2,
.dept-single__content h3 {
  color: var(--navy);
  font-weight: 800;
  margin-top: 2rem;
}

.dept-single__back {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.dept-single__back:hover {
  color: var(--accent-dark);
}


/* ============================================================
   STYLED LINK LIST (editor class: .isuv-link-list)
   ============================================================ */
.entry-content ul,
.entry-content ol,
.entry-content .wp-block-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.entry-content ul li,
.entry-content ol li,
.entry-content .wp-block-list li {
  border-bottom: 1px solid #e8edf2;
}

.entry-content ul li:first-child,
.entry-content ol li:first-child,
.entry-content .wp-block-list li:first-child {
  border-top: 1px solid #e8edf2;
}

.entry-content ul li a,
.entry-content ol li a,
.entry-content .wp-block-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}


.entry-content ul li a:hover,
.entry-content ol li a:hover,
.entry-content .wp-block-list li a:hover {
  background: var(--news-bg);
  color: var(--accent);
  padding-left: 22px;
}



/* ============================================================
   PAGINATION
   ============================================================ */
.isuv-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.isuv-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  margin: 0 2px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.isuv-pagination .page-numbers:hover {
  background: var(--news-bg);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.isuv-pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.isuv-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #999;
  pointer-events: none;
}


/* ============================================================
   ENTRY CONTENT
   ============================================================ */
.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.4rem;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}


/* ============================================================
   BACK BUTTON
   ============================================================ */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  transition: gap 0.2s ease, color 0.2s ease;
}

.btn-back:hover {
  color: var(--accent-dark);
  gap: 12px;
}


/* ============================================================
   Shigjetat e swiperit per lajmet(news.php)
   ============================================================ */
.news-arrow-btn{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: #FFF;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}



.news-arrow-btn:hover {
  background: var(--accent);
  color: #FFF;
}

.news-arrow-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.newsmore{
  border-color: var(--accent); 
  background-color: #FFF;
  color: var(--accent); 
  font-size:14px; 
  white-space:nowrap; 
  height:40px; 
  font-weight:600;
}

.newsmore:hover{
  background: var(--accent);
  color: #FFF;
}

/* ============================================================
   Shigjetat e swiperit te departamenteve(departamente.php)
   ============================================================ */
.dept-swiper-outer {
  align-items: center;
}
 
.dept-services-swiper {
  overflow: hidden;
  padding-bottom: 40px !important;
}
 
.dept-services-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}
 
.dept-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
 
.dept-arrow:hover {
  background: var(--accent);
  color: #fff;
}
 
.dept-arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}



.isuv-services .swiper-button-prev,
.isuv-services .swiper-button-next {
  color: var(--accent);
  width: 44px;
  height: 44px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}
.isuv-services .swiper-button-prev::after,
.isuv-services .swiper-button-next::after {
  font-size: 20px;
}

.isuv-services .swiper-button-prev {
  left: -70px !important;
}

.isuv-services .swiper-button-next {
  right: -70px !important;
}

.dept-services-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.service-card__icon img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}


/* ============================================================
   Butonat swiper per seksionin e puneve ne homepage(jobs.php)
   ============================================================ */
.jobs-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
 
.jobs-arrow-btn:hover {
  background: var(--accent);
  color: #fff;
}
 
.jobs-arrow-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}