@font-face {
  font-family: "TheSansPlain";
  src: url("/static/fonts/TheSansPlain.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #551e59;
  --main-color-hover: #6f3d73;
  --bg-color: white;
  --bg-second-color: #f0f0f0;
  --borders: #ccc;
  --text-color: black;
  --font-family: "TheSansPlain", sans-serif;
}

::-moz-selection {
  background: var(--main-color);
  color: white;
}

::selection {
  background: var(--main-color);
  color: white;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-weight: 400;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:hover {
  color: var(--main-color-hover);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.full-page {
  min-height: 100dvh;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--borders);
  padding: 5px;
  border-radius: 15px;
  width: 100%;
}
.card img {
  display: flex;
  border-radius: 10px;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .card-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 1rem 1rem;
}
.card .card-info p {
  font-weight: bold;
}
.card .card-info a {
  display: block;
  text-align: center;
  padding: 7px 12px;
  border: 1px solid var(--main-color);
  border-radius: 7px;
  background-color: var(--main-color);
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.card .card-info a:hover {
  color: var(--main-color);
  background-color: transparent;
}

.info-page {
  width: 80%;
  margin: 2rem auto;
}
.info-page ul,
.info-page ol {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-page .centerd-title {
  text-align: center;
  color: var(--main-color);
}
.info-page .about-card {
  margin: 0 0 2rem;
}

.btn,
button {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: white;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 7px;
  padding: 6px 12px;
  transition: 0.3s;
  font-family: inherit;
}
.btn i,
.btn svg,
button i,
button svg {
  display: flex;
}
.btn:hover,
button:hover {
  background-color: var(--main-color-hover);
  color: white;
}

form {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
form .flex-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
form .input-group .btn {
  min-width: 150px;
}
form .input-group input,
form .input-group textarea,
form .input-group select {
  background: var(--bg-color);
  border: 1px solid var(--borders);
  padding: 12px;
  display: block;
  border-radius: 10px;
  outline: 0;
  transition: 0.3s;
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-family);
}
form .input-group input:focus,
form .input-group textarea:focus,
form .input-group select:focus {
  outline: 0;
  border-color: var(--main-color);
}
form .input-group input:active,
form .input-group textarea:active,
form .input-group select:active {
  border-color: var(--main-color);
}

.custom-form {
  margin: 1rem auto;
  border: 1px solid var(--borders);
  max-width: 400px;
  border-radius: 10px;
}
.custom-form .input-group {
  min-width: 300px;
}

.message {
  display: flex;
  align-items: center;
  position: fixed;
  top: 4rem;
  right: 2rem;
  border-radius: 5px;
  justify-content: space-between;
  background-color: var(--main-color);
  z-index: 99999;
  border: 1px solid var(--main-color);
  color: white;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto;
}
.message div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.message svg {
  width: 20px;
  height: 20px;
  display: flex;
}
.message .remove {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

header {
  position: relative;
}
header.nav-sticky {
  padding-bottom: 4rem;
}
header .topbar {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.3rem 1rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  background-color: var(--main-color);
  justify-content: space-between;
}
header .topbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
header .topbar ul li a {
  font-size: 13px;
  color: white;
}
header nav {
  background: var(--bg-color);
  color: var(--text-color);
  border-bottom: 1px solid var(--borders);
  transition: all 0.3s ease;
}
header nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header nav .container {
  display: flex;
  align-items: center;
  height: 4rem;
  justify-content: space-between;
  padding: 0 2rem;
}
header nav .container .logo {
  font-size: 1.5em;
  font-weight: 600;
  flex: 1;
}
header nav .container .logo a {
  color: var(--main-color);
}
header nav .container .logo a img {
  width: 60px;
  height: 60px;
  display: block;
}
header nav .container .menu ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  position: relative;
}
header nav .container .menu ul li {
  position: relative;
}
header nav .container .menu ul li a {
  color: var(--text-color);
}
header nav .container .menu ul li .arrow {
  font-size: 0.6em;
  margin-right: 5px;
  transition: transform 0.3s;
}
header nav .container .menu ul li.dropdown {
  cursor: pointer;
}
header nav .container .menu ul li.dropdown:hover > a .arrow {
  transform: rotate(180deg);
}
header nav .container .menu ul li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  background: var(--bg-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 6px;
  min-width: 170px;
  gap: 10px;
}
header nav .container .menu ul li.dropdown .dropdown-menu li {
  width: 100%;
}
header nav .container .menu ul li.dropdown .dropdown-menu li a {
  display: block;
  padding: 7px 10px;
  width: 100%;
  color: var(--text-color);
  border-radius: 5px;
}
header nav .container .menu ul li.dropdown .dropdown-menu li a:hover {
  background-color: var(--bg-second-color);
}
header nav .container .menu ul li.dropdown:hover .dropdown-menu, header nav .container .menu ul li.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header nav .container .settings {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: end;
}
header nav .container .settings .btn {
  padding: 5px 12px;
}
header nav .container .settings ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
}
header nav .container .settings ul li a {
  color: var(--text-color);
}
header nav .container .settings svg,
header nav .container .settings i {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  font-size: 20px;
}
header nav .container .settings .menu-icon {
  display: none;
}

footer {
  background: var(--main-color);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  padding: 0.7rem 0;
}

.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/static/images/hero-new.jpg") center/cover no-repeat;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: column;
}
.hero-section .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-section .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-section .hero-content .btn {
  font-size: 1.1rem;
  padding: 0.7rem 2rem;
}
.hero-section .hero-content .hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 40vh;
  }
  .hero-section .hero-content h1 {
    font-size: 1.5rem;
  }
}

.vmg-section {
  background: var(--bg-color);
  padding: 2rem 0;
}
.vmg-section .vmg-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vmg-section .vmg-col {
  background: var(--bg-color);
  border-radius: 10px;
  border: 1px solid var(--borders);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 2rem 1rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 350px;
  align-items: center;
  text-align: center;
}
.vmg-section .vmg-col h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  margin-bottom: 1rem;
  gap: 10px;
}
.vmg-section .vmg-col h2 i {
  display: flex;
}

.about-section {
  padding: 2rem 0;
  text-align: center;
}
.about-section h2 {
  color: var(--main-color);
  margin-bottom: 1rem;
}
.about-section p {
  max-width: 700px;
  margin: 0 auto;
}

.news-section {
  background: var(--bg-color);
  padding: 2rem;
}
.news-section h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 2rem;
}

.projects-section {
  padding: 2rem 0;
}
.projects-section h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 2rem;
}
.projects-section .projects-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.projects-section .projects-list .project-item {
  background: var(--bg-color);
  border: 1px solid var(--borders);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 1.5rem 1rem;
  min-width: 250px;
  max-width: 350px;
}
.projects-section .projects-list .project-item h3 {
  color: var(--main-color);
  text-align: center;
}

.stats-section {
  background: var(--bg-second-color);
  padding: 2rem 0;
}
.stats-section .stats-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-section .stats-col {
  background: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 2rem 1rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  border: 1px solid var(--borders);
}
.stats-section .stats-col .stats-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--main-color);
}
.stats-section .stats-col h3 {
  color: var(--main-color);
  margin-bottom: 1rem;
}
.stats-section .stats-col p {
  font-size: 24px;
  font-weight: bold;
}

.partners-section {
  padding: 2rem 0;
}
.partners-section h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 2rem;
}
.partners-section .brands-swiper {
  padding: 2rem 0;
}
.partners-section .brands-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.partners-section .brands-swiper .swiper-slide {
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  border-radius: 12px;
  padding: 1.5rem;
}
.partners-section .brands-swiper .swiper-slide .brand-logo {
  max-width: 100%;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
}
.partners-section .brands-swiper .swiper-slide .brand-logo:hover {
  opacity: 1;
}
.partners-section .brands-swiper .swiper-slide .brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.map {
  padding: 1rem;
}
.map iframe {
  border: 0;
  border-radius: 12px;
  border: 1px solid var(--borders);
}

.testimonials-section {
  background: var(--bg-color);
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-section h2 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 2rem;
}
.testimonials-section .testimonials-slider {
  padding: 2rem 0;
  position: relative;
}
.testimonials-section .testimonials-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.testimonials-section .testimonials-slider .testimonial {
  background: var(--bg-second-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--borders);
  transition: all 0.3s ease;
  max-width: 80%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.testimonials-section .testimonials-slider .testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}
.testimonials-section .testimonials-slider .testimonial .quote-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.testimonials-section .testimonials-slider .testimonial .testimonial-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0 1rem;
}
.testimonials-section .testimonials-slider .testimonial .client-name {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonials-section .testimonials-slider .testimonial .client-role {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 500;
}
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
  color: var(--secondary-color);
  background: var(--bg-second-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--borders);
}
.testimonials-section .swiper-button-next::after,
.testimonials-section .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}
.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
  background: var(--secondary-color);
  color: var(--main-color);
  transform: scale(1.1);
}
.testimonials-section .swiper-button-next {
  left: 10px;
  right: auto;
}
.testimonials-section .swiper-button-prev {
  right: 10px;
  left: auto;
}
.testimonials-section .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.testimonials-section .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--borders);
  opacity: 1;
  transition: all 0.3s ease;
}
.testimonials-section .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

@keyframes slideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.swiper-slide-active .testimonial {
  animation: slideIn 0.6s ease-out;
}

.contact-section {
  padding: 2rem 0;
  background: var(--bg-second-color);
  border-top: 1px solid var(--borders);
  padding: 2rem;
}
.contact-section .contact-row {
  display: flex;
  flex-wrap: wrap;
}
.contact-section .contact-col {
  border-radius: 10px;
  padding: 2rem 1rem;
  width: 50%;
}
.contact-section .contact-col h2 {
  color: var(--main-color);
  margin-bottom: 1rem;
}
.contact-section .contact-col ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.contact-section .contact-col .social-icons {
  display: flex;
  gap: 1rem;
}
.contact-section .contact-col .social-icons a {
  font-size: 1.5rem;
  color: var(--main-color);
  transition: color 0.3s;
}
.contact-section .contact-col .social-icons a:hover {
  color: #000;
}
.contact-section .contact-col form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .input-group {
  width: 100%;
}

.contact-page {
  padding: 2rem 0;
}
.contact-page form {
  width: 50%;
  margin: 0 auto;
}

.ceo-word {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}
.ceo-word img {
  border-radius: 15px;
  border: 4px solid var(--main-color);
}

.news-page {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.news-page .card {
  width: calc(33.3333333333% - 1.5rem);
}

.single-news-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}
.single-news-page img {
  width: 100%;
  max-height: 500px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-news-page-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-accordion {
  width: 100%;
  margin: 20px 0;
}

.qa-item {
  background: var(--bg-color);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--borders);
}

.qa-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-color);
  border: none;
  width: 100%;
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.qa-question:hover {
  background: var(--bg-second-color);
}

.qa-question i {
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--main-color);
}

.qa-item.active .qa-question i {
  transform: rotate(-90deg);
}

.qa-answer {
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-color);
  line-height: 1.6;
}

.qa-item.active .qa-answer {
  padding: 10px 10px 0;
  max-height: 1000px;
}

.qa-answer p {
  margin-bottom: 15px;
  color: #555;
}

.qa-answer ul,
.qa-answer ol {
  margin: 15px 0;
  padding-right: 20px;
}

.qa-answer li {
  margin-bottom: 8px;
  color: #555;
}

.qa-answer strong {
  color: #462c50;
}

/* Animation classes */
.qa-item.animating {
  transition: all 0.1s ease-in-out;
}

/* Search functionality */
.qa-search {
  margin-bottom: 30px;
}

.search-input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--borders);
  color: var(--text-color);
  border-radius: 8px;
  font-family: var(--font-family);
  background: var(--bg-color);
  font-size: 16px;
  transition: border-color 0.3s ease;
  margin: 1rem 0;
}

.search-input:focus {
  outline: none;
  border-color: var(--main-color);
}

.no-results {
  text-align: center;
  padding: 40px;
  color: #7f8c8d;
  font-size: 18px;
}

/* Responsive design */
@media (max-width: 768px) {
  .qa-question {
    padding: 15px;
    font-size: 16px;
  }
  .qa-answer {
    font-size: 14px;
  }
}
.btn-primary {
  background-color: var(--main-color);
  color: white;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-warning {
  background-color: #ffc107;
  color: black;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table .btn {
  padding: 4px 12px;
}

.table th,
.table td {
  border: 1px solid var(--borders);
  padding: 8px;
  text-align: right;
}

.table th {
  background-color: var(--bg-second-color);
  font-weight: bold;
}

.table tr:nth-child(even) {
  background-color: var(--bg-second-color);
}

.actions {
  display: flex;
  gap: 15px;
}

.ql-editor {
  direction: rtl !important;
  text-align: right !important;
  font-family: inherit !important;
  font-size: inherit !important;
}

.ql-toolbar.ql-snow {
  direction: rtl !important;
  border-color: var(--borders) !important;
  text-align: right !important;
}

.ql-container.ql-snow {
  border-color: var(--borders) !important;
}

.ql-editor.ql-blank::before {
  right: 15px !important;
  left: auto !important;
  direction: rtl !important;
}

.cpanel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  header nav .container {
    flex-direction: column;
    height: auto;
    padding: 0 1rem;
  }
  header nav .container .menu ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  header nav .container .menu ul li {
    width: 100%;
  }
  header nav .container .menu ul li .dropdown-menu {
    position: static;
    min-width: unset;
    box-shadow: none;
    border-radius: 0 0 7px 7px;
    padding: 0;
  }
  .vmg-row,
  .stats-row,
  .projects-list,
  .news-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .contact-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .brands-section {
    padding: 2rem 0.5rem;
  }
  .brands-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .brands-swiper .swiper-slide {
    height: 100px;
    padding: 1rem;
  }
  .brands-swiper .swiper-slide .brand-logo {
    max-height: 50px;
  }
  .brands-swiper .swiper-slide .brand-name {
    font-size: 1rem;
  }
  .testimonials-section {
    padding: 2rem 1rem;
  }
  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .testimonials-section .testimonials-slider .testimonial {
    padding: 2rem 1.5rem;
  }
  .testimonials-section .testimonials-slider .testimonial .testimonial-text {
    font-size: 1.1rem;
    padding: 0;
  }
  .testimonials-section .testimonials-slider .testimonial .quote-icon {
    font-size: 2.5rem;
  }
  .testimonials-section .swiper-button-next,
  .testimonials-section .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 480px) {
  .brands-swiper .swiper-slide {
    height: 80px;
    padding: 0.8rem;
  }
  .brands-swiper .swiper-slide .brand-logo {
    max-height: 40px;
  }
  .testimonials-section {
    padding: 1.5rem 0.5rem;
  }
  .testimonials-section h2 {
    font-size: 1.7rem;
  }
  .testimonials-section .testimonials-slider .testimonial {
    padding: 1.5rem 1rem;
  }
  .testimonials-section .testimonials-slider .testimonial .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .testimonials-section .testimonials-slider .testimonial .quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.dashboard table form {
  padding: 0;
  flex-direction: row;
}

.dark {
  --bg-color: #08080b;
  --bg-second-color: #171720;
  --text-color: white;
  --borders: #272736;
}

@media screen and (max-width: 991px) {
  header nav .container {
    flex-direction: row;
  }
  header nav .container .menu {
    position: absolute;
    display: none;
    top: 6rem;
    right: 0;
    z-index: 999;
    width: 100%;
    background: var(--bg-second-color);
    border: 1px solid var(--borders);
    padding: 1rem 0;
  }
  header nav .container .menu ul {
    display: flex;
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }
  header nav .container .active {
    display: flex;
    flex-direction: column;
  }
  header nav .container .settings .menu-icon {
    display: flex;
  }
  header nav.sticky .container .menu {
    top: 3.8rem;
  }
  .news-page .card {
    width: 100%;
  }
  .contact-section {
    overflow-x: hidden;
  }
  .contact-section .contact-col {
    width: auto;
  }
  .contact-page {
    padding: 1rem;
  }
  .contact-page form {
    width: auto;
  }
  .vmg-section .vmg-col {
    width: 100%;
  }
  header nav .container .logo {
    flex: unset;
  }
  header nav .container .settings {
    flex: unset;
  }
}