/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap"); */

:root {
  --color-back: #eeeeee;
  --color-danger: #ff7782;
  --color-success: #41f1b6;
  --color-warning: #ffbb55;
  --color-white: #fff;
  --color-info-dark: #7d8da1;
  --color-info-light: #dce1eb;
  --color-dark: #363949;
  --color-light: rgba(132, 139, 200, 0.18);
  --color-primary-variant: #111e88;
  --color-dark-variant: #677483;
  --color-background: #f6f6f9;

  --box-shadow: 0 2rem 3rem var(--color-light);
}

h1,
h2,
h3,
h4,
.section-title,
.hero-content h1,
.contact-section h2,
footer h4,
.continue-btn,
.World {
  font-family: "Orbitron", sans-serif !important;
}
body {
  margin: 0;
  /*background-color: #555 !important;*/
  color: white;
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
  /* background: #141a2a; */
}

.col-md-12 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* ----------------------------------------header--------------------------------------------- */
#index .main-header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  width: 100%;
  height: 4rem;
  background: url("/img/pexels-photo-2825749.jpeg") center/cover no-repeat;
  /*background-color: #555;*/
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#other .main-header {
  position: sticky;
  top: 0;
  background: white !important;
  z-index: 1000;
  width: 100%;
  /* height: 80px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#other .main-header .nav-link,
#other .main-header .icon {
  color: #14213d !important;
}

#index header.scrolled {
  background: #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-link,
header.scrolled .icon {
  color: #14213d;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #e9ecef !important;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.nav-item.dropdown .nav-link::after {
  display: none !important;
}

.dropdown-menu {
  background-color: rgba(145, 27, 27, 0.9);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu .dropdown-item {
  color: #172552 !important;
  font-weight: bold;
  transition: color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  color: #6b0f1a !important;
  background: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.header-top {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}

.logo {
  width: 150px;
  height: 2.3rem;
}

.header-center ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.header-center ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-right .icon {
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.flag-dropdown {
  position: relative;
  display: inline-block;
}

.selected-flag img {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  border-radius: 0;
}

.dropdown-menu {
  background-color: rgba(145, 27, 27, 0.9);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.flag-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item img {
  width: 25px;
  height: 17px;
  border-radius: 3px;
  transition: transform 0.2s;
  cursor: pointer;
}

.dropdown-item img:hover {
  transform: scale(1.1);
}

/* new */
.flag-dropdown .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(145, 27, 27, 0.9);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
  padding: 5px 8px;
  border-radius: 4px;
  display: flex;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  min-width: auto;
}

.dropdown-menu .dropdown-item img {
  width: 30px;
  height: 20px;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dropdown-menu .dropdown-item img:hover {
  transform: scale(1.1);
}

.dropdown-item img {
  width: 25px;
  height: 17px;
  border-radius: 3px;
  transition: transform 0.2s;
  cursor: pointer;
}

.dropdown-item img:hover {
  transform: scale(1.1);
}

.flag-dropdown .dropdown-menu .dropdown-item {
  padding: 3px;
}

/* ----------------------------------------Hero--------------------------------------------- */
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("/img/pexels-photo-2825749.jpeg") center/cover no-repeat;
  position: relative;
  flex-direction: column;
  margin-top: 80px;
  padding: 0 0 50px 0;
}

.hero-section {
  position: relative;
  transform: none;
  text-align: left;
  margin: 0;
  height: 100vh;
  min-height: 70vh;
  padding: 80px;
  /*background-color: #555;*/
}

.hero-content {
  max-width: 70%;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
  text-align: left;
  align-items: flex-start;
  margin-left: 20px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-left: 20px;
}

.red-text {
  color: #6b0f1a;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.HeroVideoImgWrapper {
  position: relative;
}
.videoDesktop video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ----------------------------------------CONTINUE--------------------------------------------- */
.continue-btn {
  display: inline-block;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) skew(-20deg);
  text-decoration: none;
  overflow: hidden;
  border: 2px solid #fff;
  transition: 0.3s;
  padding: 10px 30px;
  width: 180px;
  text-align: center;
  font-size: 1.2rem;
}

.continue-btn span {
  display: inline-block;
  transform: skew(20deg);
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.continue-btn:hover {
  background-color: #e5e5e5;
}

.continue-btn:hover span {
  color: #6b0f1a;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero h1,
.hero p {
  margin-left: 30px;
}

/* ----------------------------------------products--------------------------------------------- */
.products {
  background: linear-gradient(to bottom, #ced4da, #3f3f3f);
  color: white;
  padding: 80px 10%;
  text-align: right;
  position: relative;
}

.products h2 {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 10px;
}

.products p {
  font-size: 16px;
  max-width: 90%;
  width: 100%;
  line-height: 1.6;
  color: #ccc;
  border-bottom: 1px solid #aaa;
  padding-bottom: 20px;
}

.products-text {
  width: 30rem;
}

.extra-text {
  margin-top: 100px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.extra-text p {
  border-bottom: none;
  padding-top: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  text-align: right;
  margin: 0;
  padding-left: 0;
}

.product-container {
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
  padding-right: 5px;
}

.product-container a:hover {
  text-decoration: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.product-card img {
  width: 90%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
  filter: invert(100%) brightness(200%);
}

.product-card button {
  width: 160px;
  height: 45px;
  border: 2px solid #fff;
  background-color: transparent;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transform: skew(-20deg);
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 2px;
  margin-top: 15px;
  padding: 0;
}

.product-card button:hover {
  background: #31081f;
}

.product-card span {
  font-weight: bold;
  color: white;
}

@media (min-width: 768px) {
  .product-container {
    display: flex;
    justify-content: flex-start;
    margin-right: 20px;
  }

  .product-card {
    width: 100%;
    margin-left: 20px;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .col-md-6 {
    flex: 0 0 48%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .col-6 {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }

  .product-card {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .product-button {
    display: none !important;
  }

  .product-card button span {
    white-space: nowrap;
  }

  .product-card img {
    width: 80%;
    height: auto;
  }
}

.row {
  align-items: center;
}

/* ----------------------------------------products images--------------------------------------------- */
/* .product-container {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  flex: 1;
}

.product-card {
  background: none;
  text-align: center;
  width: 300px;
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card button {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  transform: skew(-20deg);
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 2px;
  margin-top: 15px;
}

.product-card button span {
  display: inline-block;
  transform: skew(20deg);
}

.product-card button:hover {
  background: #b71c1c;
} */

/* ---------------------------Find the right product for you------------------------------- */
.find-product-section {
  background: url("/static/img/back/wall-4756783.jpg") center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 10%;
  min-height: 450px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.find-product-content {
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px #ffffff;
  }
  50% {
    text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;
  }
  100% {
    text-shadow: 0 0 10px #ffffff;
  }
}

.find-product-section h2 {
  font-size: 3.7rem;
  /* margin-bottom: 40px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */

  /* درخشان */
  /* font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px #00bfff, 0 0 20px #00bfff, 0 0 30px #007bff; */

  /* چشمک زن  */
  font-weight: bolder;
  color: #31081f;
  text-transform: uppercase;
  animation: glow 1.5s infinite alternate;

  /* font-weight: bold;
    color: #0ff;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgb(12, 34, 66), 0 0 10px rgb(44, 46, 145),
      0 0 20px #2b2a52, 0 0 40px #008080; */
}

/* .find-product-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.find-product-button {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 220px;
  cursor: pointer;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.find-product-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
} */

.find-product-button i {
  font-size: 40px;
  margin-bottom: 10px;
}

.find-product-button span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.find-product-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.find-product-box {
  background-color: rgba(209, 155, 155, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  flex-basis: 300px;
  min-width: 220px;
  cursor: pointer;
  color: rgb(165, 60, 60);
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid white;
}

.find-product-box:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

.find-product-box h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.find-product-box img {
  margin-bottom: 15px;
}

.find-product-box i {
  font-size: 40px;
  margin-bottom: 10px;
}

.find-product-box span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

/* ----------------------------------------Our World--------------------------------------------- */
/* .mixtron-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  background-color: #f5f5f5;
  color: #000;
}

.mixtron-image-container {
  flex: 1;
  margin-right: 20px;
  overflow: hidden;
}

.mixtron-image-container img {
  width: 100%;
  height: auto;
  clip-path: polygon(10% 0%, 100% 0%, 100% 85%, 90% 100%, 0% 100%, 0% 15%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.mixtron-text-container {
  flex: 1;
  text-align: left;
}

.mixtron-text-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mixtron-text-container p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.read-more:hover {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

.mixtron-text-container .description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .mixtron-image-container img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
  }
}
@media (max-width: 767.98px) {
  .mixtron-section {
    margin-left: 1rem;
  }

  .mixtron-text-container {
    font-size: 0.9rem;
  }

  .mixtron-text-container h2 {
    font-size: 1.8rem;
  }

  .mixtron-text-container .World {
    font-size: 1rem;
  }

  .mixtron-text-container .description {
    font-size: 0.9rem;
  }
} */

/* ----------------------------------------news--------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.news-section {
  background-color: #dee2e6;
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  padding: 50px 50px;
}

.news-section h2 {
  color: black;
  text-align: right;
  margin-right: 130px;
  font-size: 36px;
  font-weight: bold;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.news-item {
  max-width: 500px;
  flex: 0 0 auto;
  border-radius: 10px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding-bottom: 10px;
}

.news-img {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
  object-fit: contain;
  object-position: center;
}

.news-img:hover {
  filter: brightness(0.85);
}

.news-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  color: #000;
}

.news-item p {
  font-size: 14px;
  color: #777;
  margin: 5px 0;
}

.news-link {
  font-size: 14px;
  color: rgb(5, 5, 5);
  font-weight: bold;
}

.news-link:hover {
  color: black;
  text-decoration: none;
}

.red-arrow {
  color: #6b0f1a;
  display: inline-block;
  transition: transform 0.3s ease;
}

.news-link:hover .red-arrow {
  transform: translateX(5px);
}

.news-container {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .news-container {
    flex-direction: column;
  }

  .news-item {
    width: 100%;
  }
}

/* -------------------------------------Get in touch with us---------------------------------------- */
.contact-section {
  position: relative;
  min-height: 700px;
  text-align: left;
  color: white;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url("/static/img/ChatGPT\ Image\ May\ 17\,\ 2025\,\ 09_38_39\ AM.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
}

.contact-section > * {
  position: relative;
  z-index: 2;
  padding-left: 5vw;
}

.contact-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: 50px;
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.contact-btn {
  display: inline-block;
  border: 2px solid #fff;
  background-color: #31081f;
  padding: 10px 60px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
  transform: skew(-20deg);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  display: block;
  text-align: center;
  color: #fff;
}

.contact-btn span {
  display: inline-block;
  transform: skew(20deg);
}

.contact-btn:hover {
  background-color: #e9ecef;
  color: #31081f;
}

/* .contact-section .contact-button:hover {
} */

/* .contact-section .contact-button {
  display: inline-block;
  padding: 15px 50px;
  background-color: #e53935;
  color: white;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  position: relative;
  transform: skew(-20deg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  text-decoration: none;
  color: #eee9e9;
  background-color: #861010;
} */

/* ----------------------------------------Newsletter--------------------------------------------- */
/* .newsletter-section {
  text-align: center;
  align-content: center;
  align-items: center;
  background-color: #1b2233;
  color: white;
  padding: 40px 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text {
  text-align: left;
  margin-left: 100px;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.newsletter-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  align-items: center;
}

.input-group {
  position: relative;
}

.newsletter-form input {
  padding: 10px 40px 10px 15px;
  border-radius: 5px;
  border: 1px solid #fff;
  font-size: 1rem;
  margin-right: 222px;
  width: 300px;
}

.newsletter-form button {
  background-color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  margin-right: 222px;
}

.newsletter-form button svg {
  vertical-align: middle;
}

.input-group svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  fill: #666;
} */

/* ----------------------------------------Footer--------------------------------------------- */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-section {
  background-color: #e9ecef;
  padding: 40px 0;
  border-top: 1px solid #ddd;
}

.footer-container {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.footer-links {
  /* display: flex; */
  justify-content: space-between;
  /* width: 100%; */
  /* max-width: 1200px; */
  margin-bottom: 40px;
}

.footer-column {
  text-align: left;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #333;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #666;
}

/* ------------------------تغییرات جدید ------------------------ */

/* ------------------------ Header - Menu Toggle Button ------------------------ */
.on- .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

/* تغییر وضعیت منو در حالت باز */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* .menu-toggle::after {
  content: none;
} */

/* ------------------------ Mobile Menu ------------------------ */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #141a2a;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: gray;
}

/* ------------------------ Header  نسخه موبایل ------------------------ */
@media (max-width: 768px) {
  .header-center {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* .mobile-menu.show {
      display: flex;
    } */
  .menu-toggle:hover + .mobile-menu {
    display: flex;
  }
}

o {
  display: block;
  background: rgb(0 0 0 / 50%);
  z-index: 2;
}

/* ------------------------ Header - Menu Toggle Button ------------------------ */

.Hero .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------------ Mobile Menu ------------------------ */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #141a2a;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: red;
}

/* ------------------------ تغییرات در Header برای نسخه موبایل ------------------------ */
@media (max-width: 768px) {
  .header-center {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}

.oImgWrapper {
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  object-fit: cover;
  max-width: 100%;
  background: rgb(0 0 0 / 50%);
}

/* ------------------------ Header - Menu Toggle Button ------------------------ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------------ Mobile Menu ------------------------ */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #141a2a;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: red;
}

/* ------------------------ تغییرات در Header برای نسخه موبایل ------------------------ */
@media (max-width: 768px) {
  .header-center {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}

/*.nav .nav-item {*/
/*    margin: 0 -15px;*/
/*}*/

.nav .nav-item:hover > .nav-link {
  color: #6b0f1a !important;
}

.nav {
  padding-left: 0;
}

.HeroVideoImgWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.videoDesktop video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* ----------------------------------------Icons--------------------------------------------- */

.product-page .product-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.product-page .product-section-color {
  background: linear-gradient(to bottom, #ced4da, #3f3f3f);
}

.product-page .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-page .product-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.product-page .product-card img {
  /* width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
  object-fit: contain; */
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-page .product-card button {
  display: inline-block;
  border: 2px solid #fff;
  background-color: #31081f;
  padding: 10px 60px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
  transform: skew(-20deg);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  display: block;
  text-align: center;
  color: #fff !important;
}

.product-page .product-card button:hover {
  background: #fff;
  text-decoration: none;
  border: 2px solid #31081f;
  box-shadow: none;
  color: #31081f !important;
}
.product-page a:hover {
  text-decoration: none;
}

.product-page .product-card {
  color: #31081f !important;
}

@media (max-width: 768px) {
  .product-card span {
    font-size: 11px;
  }
}

/* ----------------------------------------Water--------------------------------------------- */
.total {
  background-color: #000;
}
.content {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  text-align: left;
}

/* h1 {
  font-size: 28px;
  margin-bottom: 20px;
} */

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-container {
  /* display: flex; */
  /* justify-content: center;
  gap: 20px; */
  margin-top: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(2, 2, 56, 0.1);
  text-align: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 0 auto;
}

.card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 5px 15px rgba(62, 3, 255, 0.2);
}

.card img {
  width: 100%;
  object-fit: contain;
  display: block;
  height: 200px;
  object-fit: contain;
  background-color: #ffffff;
}

.card h3 {
  transition: color 0.3s ease-in-out;
  color: #333;
  font-size: 1rem;
}

.card:hover h3 {
  color: #000000;
}

.card a {
  text-decoration: none;
  color: black;
}

.card a:hover {
  text-decoration: none;
  color: black;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 24px;
  }
  .row .col-12 {
    margin-bottom: 20px;
  }
}

/* ----------------------------------------Chicken--------------------------------------------- */

.chicken-section .hero {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.chicken-section .hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.chicken-section .hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.chicken-section .hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  margin-left: 0;
}

.chicken-section .hero button {
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.chicken-section .hero button:hover {
  background: black;
  color: white;
}

.chicken-section .content {
  width: 80%;
  margin: auto;
  padding: 50px 0;
  text-align: justify;
}

.chicken-section .content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.chicken-section .content ul {
  margin-top: 10px;
  padding-left: 20px;
}

.chicken-section .content ul li {
  margin: 5px 0;
}
/* ///////////////////////////////////////////////////////////// */
.contact-hero {
  background-image: url("/static/img/contatct.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  color: white;
}

.contact-hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 20px;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #0e1732;
  padding: 30px;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #1b2640;
  border: none;
  color: white;
}

.contact-form .form-group {
  display: flex;
  gap: 15px;
}

.contact-form .checkbox-group {
  font-size: 0.9em;
  margin-bottom: 15px;
}

.contact-form button {
  background-color: #e53935;
  border: none;
  padding: 10px 20px;
  color: white;
}

.cont {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid white;
  color: white;
  background-color: transparent;
  background-color: rgb(0, 0, 0, 0.4);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cont:hover {
  background-color: #005caa;
  border: none;
}
a:hover {
  text-decoration: none !important;
}

.ptext {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}
.utext {
  list-style: disc;
  padding-left: 20px;
}

/* contact */
.other {
  margin: 0;
  background-color: #12182b;
  color: white;
}

.left,
.right {
  flex: 1;
}

label {
  color: #fff;
}
.left h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.left p {
  font-size: 0.9rem;
  color: #fff;
}

.contact-box {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

select,
input,
textarea {
  padding: 10px;
  font-size: 0.9rem;
  background-color: #12182b;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
}

.checkboxes {
  /* display: flex; */
  flex-direction: column;
  font-size: 0.8rem;
}

button {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 12px 30px;
  /* font-weight: bold; */
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  transform: skew(-20deg);
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 2px;
  margin-top: 15px;
}
button:hover {
  background: #b71c1c;
}

.leftleft,
.leftRight {
  color: black;
}
.container {
  /* display: flex; */
  justify-content: space-between;
  padding: 60px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
