@charset "UTF-8";
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/webfonts/IRANSansWeb_UltraLight_FaNum.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Light_FaNum.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_FaNum.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Medium_FaNum.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Bold_FaNum.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Black_FaNum.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.header-background {
  z-index: 10000;
  position: relative;
  background-image: url(/images/hero-bg.png?v=1);
  background-repeat: no-repeat;
  background-clip: border-box;
  background-size: cover;
}
.header-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
  z-index: -1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
    margin: 0;
    padding: 0;
    direction: rtl;
    display: block;
    line-height: 1.6;
    text-align: right;
    min-height: 100vh;
    overflow-x: hidden;
    color: #232c39;
    font-family: "palas", "Vazirmatn", sans-serif;
    background-color: #f9f9f9;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-wrap: balance;
  line-height: 1.1;
}

p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
a:not([class]) {
  color: #ffffff;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
a,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

input {
    font-family: "palas", "Vazirmatn", sans-serif !important;
}

button,
input,
a,
label {
  line-height: 1.1;
}

textarea:not([rows]) {
  min-height: 10em;
}

::-webkit-scrollbar {
  width: 6px;
  height: 5000px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  background: radial-gradient(circle, #066899 0%, rgba(0, 0, 0, 0) 100%);
}
::-webkit-scrollbar-thumb:hover {
  background: radial-gradient(circle, #ecc3ba 0%, rgba(0, 0, 0, 0.493) 100%);
}

:target {
  scroll-margin-block: 5ex;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
}
.btn-primary {
  background: #b99774 !important;
  color: #ffffff;
}
.btn-primary:hover {
  background: #077ab2;
}
.btn-secondary {
  background: #e5e7eb;
  color: #077ab2;
}
.btn-secondary:hover {
  background: #d1d5db;
}
.btn-outline {
  background: rgba(0, 0, 0, 0) !important;
  border: 1.9px solid #b99774 !important;
  color: #b99774 !important;
  border-radius: 8px;
}
.btn-outline:hover {
  background: #088bcc;
  color: #ffffff;
}
.btn-light {
  background: rgba(249, 250, 251, 0.95);
  color: #066899;
}
.btn-light:hover {
  background: #ffffff;
}
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1.9px solid rgba(249, 250, 251, 0.95);
}
.btn-outline-light:hover {
  background: rgba(249, 250, 251, 0.1);
}
.btn-link {
  background: transparent;
  color: #088bcc;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 4px;
  min-height: auto;
  flex-direction: row-reverse;
  justify-content: center;
  width: 100%;
}
.btn-link:hover {
  opacity: 0.8;
}
.btn-newsletter {
  background: rgba(7, 122, 178, 0.32);
  color: #066899;
  font-weight: 600;
  font-size: 18px;
  padding: 4px 12px;
  min-height: 35px;
}
.btn-newsletter:hover {
  background: rgba(7, 122, 178, 0.24);
}
.btn__icon {
  width: auto;
  height: auto;
}

.demo-btn {
  color: black !important;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  height: 40px;
  background: #fcfcfc !important;
  border-radius: 8px;
  width: 100px;
  margin: 0;
}
.demo-btn:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header h2 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.24px;
  color: #232c39;
  margin-bottom: 8px;
}
.section-header p {
  font-size: 16px;
  line-height: 28.8px;
  color: #6b7280;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
    .demo-btn-me{
        display:none
    }
}
.hamburger__line {
  width: 24px;
  height: 2px;
  background-color: #fcfcfc !important;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 16px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1005;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav--active {
  right: 0;
}
.mobile-nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: #088bcc;
}
.mobile-nav hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 8px 0;
}
.mobile-nav .demo-btn--mobile {
  margin-top: auto;
  width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: none;
    transition: all 0.3s ease-in-out;
}
/*.header__scrolled {
  top: 20px;
  transition: all 0.3s ease-in-out;
}
.header__scrolled .header__main-content {
  padding: 12px 50px;
  background-color: rgba(185, 151, 116, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .header__scrolled .header__main-content {
    padding: 12px 0;
  }
}
.header__scrolled .header__nav a {
    color: #FFFFFFCC;
}
.header__main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  padding: 16px 0;
  gap: 169px;
}*/
/*.header__nav {
  display: flex;
  align-items: center;
  gap: 56px;
}
    .header__nav a {
        color: #FFFFFFCC;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
    }
.header__nav a:hover {
  color: #088bcc;
}*/
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
/*.header__logo img {
  width: 100px;*/
  /*height: 56px;*/
/*}*/
/*.header__logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}*/

.header .mobile-nav--active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 280px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer {
  background: #f3f4f6;
  border-top: 2px solid #d1d5db;
  padding: 48px 80px 16px;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  margin-bottom: 32px;
  border-bottom: 2px solid #e5e7eb;
}
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__section h3 {
  font-size: 18px;
  line-height: 23.4px;
  color: #232c39;
  font-weight: 600;
  text-align: right;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .footer__section h3 {
    text-align: center;
    font-size: 14px;
  }
}
.footer__section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__section li {
  text-align: right;
}
.footer__section a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer__section a:hover {
  color: #088bcc;
}
.footer__section p {
  font-size: 14px;
  line-height: 25.2px;
  color: #6b7280;
  text-align: right;
}
.footer__center {
  display: flex;
  gap: 60px;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer__center {
    gap: 28px;
    justify-content: space-between;
  }
}
.footer__about p {
  text-align: justify;
  margin-bottom: 12px;
}
.footer__video-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer__video-links {
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer__video-link {
  color: #077ab2 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.footer__social-links {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.footer__social-links a {
  width: 40px;
  height: 40px;
  display: block;
  transition: all 0.3s ease;
}
.footer__social-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.footer__social-links img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .footer__social-links {
    justify-content: space-between;
  }
}
.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer__newsletter p {
  font-weight: 500;
  color: #6b7280;
  font-size: 13px;
}
.footer__newsletter-form {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
}
.footer__newsletter-form input {
  border: none;
  background: transparent;
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  flex: 1;
  text-align: right;
  padding: 0 8px;
}
.footer__newsletter-form input::-moz-placeholder {
  color: #9ca3af;
}
.footer__newsletter-form input::placeholder {
  color: #9ca3af;
}
@media (max-width: 480px) {
  .footer__newsletter-form {
    height: auto;
    padding: 8px;
  }
}
.footer .btn--newsletter {
  background: rgba(7, 122, 178, 0.3);
  color: #066899;
  border: none;
  padding: 4px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
  height: 35px;
  min-height: auto;
}
.footer .btn--newsletter:hover {
  background: #05577f;
  color: #ffffff;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .footer__brand {
    margin-bottom: 0;
  }
}
.footer__logo {
  width: 172px;
  height: auto;
}
.footer__tagline {
  font-size: 18px;
  line-height: 23.4px;
  color: #066899;
  font-weight: 600;
}
.footer__bottom {
  padding-top: 16px;
  text-align: center;
}
.footer__bottom p {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 25.2px;
}
@media (max-width: 768px) {
  .footer {
    padding-inline: 0px;
  }
}

@media (max-width: 1270px) {
  .header__main-content {
    gap: 80px;
  }
  .header__nav {
    gap: 30px;
  }
}
@media (max-width: 960px) {
  .header__scrolled .header__main-content {
    padding: 12px;
  }
  .header__main-content {
    gap: 20px;
  }
  .header__nav {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header__main-content {
    flex-direction: row;
    gap: 20px;
  }
  .header__nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.header-background {
  z-index: 10000;
  position: relative;
  background-image: url(/images/hero-bg.png?v=1);
  background-repeat: no-repeat;
  background-clip: border-box;
  background-size: cover;
}
.header-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
    /*  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  padding-block: 214px;
  justify-content: flex-start;*/
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero__text {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero__title-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__subtitle {
  color: rgb(212, 192, 170);
  font-weight: 800;
  font-size: 12px;
  line-height: 150%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px !important;
  gap: 8px;
  opacity: 0.8;
  border: 1px solid #d4c0aa;
  border-radius: 8px;
  margin-inline: auto;
  margin-top: 16px;
}
.hero__title {
    font-size: 48px;
    line-height: 72px;
    font-weight: 700;
    color: #232c39;
    margin: 0;
    /*max-width: 771px;*/
    margin-top: 16px;
    color: #FFF;
    text-align: center;
}
.hero__description {
  font-weight: 300;
  font-size: 14px;
  line-height: 180%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.hero__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 398px) {
  .hero__buttons {
    justify-content: center;
  }
}
.hero__buttons button, .hero__buttons a {
    width: 180px;
}
@media (max-width: 398px) {
    .hero__buttons button, .hero__buttons a {
        width: 160px;
    }
}

.stats {
  margin-top: -70px;
}
.stats .container {
  position: relative;
}
.stats__card {
  /*padding: 20px 65px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  /*height: 148px;*/
  margin: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.stats__card:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .stats__card {
    left: 50%;
    transform: translateX(-50%);
    gap: 16px;
    padding: 16px 20px;
    margin: 0 auto;
    width: calc(100% - 32px);
    max-width: 360px;
    height: auto;
    background-size: cover;
    gap: 8px;
    padding: 7px 2px;
    max-width: 403px;
  }
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 5px;
  /*width: 120px !important;*/
  justify-content: center;
}
.stats__number {
  font-size: 44px;
  line-height: 45px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .stats__number {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .stats__number {
    font-size: 20px;
  }
}
.stats__label {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (max-width: 768px) {
  .stats__label {
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .stats__label {
    font-size: 10px;
  }
}

/* ================================
   ABOUT SECTION
================================ */

.about-section__wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1116px) {
  .about-section__wrapper {
    display: block;
  }
    .about-section__content {
        padding-top: 90px;
    }
}
.about-section .section-header__title {
  height: 45px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 30px !important;
  line-height: 150% !important;
  text-align: center !important;
  color: #232c39 !important;
}
.about-section__content {
  flex: 1;
}
.about-section__text p {
  margin-bottom: 1px;
  line-height: 1.9;
  color: rgb(55, 65, 81);
  text-align: justify;
}
.about-section__image img {
  width: 100%;
  border-radius: 12px;
  max-width: 360px;
  margin: 40px auto;
}

/* ================================
   CARDS
================================ */
.event-wrapper {
  justify-content: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .event-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.event-card {
    display: flex;
    flex-direction: column;
    /* width: 370px;
  min-width: 390px;*/
    max-width: 370px;
    background: #ffffff;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.06), 0px 1px 12px -1px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
}
.event-card .card-header {
  height: auto;
  background: linear-gradient(311deg, rgba(255, 255, 255, 0.56), #b99774);
  color: white;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.event-card .card-body {
  padding: 16px;
}
.event-card .card-body .artist-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.event-card .card-body .artist-info h3 {
  margin: 0;
  font-size: 1.1rem;
}
.event-card .card-body .artist-info .remaining-tickets {
  color: #d6b460;
  font-size: 0.85rem;
}
.event-card .card-body .details-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-card .card-body .details-grid .detail-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
.event-card .card-footer {
  padding: 16px;
}
.event-card .card-footer .price {
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.event-card .card-footer .actions {
  display: flex;
  gap: 10px;
}
    .event-card .card-footer .actions button, .event-card .card-footer .actions a {
        flex: 1;
        padding: 10px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: 0.3s;
    }
.event-card .card-footer .actions .btn-primary {
  background: #222;
  color: white;
}
.event-card .card-footer .actions .btn-secondary {
  background: white;
  border: 1px solid #222;
  color: #222;
}

.faq {
  padding: 0 0 70px 0;
}
.faq__container {
  max-width: 1060px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 4px 16px;
}
.faq__item {
  border-bottom: 1px solid #e5e7eb;
  padding: 0 0 8px;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__item--active .faq__arrow {
  transform: rotate(180deg);
}
.faq__item--active .faq__answer {
  display: block;
}
.faq__answer {
  background: #f3f4f6;
  border-radius: 0 0 8px 8px;
  padding: 8px;
  display: none;
  transition: all 0.3s ease;
}
.faq__answer p {
  font-size: 14px;
  line-height: 25.2px;
  color: #4b5563;
  text-align: right;
}
.faq__arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
  cursor: pointer;
  gap: 12px;
  flex-direction: row-reverse;
}
.faq__question-text {
  font-size: 16px;
  font-weight: 600;
  color: #232c39;
  text-align: right;
  flex: 1;
}
@media (max-width: 768px) {
  .faq__question-text {
    font-size: 14px;
  }
}
.faq__number {
  font-size: 18px;
  line-height: 23.4px;
  color: rgb(185, 151, 116);
  min-width: 25px;
}
.faq__arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
.faq__answer {
  background: rgba(185, 151, 116, 0.2);
  border-radius: 0 0 8px 8px;
  padding: 8px;
  display: none;
}
.faq__answer p {
  font-size: 14px;
  line-height: 25.2px;
  color: #4b5563;
  text-align: right;
}

@media (max-width: 768px) {
  .hero__content {
    padding: 100px 20px;
  }
  .hero__title {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
  }
  .hero__buttons {
    gap: 16px;
  }
  .products,
  .video-section,
  .benefits,
  .how-it-works,
  .cta-banner,
  .technical-features,
  .pricing,
  .blog,
  .faq {
    padding-block: 40px;
  }
}
@media (max-width: 490px) {
  .hero__text {
    gap: 32px;
  }
  .hero__title-section {
    gap: 16px;
  }
  .hero__content {
    justify-content: center;
    padding-inline: 16px;
  }
  .section-header h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.gallery-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
    font-family: "palas", sans-serif;
}
.gallery-container h3 {
  border-right: 4px solid #d6b460;
  padding-right: 15px;
  margin-bottom: 25px;
}

.pswp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.pswp-gallery .gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.pswp-gallery .gallery-item:hover {
  transform: translateY(-5px);
}
.pswp-gallery .gallery-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: pointer;
}

.support-card {
  position: relative;
  width: 100%;
  /*max-width: 640px;*/
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 24px;
  background: #f3ebd9;
  overflow: hidden;
  direction: rtl;
  text-align: center;
  color: #1f1f1f;
  margin-bottom: 24px;
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.28) 75%, transparent 75%, transparent);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}
.support-card__content {
  position: relative;
  z-index: 1;
}
.support-card__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  color: #1b1b1b;
  letter-spacing: -0.02em;
}
.support-card__subtitle {
  margin: 0 auto;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
  color: rgba(31, 31, 31, 0.72);
}
.support-card__divider {
  width: 100%;
  height: 1px;
  margin: 24px 0 22px;
  border: 0;
  background: rgba(31, 31, 31, 0.12);
}
.support-card__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.support-card__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.support-card__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(31, 31, 31, 0.56);
}
.support-card__value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: #1b1b1b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.support-card__value:hover {
  color: #8a6238;
}
@media (max-width: 768px) {
  .support-card {
    padding: 24px 20px;
  }
  .support-card__title {
    font-size: 24px;
  }
  .support-card__contacts {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .support-card__item {
    padding: 8px 0;
  }
}

.hamburger__line {
    background-color: #F9FAFB !important
}

.btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.demo-btn-me {
    border: 0;
    background: transparent;
    color: #FFFFFF;
    font-weight: 600;
}

.demo-btn {
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    opacity: 1;
    border-radius: 8px;
    background-color: #FFFFFF !important;
}

    .demo-btn span {
        color: #1c1c1c;
        font-weight: 600;
    }
.header__main-content {
    flex-direction: row;
}
.about-section__image img {
    margin-top: 100px;
}
.about-section {
    border-bottom: 1px solid #84644366;
    background: #F4F1E0;
}
.card-title {
    color: #232C39;
    font-weight: 600;
    font-style: DemiBold;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom:24px
}
#cards,
#gallery {
    margin: 170px auto;
}
.card-title-gra {
    color: #4B5563;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
}
.card-gap{
    display:flex;
    gap:8px;
    flex-direction:column;
}
.gallery-grid {
    display: none;
}
@media(max-width:768px) {
    .gallery-grid {
        display: block;
    }
    .gallery-grid2{
        display:none;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* دو ستون مساوی */
        gap: 8px; /* فاصله بین عکس‌ها */
        /*width: 370px;*/ /* مطابق درخواست شما */
        margin: 0 auto;
        width: 100%;
        max-width: 370px;
    }

        /* عمومی برای همه لینک‌های داخل گالری */
        .gallery-grid a {
            display: block;
            overflow: hidden;
            border-radius: 8px;
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover; /* برای اینکه عکس‌ها بدون تغییر نسبت ابعاد، پر شوند */
            transition: transform 0.3s ease;
        }

    /* کلاس‌های کمکی برای چیدمان */
    .span-2 {
        grid-column: span 2;
    }
    /* اشغال کردن کل عرض */
    .span-1 {
        grid-column: span 1;
    }
    /* اشغال کردن نصف عرض */
    /* کنترل نسبت ابعاد برای ظاهری مرتب */
    .tall {
        aspect-ratio: 4/5;
    }
    /* بلند */
    .wide {
        aspect-ratio: 16/9;
    }
    /* پهن */
    .square {
        aspect-ratio: 1/1;
    }
    /* مربع */
    .gallery-grid a:hover img {
        transform: scale(1.05); /* افکت زوم ملایم هنگام هاور */
    }
    /*# sourceMappingURL=Home.css.map */
}

    @media(min-width:768px) {
        #gallery-grid {
            display: none;
        }
        /*.gallery-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 8px;
        width: 100%;
        margin: 0 auto;
    }*/
        .gallery-grid2 {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.2fr !important;
            grid-template-rows: 250px 250px !important;
            gap: 12px;
        }

            .gallery-grid2 a {
                overflow: hidden;
                border-radius: 12px;
            }

            .gallery-grid2 img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

        .item-1 {
            grid-column: 1;
            grid-row: 1 / span 2;
        }

        .item-2 {
            grid-column: 2 / span 2;
            grid-row: 1;
        }

        .item-3 {
            grid-column: 2;
            grid-row: 2;
        }

        .item-4 {
            grid-column: 3;
            grid-row: 2;
        }

        .item-5 {
            grid-column: 4;
            grid-row: 1 / span 2;
        }
    }

    .faq-boxs {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 40px
    }

    .faq-box {
        display: flex;
        gap: 16px
    }

        .faq-box img {
            width: 30px;
            height: 30px;
        }

    .faq-content {
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .faq-title {
        color: #1C1C1C;
        font-weight: 600;
        font-style: DemiBold;
        font-size: 16px;
        line-height: 150%;
        text-align: right;
    }

    .faq-subtitle {
        color: #4F4F4F;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        line-height: 180%;
        text-align: justify;
    }

    @media(max-width:768px) {
        .faq-boxs {
            display: grid;
            grid-template-columns: repeat(1,1fr);
            gap: 40px
        }
    }

