/* import font */

@font-face {
  font-family: "KalamehWeb";
  src: url("../Fonts/KalamehWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KalamehWeb";
  src: url("../Fonts/KalamehWeb-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "KalamehWeb", sans-serif;
  margin-top: 70px;
}

/* import font */

/* Project Root   */

/* Project Root   */

/* Reset Css */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

/* Reset Css */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Section */

.header-section {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  padding: 4px 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.nav-logo {
  display: block;
  width: 100px;
height: 40px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-nav {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
}

.nav-item {
}

.nav-link {
  display: block;
  color: var(--itvet-ir-tundora, var(--color-grey-28, #484848));
  font-size: var(--font-size-14, 14px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-21, 21px);
  padding: 14px 6px;
}

.nav-link:hover {
  color: var(--itvet-ir-tundora, var(--color-grey-27, #5a5a5a));
}

.auth {
  display: inline-flex;
  border-radius: 22px;
  background: var(--color-grey-95, #fdf4e5);
  overflow: hidden;
}

.auth > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  height: 37px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-login {
  padding: 0 18px;
  color: var(--itvet-ir-buttercup, var(--color-orange-54, #fbae17));
  background: transparent;
}

.auth-login:hover {
  color: var(--itvet-ir-pirate-gold, var(--color-orange-37, #b87b04));
}

.auth-register {
  padding: 8px 21px;
  background: linear-gradient(90deg, #f29d1c 0%, #fbc048 100%);
  box-shadow: 0 2px 8px rgba(242, 157, 29, 0.5);
  color: #fff;
}

.auth-register:hover {
  color: var(--itvet-ir-buttered-rum, var(--color-orange-33, #9e630a));
}

.search-bar-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    padding: 6px;
    gap: 8px;
    transition: border-color 0.25s, box-shadow 0.25s;
    margin-right: auto;
}

@media (max-width: 768px) {
  .search-bar-wrapper {
    display: none;
  }
  .mobile-search {
    display: flex;
    margin: 0;
    width: fit-content;
  }
}

.search-bar-wrapper:focus-within {
  border-color: #f29d1c;
  box-shadow: 0 0 0 4px rgba(242, 157, 28, 0.12);
}
.search-bar-wrapper input {
  border: none;
  outline: none;
  display: none;
  background: transparent;
  font-size: 0.9rem;
  color: #333;
  width: 100%;
  font-family: inherit;
  direction: rtl;
}
.search-bar-wrapper input::placeholder {
  color: #bbb;
  font-size: 0.85rem;
}
.search-bar-btn {
    background: #f29d1c;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.search-bar-btn:hover {
  background: #e08c10;
  transform: scale(1.07);
}
.search-bar-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
  }
}

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  padding: 24px 8px;
  top: 0;
  right: -100%;
  width: clamp(270px, 270px, 100%);
  height: 100dvh;
  background: linear-gradient(90deg, #f29d1c 0, #fbc048 100%);
  z-index: 9999;
  transition: all 240ms ease-in-out;
}
.mobile-menu-section.active {
  box-shadow: -4px 0 24px 0 #bb7200;
  right: 0;
}

.mobile-menu-item {
  color: #000;
  text-align: right;
  border-bottom: 1px solid #ff9218;
  padding: 5px;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
/* Header Section */

/* layout section */

.custom-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 15px;
  position: relative;
}

.custom-content-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 26px auto;
  width: fit-content;
  position: relative;
}

.vector-title {
  position: absolute;
  top: -12px;
  left: -5px;
  width: 25px;
  transform: rotate(-20deg);
}

.vector-title-why {
  position: absolute;
  top: -40px;
  left: -10px;
  width: 25px;
  transform: rotate(-20deg);
}

.vector-title img,
.vector-title-why img {
  width: 100%;
  height: 100%;
}

.custom-content-head-text {
  color: var(--itvet-ir-scorpion, var(--color-grey-34, #565656));
  text-align: center;
  font-feature-settings: "salt" on;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-30, 30px); /* 107.143% */
}

.custom-content-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .custom-content-body {
    grid-template-columns: repeat(2, 1fr);
  }
}

.custom-content-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.service-card {
  padding: 0 15px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.service-card:hover .service-card-content-title,
.service-card:hover .service-card-content-description {
  color: #f29d1e;
}

.service-card:hover .service-card-img img {
}

.service-card-img {
  width: 84px;
  height: 84px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-content {
  padding: 12px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-content-title {
  color: #565656;
  text-align: right;
  /* font-family: Kalameh; */
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.service-card-content-description {
  color: var(--itvet-ir-shark, var(--color-azure-15, #212529));
  text-align: right;
  /* font-family: var(--font-family-Font-1, Kalameh); */
  font-size: var(--font-size-14, 14px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: 28px; /* 200% */

  display: -webkit-box;
  -webkit-line-clamp: 2; /* تعداد خطوط */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .service-card-content-description {
    display: none;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .custom-content-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-content-title {
    text-align: center;
    font-size: 16px;
  }
}

/* layout section */
/* Small Card */
.small-card {
  position: relative;
  padding: 23px;
  border-radius: 37px;
  background: transparent;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;

  transition:
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

/* Gradient layer */
.small-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 37px;
  background: linear-gradient(0deg, var(--color-orange-53, #f29d1e) 0%, var(--color-orange-65, #fbc24e) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.small-card:hover::before {
  opacity: 1;
}

.small-card:hover {
  box-shadow: 0 5px 15px rgba(241, 156, 27, 0.85);
  transform: translateY(-4px);
}

/* Bring content above gradient */
.small-card > * {
  position: relative;
  z-index: 1;
}

/* Image wrapper */
.small-card-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(0deg, var(--color-cyan-51, #46bdbb) 0%, var(--color-cyan-79, #9af8f7) 100%);
  box-shadow: 0 5px 15px #7be2e1;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

.small-card:hover .small-card-img {
  background: #fff;
  box-shadow: 0 5px 15px #ee9208;
  transform: scale(1.05);
}

/* Image */
.small-card-img img {
  width: 45px;
  height: 45px;
  object-fit: contain;

  transition: filter 0.35s ease;
}

.small-card:hover .small-card-img img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(88%) saturate(500%) hue-rotate(5deg);
}

/* Content */
.small-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

/* Title */
.small-card-content-title {
  color: var(--color-grey-34, #565656);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;

  transition: color 0.3s ease;
}

/* Description */
.small-card-content-description {
  color: var(--color-grey-50, #808080);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;

  transition: color 0.3s ease;
}

.small-card:hover .small-card-content-title,
.small-card:hover .small-card-content-description {
  color: #fff;
}
/* Small Card */

.pet-doctors-swiper-container {
  padding: 16px 15px;
}

.pet-doctors-swiper {
  margin: 48px 0px;
  width: 100%;
}

.pet-doctor-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}

.pet-doctor-card-img {
  width: 100%;
  height: 377px;
}
.pet-doctor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pet-doctor-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pet-doctor-card-info-name {
  color: var(--itvet-ir-tundora, var(--color-grey-26, #424242));

  /* itvet.ir/Kalameh/Regular */

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-19_2, 19.2px); /* 120% */
  text-align: center;
}

.pet-doctors-swiper .swiper-slide .pet-doctor-card-info-specialty {
  color: var(--itvet-ir-tundora, var(--color-grey-26, #797575));

  /* itvet.ir/Kalameh/Regular */

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-19_2, 19.2px); /* 120% */
  text-align: center;
}

.pet-doctors-swiper .swiper-slide-center .pet-doctor-card {
  background-color: #f29d1c;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(242, 157, 28, 0.3);
}

.pet-doctors-swiper .swiper-slide-center .pet-doctor-card-info-name {
  color: white;
}

.pet-doctors-swiper .swiper-slide-center .pet-doctor-card-info-specialty {
  color: white;
}

/* pet-doctor-card-info-specialty */

/* footer */

.footer {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.footer-background {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fcd12a 0%, #f4ab08 100%);

}

.footer .dog-background {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 48px;
}

.custom-btn {
  font-family: KalamehWeb;
  outline: unset;
  border: unset;
  padding: 8px 21px;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  background: #f29d1c;
  background: linear-gradient(90deg, #f29d1c 0, #fbc048 100%);
  border-radius: 22px;
  color: #fff;
  box-shadow: rgba(242, 157, 29, 0.5) 0 2px 8px 0;
  font-weight: 500;
}

/* لینک‌ها */
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 45px;
}

.footer-links ul {
  list-style: disc;
}

.footer-links li {
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li:hover {
  transform: translateX(-5px);
}

/* اطلاعات */
.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* پایین فوتر */
.footer-bottom {
display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.designer-btn {
  background: #f5b300;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.designer-btn:hover {
  opacity: 0.8;
}

.footer-nemads {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nemad-item {
  width: 40px !important;
  height: 40px !important;
}

.nemad-item img {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  .footer {
    height: auto;
  }

  .footer-links > *,
  .footer-info > *,
  .footer-bottom > * {
    width: 100%;
  }

.footer-bottom img
 {
    width: 32px;
    height: 18px;
}

  .footer-content {
    max-width: 100%;
    width: 100%;
    padding: 48px;
  }
  .footer-background {
    display: block;
  }

  .footer .dog-background {
    display: none;
  }
}

/* footer */

@property --btn-percent {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 95%;
}

.blut-custom-btn {
  outline: unset;
  border: unset;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  padding: 9px 16px;
  font-family: "KalamehWeb";
  border-radius: 8px;
  background: linear-gradient(180deg, #f29d1c 0%, #f29d1c var(--btn-percent), #f29c1c8a 110%);
  color: var(--blue-50, #ecf8ff);
  box-shadow:
    0 2px 2px 0 #f29d1c,
    0 6px 8px -2px #f29d1c;
  transition:
    --btn-percent 240ms ease,
    box-shadow 400ms ease;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.blut-custom-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(180deg, #f29d1c 0%, #f29d1c 20%, #f29d1c 75%, #f29d1c 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  pointer-events: none;
}

.blut-custom-btn:hover {
  --btn-percent: 8%;
  box-shadow:
    0 1px 8px 2px #f29d1c,
    0 6px 8px -2px #f29d1c;
}

.grey-custom-btn {
  border-radius: 11px;
  background: linear-gradient(180deg, #f0f4f9 0%, #dce0ec 100%);
  box-shadow: 0 2px 8px 0 rgba(255, 255, 255, 0.48) inset;
  min-width: 123px;
  color: var(--grey-500, #66687a);
  text-align: right;
  font-family: "KalamehWeb";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 9px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  border-radius: 8px;
}

.grey-custom-btn:before {
  background: linear-gradient(180deg, #fff 0%, #eaedf4 36.18%, #cdd3e6 88.48%, #acb7d4 100%);
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.02),
    0 6px 8px -2px rgba(0, 0, 0, 0.06);
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  pointer-events: none;
}

/* Blu Btn */

/* Inputs Styles */
.input-half-fields {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 500px) {
  .input-half-fields {
    flex-direction: column;
  }
  .input-field {
    width: 100%;
  }
}

.input-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-field .input-field-label {
  color: var(--grey-700, #4a4a5a);
  text-align: right;
  font-family: "KalamehWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 150% */
}

.input-field .input-field-label span {
  color: #d0324a;
  font-family: "KalamehWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.input-field input[type="text"],
.input-field input[type="password"],
.input-field input[type="email"],
.input-field input[type="tel"],
.input-field input[type="number"] {
  color: var(--grey-700, #4a4a5a);
  text-align: right;
  font-family: "KalamehWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */

  padding: 12px;
  border-radius: var(--Border-Radius-8px, 8px);
  border: 1.5px solid var(--grey-200, #cdd3e6);
  background: #fff;
  transition: all 0.2s ease-in-out;
  outline: none;
}

.input-field input[type="email"],
.input-field input[type="tel"] {
  direction: ltr;
  text-align: left;
}

.input-field input[type="text"]:focus,
.input-field input[type="password"]:focus,
.input-field input[type="email"]:focus,
.input-field input[type="tel"]:focus,
.input-field input[type="number"]:focus,
.input-field input[type="text"]:active,
.input-field input[type="password"]:active,
.input-field input[type="email"]:active,
.input-field input[type="tel"]:active,
.input-field input[type="number"]:active {
  border: 1.5px solid var(--blue-700, #f29d1c);
  background: var(--White-white-50, #fff);
  box-shadow: 0 0 0 2px #f29c1c3f;
}

.input-field input[type="text"]::placeholder,
.input-field input[type="password"]::placeholder,
.input-field input[type="email"]::placeholder,
.input-field input[type="tel"]::placeholder,
.input-field input[type="number"]::placeholder {
  color: var(--grey-400, #8692b4);
  font-family: "KalamehWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}
.input-field input[type="text"]:hover,
.input-field input[type="password"]:hover,
.input-field input[type="tel"]:hover,
.input-field input[type="email"]:hover,
.input-field input[type="number"]:hover {
  border: 1.5px solid var(--blue-700, #f29d1c);
}
.text-area-input {
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 300px;
  padding: 12px;
  border-radius: var(--Border-Radius-8px, 8px);
  border: 1.5px solid var(--grey-200, #cdd3e6);
  background: #fff;
  transition: all 0.2s ease-in-out;
  outline: none;
  color: var(--grey-700, #4a4a5a);
  text-align: right;
  font-family: "KalamehWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}

.text-area-input:focus,
.text-area-input:active {
  border: 1.5px solid var(--blue-700, #f29d1c);
  background: var(--White-white-50, #fff);
  box-shadow: 0 0 0 2px #f29c1c4b;
}

.text-area-input::placeholder {
  color: var(--grey-400, #8692b4);
  font-family: "KalamehWeb";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}
.text-area-input:hover {
  border: 1.5px solid var(--blue-700, #f29d1c);
}

.input-field select {
  padding: 12px;
  border-radius: var(--Border-Radius-8px, 8px);
  border: 1.5px solid var(--grey-200, #cdd3e6);
  background: #fff;
  transition: all 0.2s ease-in-out;
  outline: none;
  font-family: "KalamehWeb";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px; /* 150% */
  appearance: none; /* حذف فلش پیشفرض مرورگر */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%238692b4" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 26px;
}

.input-field select:focus,
.input-field select:active,
.input-field select:hover {
  border: 1.5px solid var(--blue-700, #f29d1c);
  background: var(--White-white-50, #fff);
  box-shadow: 0 0 0 2px #f29d1c;
  outline: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%238692b4" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 26px;
}

.input-field select option {
  font-family: "KalamehWeb";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* Inputs Styles */

.blog-card {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-10px) !important;
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); */
}

.blog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-title {
  color: #565656;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.blog-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--itvet-ir-gray, var(--color-grey-55, #8b8b8b));
  text-align: right;

  font-size: var(--font-size-12, 12px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-18, 18px); /* 150% */
}

.blog-card-description {
  height: 40px;
  color: var(--itvet-ir-gray, var(--color-grey-55, #8b8b8b));
  text-align: right;
  font-size: var(--font-size-12, 12px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-18, 18px);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-action {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.blog-card-action button {
  outline: unset;
  border: unset;
  background: linear-gradient(90deg, #f29d1c 0%, #fbc048 100%);
  box-shadow: 0 2px 8px rgba(242, 157, 29, 0.5);
  color: #fff;

  padding: 8px 24px;
  border-radius: 16px;
  font-family: KalamehWeb;
  text-align: right;
  font-size: var(--font-size-12, 12px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-18, 18px);
  cursor: pointer;
}

@media (max-width: 768px) { 
.blog-card-action button {
padding: 8px 6px;
}
.footer-bottom
 {
    flex-direction: column;
}
}


/* ==================== Pagination Styles ==================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination-item {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #333333;
  font-family: "KalamehWeb", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination-item:hover {
  border-color: #f29d1c;
  color: #f29d1c;
}

.pagination-item.active {
  background-color: #f29d1c;
  color: #ffffff;
  border-color: #f29d1c;
  font-weight: 600;
}

.pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border-color: #e0e0e0;
  color: #999999;
}

.pagination-item.disabled:hover {
  border-color: #e0e0e0;
  color: #999999;
}

.pagination-prev,
.pagination-next {
  min-width: 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.pagination-prev.disabled,
.pagination-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border-color: #e0e0e0;
  color: #999999;
}

/* Accordion nested Menu */

/* آکاردئون */
.btn-see-all .cd-accordion {
  /* padding: 0;
  margin: 0; */
  list-style: none; /* حذف بولت‌های ul */
  background-color: white;
}

.btn-see-all .cd-accordion ul,
.btn-see-all .cd-accordion li {
  padding: 0;
  margin: 0;
  list-style: none; /* هیچ استایل برای ul/li */
}

/* زیرآیتم‌ها */
.btn-see-all .cd-accordion__sub {
  display: none;
  overflow: hidden;
}

.btn-see-all .cd-accordion__sub--is-visible {
  display: block;
}

.btn-see-all .cd-accordion__label {
  padding: 16px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--Brand-Colors-Dark-Text, #1f1f1f);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.btn-see-all .cd-accordion__item {
  user-select: none;
}

.btn-see-all .cd-accordion__input {
  position: absolute;
  opacity: 0;
}

.btn-see-all .cd-accordion__label .accordion-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.btn-see-all .cd-accordion__input:checked + .cd-accordion__label .accordion-icon {
  transform: rotate(90deg);
}

.btn-see-all .cd-accordion__input:checked ~ .cd-accordion__sub {
  display: block;
}

/* Accordion nested Menu */

.social-network a {
  font-size: 24px;
  color: var(--blue-700, #f29d1c);
}

.custom-section {
  position: relative;
}
.about-section {
  position: relative;
  overflow: hidden;
}

.right-top-panjool {
  position: absolute;
  top: 20px;
  right: 10px;
}

.right-down-panjool {
  position: absolute;
  top: 160px;
  right: 70px;
}
.right-top-panjool-footer {
  position: absolute;
  top: 0px;
  right: -10px;
}

.right-down-panjool-footer {
  position: absolute;
  top: 200px;
  right: 150px;
  z-index: 1000000;
}

@media (max-width: 768px) {
  .right-top-panjool-footer {
    display: none;
  }

  .right-down-panjool-footer {
    display: none;
  }
}

.left-panjool-custom-one {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: -1;
}

.left-panjool-custom-two {
  position: absolute;
  top: 100px;
  left: -30px;
}

.left-panjool-custom-three {
  position: absolute;
  top: 0px;
  left: 100px;
  z-index: -1;
}

.left-panjool-custom-four {
  position: absolute;
  top: 180px;
  left: 80px;
}
.left-panjool-custom-five {
  position: absolute;
  top: 40px;
  left: 320px;
  z-index: -1;
}

.left-panjool-custom-six {
  position: absolute;
  top: 110px;
  left: 300px;
}

.last-blogs-swiper-btn,
.pet-doctors-swiper-btn {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.last-blogs-swiper-btn svg,
.pet-doctors-swiper-btn svg {
  width: 20px !important;
  height: 20px !important;
  color: black;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
margin-bottom: 34px;
}

.footer-logo img {
  object-fit: cover;
}

.footer-logo-mobile {
  display: none;
}

@media (max-width: 768px) {
  .footer-logo {
    display: none;
  }
  .footer-logo-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-logo-mobile img {
    transform: scale(0.7);
    object-fit: cover;
  }
}

.footer-collection {
  display: flex;
  align-items: center;
  justify-content: space-between;
flex-direction: column-reverse;
    gap: 12px;
}

.social-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.more {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  top: -60px;
}

@media (max-width: 768px) {
  .more {
    position: relative;
    top: 0px;
  }

  .footer-collection {
    gap: 24px;
  }
}

.close-btn {
  font-size: 24px;
  color: white;
}

.icons-footer-container {
display: flex;
flex-direction: column;
gap: 30px;
    margin-bottom: 40px;
}


.social-item-wrapper,
.footer-nemads
 {
    margin-top: 12px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

i.far.fa-thumbs-up
 {
    font-size: 20px;
    color: green;
}

i.far.fa-thumbs-down
 {
    font-size: 20px;
    color: #de7b7b;
}