@charset "UTF-8";
@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-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0;
}
.card .card-icon i {
  font-size: 26px;
  background-color: #f7e4ff;
  color: var(--main-color-hover);
  height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid var(--main-color-hover);
  justify-content: center;
  border-radius: 35px;
  width: 60px;
}
.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;
}

.file-card .card-info {
  justify-content: center;
}

.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;
  gap: 5px;
  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;
  justify-content: center;
  direction: rtl;
}
.btn i,
.btn svg,
button i,
button svg {
  display: flex;
}
.btn:hover,
button:hover {
  background-color: var(--main-color-hover);
  color: white;
  border-color: var(--main-color-hover);
}

form {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
form .flex-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
form fieldset {
  border: 1px solid var(--borders);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: var(--bg-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form fieldset legend {
  font-weight: bold;
  color: var(--text-color);
  font-size: 1.2rem;
  padding: 0 1rem;
  background: var(--bg-color);
  border-radius: 6px;
  border: 1px solid var(--borders);
}
form .form-section {
  border: 1px solid var(--borders);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: var(--bg-color);
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
form .section-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-color);
  border-bottom: 1px solid var(--borders);
  padding-bottom: 8px;
}
form .input-group .btn {
  min-width: 150px;
}
form .input-group .radio-group-card {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}
form .input-group .radio-group-card .radio-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
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);
}
form .input-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 100%;
  box-sizing: border-box;
}
form .input-group select option {
  max-width: 100%;
  white-space: normal;
  font-size: 11px;
  word-wrap: break-word;
}

.form-selector {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  gap: 1rem;
}

.custom-form {
  margin: 1rem auto;
  max-width: 700px;
  overflow-x: hidden;
  border-radius: 10px;
}
.custom-form .input-group {
  min-width: 300px;
}

.forms-page h2 {
  padding: 2rem 2rem 1rem;
}
.forms-page .form-description {
  padding: 0 2rem;
}
.forms-page ul,
.forms-page ol {
  padding: 0 1rem;
}

.checkbox-group label {
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.checkbox-group label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  background: #fff;
  transition: all 0.18s ease;
}
.checkbox-group label::after {
  content: "";
  position: absolute;
  right: 0.28rem;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 0.55rem;
  height: 0.28rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform 0.18s ease;
}

/* case 1: input is sibling BEFORE label (input + label) */
input[type=checkbox]:checked + label::before {
  background: var(--main-color);
  border-color: var(--main-color);
}

input[type=checkbox]:checked + label::after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
}

/* case 2: label wraps input — use :has() to detect checked child */
label:has(input[type=checkbox]:checked)::before {
  background: var(--main-color);
  border-color: var(--main-color);
}

label:has(input[type=checkbox]:checked)::after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
}

/* hide native checkbox visually but keep it accessible */
input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

/* focus style */
label:has(input:focus),
input:focus + label {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
}

/* === Fixed Radio & Checkbox Styling (works with your HTML) === */
.radio-group-card,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-card,
.checkbox-group > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Hide the native inputs but keep accessibility */
input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/* Base label styling */
.radio-card label,
.checkbox-group label {
  position: relative;
  padding-right: 2rem;
  font-size: 0.95rem;
  color: var(--text-color, #333);
  cursor: pointer;
  transition: color 0.2s ease;
}

/* RADIO BUTTON STYLE */
.radio-card label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  background: #fff;
  transition: all 0.25s ease;
}

.radio-card label::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--main-color);
  transform: translateY(-50%) scale(0);
  transition: transform 0.25s ease;
}

/* Checked radio visible */
.radio-card input[type=radio]:checked ~ label::after {
  transform: translateY(-50%) scale(1);
}

/* CHECKBOX STYLE */
.checkbox-group label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  background: #fff;
  transition: all 0.25s ease;
}

.checkbox-group label::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 46%;
  width: 0.5rem;
  height: 0.25rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  transition: transform 0.25s ease;
}

.checkbox-group input[type=checkbox]:checked ~ label::before {
  background: var(--main-color);
  border-color: var(--main-color);
}

.checkbox-group input[type=checkbox]:checked ~ label::after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
}

/* Focus and hover */
.radio-card label:hover::before,
.checkbox-group label:hover::before {
  border-color: var(--primary-hover, #0056b3);
}

input:focus-visible ~ label::before {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.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);
  text-align: center;
  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: 240px;
  gap: 10px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--main-color) #f1f1f1;
}
header nav .container .menu ul li.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
header nav .container .menu ul li.dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
  margin: 4px 0;
}
header nav .container .menu ul li.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 4px;
  border: 2px solid #f1f1f1;
}
header nav .container .menu ul li.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-color-hover);
}
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;
}
footer .container a {
  color: white;
  font-weight: bold;
}
footer .container a:hover {
  color: white;
  text-decoration: underline;
}

.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.2);
  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;
  text-shadow: 4px 4px 29px rgba(0, 0, 0, 0.8);
}
.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;
  }
}

.share-section {
  width: 100%;
  margin: 3rem 0;
  border-top: 1px solid var(--borders);
}
.share-section h3 {
  padding: 1rem 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.share-btn {
  display: inline-block;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}
.share-btn:hover {
  color: white;
  opacity: 0.8;
}
.share-btn i {
  display: flex;
}

.share-btn.facebook {
  background-color: #1877f2;
}

.share-btn.x-twitter {
  background-color: black;
}

.share-btn.whatsapp {
  background-color: #25d366;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

.share-btn.email {
  background-color: #444;
}

.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-hover);
  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-hover);
}
.about-section p {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .about-section {
    margin: 2rem;
    border: 1px solid var(--borders);
    border-radius: 10px;
    padding: 2rem;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}
.whatsapp-btn a {
  font-size: 28px;
  display: flex;
  background: #25d366;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  color: white;
}
.whatsapp-btn a i {
  display: flex;
}
.whatsapp-btn a:hover {
  transform: translateY(-8px);
}

.support-us {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  z-index: 9999;
}
.support-us a {
  font-size: 17px;
  display: flex;
  background: var(--main-color-hover);
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: 0.3s;
  color: white;
  padding: 0 2rem;
}
.support-us a:hover {
  transform: translateX(-15px);
}

iframe {
  border-radius: 15px;
  height: 350px;
  margin: 2rem 0;
}
@media screen and (max-width: 991px) {
  iframe {
    width: 100%;
    height: 250px;
  }
}

.video-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-content: center;
  justify-content: center;
}

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

.projects-section {
  padding: 2rem 0;
}
.projects-section h2 {
  text-align: center;
  color: var(--main-color-hover);
}
.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: 0.5rem 1rem;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.projects-section .projects-list .project-item h3 {
  color: var(--main-color-hover);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.projects-section .projects-list .project-item h3 i {
  font-size: 20px;
  background: rgba(82, 51, 95, 0.2941176471);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  border: 1px solid var(--main-color);
}
.projects-section .projects-list .project-item h3 a {
  font-size: 15px;
}
@media screen and (max-width: 991px) {
  .projects-section {
    padding: 2rem;
  }
  .projects-section .projects-list .project-item {
    width: 100%;
  }
}

.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-hover);
}
.stats-section .stats-col h3 {
  color: var(--main-color-hover);
}
.stats-section .stats-col p {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .stats-section .stats-col {
    width: 100%;
  }
}

.partners-section {
  padding: 2rem 0;
}
.partners-section h2 {
  text-align: center;
  color: var(--main-color-hover);
}
.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 {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
  background: white;
  border-radius: 10px;
}
.partners-section .brands-swiper .swiper-slide .brand-logo:hover {
  opacity: 1;
}
.partners-section .brands-swiper .swiper-slide .brand-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.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-hover);
}
.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);
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-second-color);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--borders);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: color 0.2s;
}

.close-btn:hover {
  color: #e53e3e;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--borders);
  border-radius: 6px;
  font-size: 1rem;
  background-color: var(--bg-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

.btn-cancel {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.btn-cancel:hover {
  background-color: var(--bg-color);
}

.btn-submit {
  background-color: #48bb78;
}

.btn-submit:hover {
  background-color: #38a169;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    padding: 20px;
    width: 95%;
  }
  .modal-title {
    font-size: 1.3rem;
  }
  .form-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
  }
  .modal-title {
    font-size: 1.2rem;
  }
}
.add-testimonial {
  display: flex;
  justify-content: center;
}
.add-testimonial a {
  border-radius: 35px;
  padding: 5px 20px;
}

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

.ad-center-gallery {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.ad-center-gallery .main-media {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.ad-center-gallery .main-media img,
.ad-center-gallery .main-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ad-center-gallery .media-thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 5px;
  scrollbar-width: thin;
}
.ad-center-gallery .media-thumbnails .thumbnail {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.ad-center-gallery .media-thumbnails .thumbnail:hover, .ad-center-gallery .media-thumbnails .thumbnail.active {
  opacity: 1;
}
.ad-center-gallery .media-thumbnails .thumbnail img,
.ad-center-gallery .media-thumbnails .thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.media-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.2s;
}
.media-modal .close-btn:hover {
  opacity: 0.7;
}
.media-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-modal .modal-content img,
.media-modal .modal-content video {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  background: #000;
}
.media-modal .modal-content video {
  width: auto;
  height: auto;
  aspect-ratio: 16/9;
  background: #000;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .media-modal .modal-content {
    width: 95%;
    max-height: 80vh;
  }
  .media-modal .modal-content img,
  .media-modal .modal-content video {
    max-width: 100%;
    max-height: 75vh;
  }
}
.contact-section {
  padding: 2rem 0;
  background: var(--bg-second-color);
  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-hover);
}
.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: var(--main-color-hover);
}
.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);
}
@media screen and (max-width: 991px) {
  .news-page {
    gap: 2rem;
  }
}

.single-news-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}
.single-news-page img {
  width: 100%;
  max-width: 300px;
  max-height: 500px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0.5rem;
}
.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);
  color: var(--text-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-name {
    font-size: 1rem;
  }
  .testimonials-section {
    padding: 2rem 1rem;
  }
  .testimonials-section h2 {
    font-size: 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;
  }
  .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;
}
.dashboard form {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .dashboard form {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  #openModalBtn {
    width: -moz-fit-content;
    width: fit-content;
  }
  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;
  }
  .ceo-word {
    flex-direction: column;
  }
  .ceo-word img {
    width: -moz-fit-content;
    width: fit-content;
    height: 250px;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 auto;
  }
  .news-page .card {
    width: 100%;
  }
  .contact-section {
    overflow-x: hidden;
    padding: 1rem;
  }
  .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;
  }
}
.dark {
  --bg-color: #08080b;
  --bg-second-color: #11111a;
  --text-color: white;
  --borders: #272736;
}