/**
* Template Name: Nova
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
@font-face {
  font-family: "vazir";
  src: url("../fonts/vazir.ttf") format("truetype");
}

@font-face {
  font-family: "iransans";
  src: url("../fonts/iransans.ttf") format("truetype");
}

@font-face {
  font-family: "bkoodak";
  src: url("../fonts/bkoodak.ttf") format("truetype");
}

@font-face {
  font-family: "nas";
  src: url("../fonts/nas.ttf") format("truetype");
}

@font-face {
  font-family: "b_mitra_0";
  src: url("../fonts/B Mitra_0.ttf") format("truetype");
}

@font-face {
  font-family: "b_ziba_0";
  src: url("../fonts/B Ziba_0.ttf") format("truetype");
}

@font-face {
  font-family: "far_khodkar";
  src: url("../fonts/Far_khodkar.ttf") format("truetype");
}

@font-face {
  font-family: "far_nazanin";
  src: url("../fonts/Far_Nazanin.ttf") format("truetype");
}

@font-face {
  font-family: "persian-khat-khati-02";
  src: url("../fonts/persian-khat-khati-02.ttf") format("truetype");
}

@font-face {
  font-family: "shams";
  src: url("../fonts/Shams.ttf") format("truetype");
}

@font-face {
  font-family: "yekan";
  src: url("../fonts/Yekan.ttf") format("truetype");
}

:root {
  --site-font: "vazir";
  --heading-site-font: "vazir";
  --nav-site-font: "vazir";

  --default-font: var(--site-font), "Roboto", system-ui, -apple-system,
    "Segoe UI", Arial, sans-serif;

  --heading-font: var(--heading-site-font), "Montserrat", sans-serif;
  --nav-font: var(--nav-site-font), "Raleway", sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: ...;
  --default-color: ...;
  --heading-color: ...;
  --accent-color: ...;
  --surface-color: ...;
  --contrast-color: ...;

  --nav-color: ...;
  --nav-hover-color: ...;
  --nav-mobile-background-color: ...;
  --nav-dropdown-background-color: ...;
  --nav-dropdown-color: ...;
  --nav-dropdown-hover-color: ...;
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6fcfe;
  --surface-color: #ffffff;
}

.dark-background {
  --default-color: #ffffff;
  --heading-color: #ffffff;

  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--header-bg-color) !important;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  width: calc(100% - 40px);
  margin: 15px auto 0;
  padding: 14px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px var(--shadow-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
  padding: 6px;
  border-radius: 14px;
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 4px 14px var(--shadow-color);
  object-fit: contain;
}

.header .logo h1 {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 12px 32px var(--shadow-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 6px;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
    border-radius: 16px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 12px;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover > a {
    color: var(--nav-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 14px;
    z-index: 99;
    box-shadow: 0px 12px 30px var(--shadow-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    overflow: hidden;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-radius: 0;
    background: transparent;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 15px 15px 15px;
    padding: 12px 0;
    margin: 0;
    border-radius: 18px;
    background-color: var(--surface-color) !important;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 16px 40px var(--shadow-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 12px;
    margin: 4px 10px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px 0;
    margin: 8px 14px;
    background-color: var(--header-bg-color) !important;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 14px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: var(--header-bg-color) !important;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background-color: var(--header-bg-color) !important;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--surface-color);
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 40px auto 20px;
  padding: 0 25px;
  font-size: 14px;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 24px;
  box-shadow: 0 12px 35px var(--shadow-color);
  overflow: hidden;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 42px;
  margin-right: 10px;
  padding: 6px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  box-shadow: 0 4px 14px var(--shadow-color);
  object-fit: contain;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  line-height: 2;
}

.footer .social-links a {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 16px;
  margin-right: 10px;
  box-shadow: 0 5px 12px
    color-mix(in srgb, var(--accent-color), transparent 65%);
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 85%, black 15%);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.footer h4::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--accent-color);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  color: var(--accent-color);
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1.5;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  transform: translateX(-4px);
}

.footer .footer-contact p {
  margin-bottom: 8px;
  line-height: 1.8;
}

.footer .copyright {
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  margin-top: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 7px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 575px) {
  .footer {
    width: calc(100% - 30px);
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .footer .footer-top {
    padding-top: 35px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 25px;
  z-index: 99999;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), white 20%);
  border-radius: 14px;
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 65%);
  transition: all 0.4s ease;
}

.scroll-top i {
  font-size: 22px;
  line-height: 0;
  color: var(--contrast-color);
}

.scroll-top:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px
    color-mix(in srgb, var(--accent-color), transparent 55%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 35px auto 25px;
  padding: 70px 25px 55px;
  position: relative;
  overflow: hidden;
  color: var(--default-color);
  background-color: var(--surface-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 24px;
  box-shadow: 0 12px 35px var(--shadow-color);
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 22%);
  pointer-events: none;
}

.page-title .container {
  position: relative;
  z-index: 1;
}

.page-title h1 {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.page-title .breadcrumbs ol li a {
  color: var(--accent-color);
  transition: 0.3s;
}

.page-title .breadcrumbs ol li a:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

/*--------------------------------------------------------------
# Page Title Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .scroll-top {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .page-title {
    width: calc(100% - 30px);
    margin: 25px auto 20px;
    padding: 50px 18px 40px;
    border-radius: 18px;
  }

  .page-title h1 {
    font-size: 25px;
  }

  .page-title .breadcrumbs ol {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 70px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

section .container,
.section .container {
  position: relative;
  z-index: 1;
}

.light-background .container,
.dark-background .container {
  padding: 35px 25px;
  border-radius: 24px;
}

.light-background .container {
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.dark-background .container {
  background-color: color-mix(in srgb, var(--surface-color), transparent 8%);
  box-shadow: 0 12px 32px var(--shadow-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 88%);
}

@media (max-width: 1199px) {
  section,
  .section {
    padding: 60px 0;
    scroll-margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .light-background .container,
  .dark-background .container {
    padding: 25px 18px;
    border-radius: 18px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 45px;
  position: relative;
}

.section-title h2 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 18px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 58px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 999px;
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--accent-color), transparent 65%);
}

.section-title p {
  margin-bottom: 0;
  max-width: 680px;
  margin-inline: auto;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: 1.9;
}

@media (max-width: 767px) {
  .section-title {
    padding-bottom: 35px;
  }

  .section-title h2 {
    font-size: 26px;
    padding-bottom: 16px;
  }

  .section-title p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: calc(100% - 20px);
  max-width: 1500px;
  min-height: 520px;
  height: 68vh;
  margin: 10px auto 20px;
  padding: 90px 0 55px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 24px;
  box-shadow: 0 14px 35px var(--shadow-color);
}

@media (min-width: 1200px) {
  .hero {
    min-height: 560px;
    height: 72vh;
  }

  .hero::after {
    position: absolute;
    content: "";
    inset: 0 auto 0 0;
    width: 48%;
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--background-color), transparent 12%),
        color-mix(in srgb, var(--background-color), transparent 8%)
      ),
      linear-gradient(
        90deg,
        color-mix(in srgb, var(--surface-color), transparent 8%) 0%,
        color-mix(in srgb, var(--surface-color), transparent 30%) 100%
      );
    z-index: 2;
  }
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background-color), transparent 38%) 0%,
    color-mix(in srgb, var(--background-color), transparent 18%) 100%
  );
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.02);
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--heading-color);
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 800;
}

.hero blockquote {
  max-width: 620px;
  margin: 28px 0;
  padding: 16px 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  background: color-mix(in srgb, var(--surface-color), transparent 22%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-right: 4px solid var(--accent-color);
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--shadow-color);
  backdrop-filter: blur(8px);
}

.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), white 18%);
  border-radius: 14px;
  box-shadow: 0 9px 22px
    color-mix(in srgb, var(--accent-color), transparent 68%);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 13px 28px
    color-mix(in srgb, var(--accent-color), transparent 58%);
}

.hero .btn-watch-video {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  margin-right: 16px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--surface-color), transparent 18%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.hero .btn-watch-video i {
  margin-left: 8px;
  color: var(--accent-color);
  font-size: 30px;
  line-height: 0;
  transform: rotate(180deg);
  transition: 0.3s;
}

.hero .btn-watch-video:hover {
  color: var(--heading-color);
  background: color-mix(in srgb, var(--surface-color), transparent 8%);
  transform: translateY(-3px);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

/*--------------------------------------------------------------
# Hero Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero {
    min-height: 500px;
    height: 65vh;
    padding: 80px 0 50px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .hero {
    width: calc(100% - 14px);
    min-height: 480px;
    height: 62vh;
    margin: 8px auto 18px;
    padding: 80px 0 45px;
    border-radius: 20px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.5rem;
  }

  .hero blockquote {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    width: calc(100% - 10px);
    min-height: 430px;
    height: 58vh;
    margin: 5px auto 15px;
    padding: 70px 0 35px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.5;
  }

  .hero blockquote {
    margin: 22px 0;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }

  .hero .btn-get-started {
    padding: 11px 21px;
    border-radius: 12px;
  }

  .hero .btn-watch-video {
    margin-right: 10px;
    padding: 9px 13px;
    border-radius: 12px;
  }

  .hero .btn-watch-video i {
    font-size: 26px;
  }
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  position: relative;
}

.why-us .img-bg {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 12px 30px var(--shadow-color);
}

.why-us .img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.why-us .img-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background-color), transparent 82%),
    color-mix(in srgb, var(--background-color), transparent 35%)
  );
  pointer-events: none;
}

.why-us .img-bg:hover img {
  transform: scale(1.04);
}

.why-us .slides {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 24px;
  box-shadow: 0 12px 30px var(--shadow-color);
}

.why-us .swiper {
  width: 100%;
  margin: 55px 85px 45px;
  overflow: hidden;
}

.why-us .swiper-wrapper {
  height: auto;
}

.why-us .swiper-slide {
  height: auto;
}

.why-us .swiper-slide > * {
  position: relative;
  z-index: 1;
}

.why-us h3 {
  margin-bottom: 16px;
  color: var(--heading-color);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
}

.why-us h4 {
  margin-bottom: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

.why-us p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.95;
}

.why-us .swiper-button-prev,
.why-us .swiper-button-next {
  top: auto;
  bottom: 45px;
  width: 40px;
  height: 40px;
  margin: 0;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-us .swiper-button-prev {
  left: 28px;
}

.why-us .swiper-button-next {
  right: 28px;
}

.why-us .swiper-button-prev::after,
.why-us .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.why-us .swiper-button-prev:hover,
.why-us .swiper-button-next:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px
    color-mix(in srgb, var(--accent-color), transparent 65%);
}

.why-us .swiper-pagination {
  position: relative;
  inset: auto;
  margin-top: 28px;
  text-align: center;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 65%);
  transition: all 0.3s ease;
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background-color: var(--accent-color);
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

/*--------------------------------------------------------------
# Why Us Responsive
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .why-us .img-bg,
  .why-us .slides {
    min-height: 420px;
  }

  .why-us .swiper {
    margin: 45px 65px 40px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 991px) {
  .why-us .img-bg {
    min-height: 340px;
    border-radius: 20px;
  }

  .why-us .slides {
    min-height: 380px;
    margin-top: 18px;
    border-radius: 20px;
  }

  .why-us .swiper {
    margin: 40px 35px 35px;
  }

  .why-us h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .why-us .img-bg {
    min-height: 280px;
    border-radius: 16px;
  }

  .why-us .slides {
    min-height: 350px;
    margin-top: 14px;
    border-radius: 16px;
  }

  .why-us .swiper {
    margin: 30px 22px 25px;
  }

  .why-us h3 {
    font-size: 21px;
  }

  .why-us h4 {
    font-size: 16px;
  }

  .why-us p {
    font-size: 14px;
    line-height: 1.85;
  }

  .why-us .swiper-pagination {
    margin-top: 22px;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
  padding: 28px 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
  transition: all 0.35s ease;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-color), transparent 97%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 92%) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.services .service-item:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 16px 34px var(--shadow-color);
}

.services .service-item:hover::before {
  opacity: 1;
}

.services .service-item > * {
  position: relative;
  z-index: 1;
}

.services .service-item .icon {
  width: 64px;
  height: 64px;
  margin-left: 18px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  border-radius: 18px;
  transition: all 0.35s ease;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  line-height: 0;
  transition: 0.3s ease;
}

.services .service-item:hover .icon {
  background: var(--accent-color);
  box-shadow: 0 10px 22px
    color-mix(in srgb, var(--accent-color), transparent 68%);
}

.services .service-item:hover .icon i {
  color: var(--contrast-color);
}

.services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.6;
  transition: 0.3s ease;
}

.services .service-item .description {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.9;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
}

.services .service-item .readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s ease;
  font-weight: 700;
  font-size: 14px;
}

.services .service-item .readmore i {
  margin-right: 0;
  font-size: 13px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.services .service-item:hover .title,
.services .service-item:hover .readmore {
  color: var(--accent-color);
}

.services .service-item:hover .readmore i {
  transform: rotate(180deg) translateX(-4px);
}

@media (max-width: 767px) {
  .services .service-item {
    padding: 22px 18px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .services .service-item .icon {
    width: 56px;
    height: 56px;
    margin-left: 14px;
    border-radius: 16px;
  }

  .services .service-item .icon i {
    font-size: 28px;
  }

  .services .service-item .title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .services .service-item .description {
    font-size: 14px;
    line-height: 1.8;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  width: calc(100% - 20px);
  max-width: 1500px;
  margin: 10px auto 20px;
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 14px 34px var(--shadow-color);
}

.call-to-action img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.03);
}

.call-to-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background-color), transparent 42%) 0%,
    color-mix(in srgb, var(--background-color), transparent 18%) 100%
  );
}

.call-to-action::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: color-mix(in srgb, var(--surface-color), transparent 78%);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action .content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.call-to-action h3 {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
}

.call-to-action p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.95;
}

.call-to-action .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  padding: 12px 28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), white 18%);
  border-radius: 14px;
  box-shadow: 0 10px 24px
    color-mix(in srgb, var(--accent-color), transparent 68%);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

.call-to-action .cta-btn:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px
    color-mix(in srgb, var(--accent-color), transparent 58%);
}

@media (max-width: 991px) {
  .call-to-action {
    width: calc(100% - 14px);
    margin: 8px auto 18px;
    padding: 45px 0;
    border-radius: 20px;
  }

  .call-to-action h3 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .call-to-action {
    width: calc(100% - 10px);
    margin: 5px auto 15px;
    padding: 38px 0;
    border-radius: 16px;
  }

  .call-to-action h3 {
    font-size: 22px;
  }

  .call-to-action p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .call-to-action .cta-btn {
    padding: 11px 22px;
    font-size: 13px;
    border-radius: 12px;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  position: relative;
  max-width: 1320px;
  margin: 80px auto;
  padding: 60px 40px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface-color), white 18%) 0%,
    var(--surface-color) 100%
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 32px;
  box-shadow: 0 18px 50px var(--shadow-color);
  overflow: hidden;
}

/* عنوان سکشن */
.features h3 {
  margin-bottom: 22px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

/* آیتم‌های داخل سکشن */
.features .icon-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 16px;
  box-shadow: 0 8px 22px var(--shadow-color);
  transition: all 0.3s ease;
}

.features .icon-list:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 78%);
  box-shadow: 0 12px 28px var(--shadow-color);
}

.features .icon-list i {
  margin-left: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--accent-color);
  flex: 0 0 auto;
  transition: color 0.3s ease;
}

.features .icon-list span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: 1.8;
}

/* تصویر گوشی */
.features .phone-wrap {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.features .phone-wrap img {
  width: 300px;
  max-width: 100%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.1));
}

/* باکس داخلی */
.features .details {
  margin-top: 56px;
  padding: 72px 40px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--default-color), transparent 98%) 0%,
    color-mix(in srgb, var(--default-color), transparent 96%) 100%
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 24px;
  box-shadow: 0 14px 34px var(--shadow-color);
  overflow: hidden;
}

.features .details .container {
  position: relative;
  z-index: 2;
}

.features .details h4 {
  margin-bottom: 16px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.features .details p {
  margin-bottom: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 15px;
  line-height: 1.95;
}

.features .details .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid color-mix(in srgb, var(--accent-color), white 18%);
  border-radius: 14px;
  box-shadow: 0 10px 24px
    color-mix(in srgb, var(--accent-color), transparent 68%);
  transition: all 0.35s ease;
}

.features .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px
    color-mix(in srgb, var(--accent-color), transparent 58%);
}

/* Responsive */
@media (max-width: 992px) {
  .features {
    margin: 60px 20px;
    padding: 45px 24px;
    border-radius: 24px;
  }

  .features .phone-wrap {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 22px;
    text-align: center;
  }

  .features .phone-wrap img {
    width: min(320px, 100%);
  }

  .features .details {
    margin-top: 40px;
    padding: 56px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .features {
    margin: 40px 15px;
    padding: 35px 18px;
    border-radius: 18px;
  }

  .features h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .features .icon-list {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .features .icon-list i {
    font-size: 20px;
  }

  .features .icon-list span {
    font-size: 14px;
  }

  .features .details {
    padding: 44px 18px;
    border-radius: 16px;
  }

  .features .details h4 {
    font-size: 22px;
  }

  .features .details p {
    font-size: 14px;
    line-height: 1.85;
  }

  .features .details .btn-get-started {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 12px;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 14px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.recent-posts .post-box:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 17px 35px var(--shadow-color);
}

.recent-posts .post-box .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 16 / 9;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.recent-posts .post-box .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recent-posts .post-box .post-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    color-mix(in srgb, var(--background-color), transparent 78%)
  );
  pointer-events: none;
}

.recent-posts .post-box .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  font-size: 13px;
}

.recent-posts .post-box .meta .post-date {
  color: var(--accent-color);
  font-weight: 600;
}

.recent-posts .post-box .meta .post-author {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-weight: 400;
}

.recent-posts .post-box .post-title {
  margin: 10px 0 0;
  color: var(--heading-color);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.recent-posts .post-box p {
  margin: 10px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.9;
}

.recent-posts .post-box .readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}

.recent-posts .post-box .readmore i {
  margin-right: 0;
  color: var(--accent-color);
  font-size: 15px;
  line-height: 0;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.recent-posts .post-box:hover .post-title,
.recent-posts .post-box:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.07);
}

.recent-posts .post-box:hover .readmore i {
  transform: rotate(180deg) translateX(-4px);
}

@media (max-width: 767px) {
  .recent-posts .post-box {
    padding: 11px;
    border-radius: 18px;
  }

  .recent-posts .post-box .post-img {
    border-radius: 13px;
  }

  .recent-posts .post-box .meta {
    margin-top: 14px;
    font-size: 12px;
  }

  .recent-posts .post-box .post-title {
    font-size: 17px;
  }

  .recent-posts .post-box p {
    font-size: 13px;
    line-height: 1.8;
  }

  .recent-posts .post-box .readmore {
    padding-top: 15px;
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding: 28px 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 24px;
  box-shadow: 0 12px 30px var(--shadow-color);
}

.about .content h3 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
}

.about .content p {
  margin: 0 0 22px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 15px;
  line-height: 1.95;
}

.about .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  border-radius: 16px;
  font-weight: 400;
  line-height: 1.9;
  transition: all 0.3s ease;
}

.about .content ul li:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 10px 22px var(--shadow-color);
  transform: translateY(-2px);
}

.about .content ul i {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .about .content {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .about .content h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .about .content p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .about .content ul li {
    padding: 12px 13px;
    border-radius: 14px;
    gap: 10px;
  }

  .about .content ul i {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 10px;
  }
}
/*--------------------------------------------------------------
# Service Cards Section
--------------------------------------------------------------*/
.service-cards .card-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-cards .card-item:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 18px 36px var(--shadow-color);
}

.service-cards .card-item .card-bg {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.service-cards .card-item .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent 35%,
    color-mix(in srgb, var(--background-color), transparent 78%) 100%
  );
  pointer-events: none;
}

.service-cards .card-item .card-bg img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-cards .card-item:hover .card-bg img {
  transform: scale(1.06);
}

.service-cards .card-item .card-body {
  padding: 22px 22px 24px;
}

.service-cards .card-item h4 {
  margin-bottom: 12px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service-cards .card-item p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  font-size: 14px;
  line-height: 1.95;
}

.service-cards .card-item:hover h4 {
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .service-cards .card-item {
    border-radius: 18px;
  }

  .service-cards .card-item .card-bg {
    min-height: 210px;
    border-radius: 14px 14px 0 0;
  }

  .service-cards .card-item .card-body {
    padding: 18px 16px 20px;
  }

  .service-cards .card-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-cards .card-item p {
    font-size: 13px;
    line-height: 1.85;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 24px 14px;
  padding: 24px 22px;
  text-align: center;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 18px 36px var(--shadow-color);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 14px;
}

.testimonials .testimonial-item .stars i {
  margin: 0 1px;
  color: var(--warning-color);
  font-size: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border: 4px solid var(--background-color);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px var(--shadow-color);
}

.testimonials .testimonial-item h3 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.testimonials .testimonial-item h4 {
  margin: 0 0 12px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 14px;
  font-weight: 500;
}

.testimonials .testimonial-item p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
  font-size: 14px;
  line-height: 1.9;
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  position: relative;
  margin-top: 18px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 4px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.35;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 8px;
  }

  .testimonials .testimonial-item {
    margin: 18px 10px;
    padding: 22px 18px;
    border-radius: 18px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.08);
  }
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 22px 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.service-details .service-box + .service-box {
  margin-top: 22px;
}

.service-details .service-box h4 {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.service-details .services-list {
  background-color: transparent;
}

.service-details .services-list a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  margin-top: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  transition: all 0.3s ease;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  margin-left: 8px;
  color: var(--accent-color);
  font-size: 16px;
  transform: rotate(180deg);
}

.service-details .services-list a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color), white 14%);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 76%);
}

.service-details .download-catalog a {
  display: flex;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  transition: color 0.3s ease;
}

.service-details .download-catalog a:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  margin-left: 8px;
  color: var(--accent-color);
  font-size: 22px;
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}



.service-details .services-img {
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
}

.service-details h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.service-details p {
  font-size: 15px;
  line-height: 1.95;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.service-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
}

.service-details ul i {
  margin-right: 0;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-details .service-box {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .service-details .service-box + .service-box {
    margin-top: 16px;
  }

  .service-details .service-box h4 {
    font-size: 18px;
  }

  .service-details .services-list a {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .service-details .help-box {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .service-details h3 {
    font-size: 22px;
  }

  .service-details p,
  .service-details ul {
    font-size: 14px;
  }
}
.service-details .contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-details .contact-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.service-details .contact-list i {
  color: var(--accent-color);
  font-size: 18px;
}

.service-details .contact-list a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.service-details .contact-list a:hover {
  color: var(--accent-color);
}
/*----------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 auto 24px;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 999px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 88%);
}

.portfolio .portfolio-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  display: block;
  width: 100%;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 16px 16px 16px 54px;
  background: color-mix(in srgb, var(--background-color), transparent 12%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px var(--shadow-color);
  transition: all 0.3s ease;
}

.portfolio .portfolio-item .portfolio-info h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
}

.portfolio .portfolio-item .portfolio-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 14px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  transition: color 0.3s ease, transform 0.3s ease;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  left: 48px;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters {
    gap: 8px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 12px;
    font-size: 13px;
  }

  .portfolio .portfolio-item .portfolio-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 14px 14px 48px;
    border-radius: 16px;
  }

  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 20px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  position: relative;
  margin-top: 18px;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  padding: 26px 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.portfolio-details .portfolio-info h3 {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 26px;
}

.portfolio-details .portfolio-description h2 {
  margin-bottom: 18px;
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  line-height: 1.95;
}
.portfolio-description p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  height: 100%;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.team .team-member:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 18px 36px var(--shadow-color);
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.team .team-member:hover .member-img img {
  transform: scale(1.04);
}

.team .team-member .social {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
}

.team .team-member .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), transparent 18%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 17px;
  line-height: 1;
}

.team .team-member .member-info {
  padding: 22px 18px 24px;
  text-align: center;
}

.team .team-member .member-info h4 {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.team .team-member .member-info span {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  font-weight: 400;
}

.team .team-member:hover .social {
  opacity: 1;
  transform: translateY(-2px);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 60%;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 18%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact .container,
.contact .row {
  position: relative;
  z-index: 1;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 18px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.contact .info-item + .info-item {
  margin-top: 18px;
}

.contact .info-item i {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: 0;
  border-radius: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .info-item h3 {
  margin-bottom: 4px;
  padding: 0;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.contact .info-item p {
  margin-bottom: 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 14px;
  line-height: 1.9;
}

.contact .php-email-form {
  height: 100%;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  padding: 12px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 18%
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 14px;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 8%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact button[type="submit"] {
  padding: 11px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 22px
    color-mix(in srgb, var(--accent-color), transparent 78%);
}

.contact button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 18%);
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  height: 100%;
  overflow: hidden;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.blog-posts article:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  box-shadow: 0 18px 36px var(--shadow-color);
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -22px -22px 16px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.blog-posts .post-img img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.blog-posts article:hover .post-img img {
  transform: scale(1.04);
}

.blog-posts .post-category {
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.blog-posts .title {
  margin: 0 0 18px;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  margin-left: 14px;
  border-radius: 50%;
}

.blog-posts .post-author {
  margin-bottom: 4px;
  font-weight: 600;
}

.blog-posts .post-date {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0;
}

.blog-pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

.blog-author .social-links a:hover {
  color: var(--accent-color);
}

.blog-author p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: italic;
}
/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.blog-details .post-img {
  margin: -22px -22px 18px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.blog-details .post-img img {
  width: 100%;
  display: block;
}

.blog-details .title {
  margin: 24px 0 20px;
  padding: 0;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-details .content blockquote {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  padding: 28px 24px 28px 26px;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 18px;
  text-align: center;
}

.blog-details .content blockquote p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.8;
}

.blog-details .content blockquote::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 16px;
  width: 3px;
  border-radius: 999px;
  background-color: var(--accent-color);
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-details .meta-top ul li + li {
  padding-right: 0;
}

.blog-details .meta-top i {
  margin-left: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  line-height: 0;
}

.blog-details .meta-top a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 14px;
  margin-top: 18px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  display: inline;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats,
.blog-details .meta-bottom .tags {
  display: inline;
  padding: 0;
  font-size: 14px;
  list-style: none;
}

.blog-details .meta-bottom .cats {
  padding: 0 0 0 18px;
}

.blog-details .meta-bottom .cats li,
.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px;
}

.blog-author .author-container {
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.blog-author img {
  max-width: 120px;
  margin-left: 18px;
  border-radius: 18px;
}

.blog-author h4 {
  margin-bottom: 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  margin-left: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: color 0.3s ease;
}

/*--------------------------------------------------------------
  # Blog Comments Section
  --------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: 700;
}

.blog-comments .comment {
  position: relative;
  margin-top: 30px;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.blog-comments .comment .comment-img {
  margin-left: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
  border-radius: 50%;
}

.blog-comments .comment h5 {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
}

.blog-comments .comment h5 a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}
/*--------------------------------------------------------------
  # Comment Form Section
  --------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  margin-top: 30px;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
  border-radius: 22px;
  box-shadow: 0 10px 26px var(--shadow-color);
}

.comment-form form h4 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input,
.comment-form form textarea {
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form form input:focus,
.comment-form form textarea:focus {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.comment-form form input::placeholder,
.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  height: 120px;
}

.comment-form form .form-group {
  margin-bottom: 22px;
}

.comment-form form .btn-primary {
  padding: 10px 20px;
  border: 0;
  border-radius: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px;
}

.widget-title {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 10px;
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
}

.widget-title::before,
.widget-title::after {
  content: "";
  position: absolute;
  bottom: 1px;
  display: block;
  height: 2px;
  border-radius: 999px;
}

.widget-title::before {
  left: 0;
  right: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.widget-title::after {
  right: 0;
  width: 40px;
  background: var(--accent-color);
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  position: relative;
  padding: 3px 10px 3px 56px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-widget form:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.search-widget form input[type="text"] {
  width: 100%;
  padding: 10px 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--default-color);
}

.search-widget form button {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 16px;
  margin: 0;
  border: 0;
  border-radius: 14px 0 0 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 16px;
  line-height: 0;
  transition: background-color 0.3s ease;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form button i {
  line-height: 0;
}

.categories-widget ul,
.tags-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: color 0.3s ease;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-right: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-left: 15px;
  border-radius: 14px;
}

.recent-posts-widget .post-item h4 {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  font-style: italic;
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  display: inline-block;
  margin: 0 6px 8px 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  cursor: pointer;
  color: #ccc;
  font-size: 20px;
  transition: color 0.2s ease;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: color-mix(in srgb, var(--accent-color), #ffd54f 45%);
}

p {
  line-height: 36px;
}

.h_iframe-aparat_embed_frame {
  position: relative;
}

.h_iframe-aparat_embed_frame span {
  display: block;
  padding-top: 57%;
}

.h_iframe-aparat_embed_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
