* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: Arial, Helvetica, sans-serif;
}

/* 
@font-face {
    font-family: sazeh;
    src: url(../Persian/Mj_Sazeh/Mj_Sazeh\ Bold_0.ttf);
  } */


/* Whatsapp */
#whatsapp-fixed {
  position: fixed;
  left: 20px; /* distance from the left edge */
  top: 90%; /* vertically centered */
  transform: translateY(-50%);
  z-index: 1000; /* stay on top of other elements */
  width: 50px; /* size of the icon */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; /* WhatsApp green background */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

#whatsapp-fixed img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* make icon white */
}

#whatsapp-fixed:hover {
  background-color: #1ebe5b; /* darker green on hover */
}
/* Header For Desktop */

.logo {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: right;
    text-align: center;
    align-items: center;
    margin: 0;  
  }

  .logo img {
    width: 10%;
    margin: 20px;
  }

  /* Header-Hamburger */
  header {
    background-color: #F79620;
    color: #111;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20rem;
    font-family: Arial, sans-serif;
    height: 90px;
}

.price {
  display: flex;
  justify-content: right;
  align-items: center;
  text-align: right;
  transform: translateX(320px);
}

.price p {
  font-weight: bold;
}

.contact {
    display: flex;
    align-items: center;
}

.contact span img {
  margin-right: 10px;
  width: 30px;
  font-weight: bold;
}

.contact a {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #111;
  margin: 0 10px;
}

.contact a:hover {
  color: #3e4372;
}

.title1 ul {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 100px;
  transform: translateX(180px);
}

.title1 ul li a {
  font-weight: bold;
  color: #111;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    background-color: #111;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.menu {
    display: none;
    position: absolute;
    top: 100%;
    right: -30px;
    background-color: #F79620;
    padding: 1rem;
    border-radius: 5px;
    width: 200px;
    text-align: right;
    z-index: 9999;
}

.hamburger:hover .menu {
    display: block;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    padding: 0.5rem 0;
}

.menu ul li a {
    color: #111;
    text-decoration: none;
    font-size: 1rem;
}

.menu ul li a:hover {
    color: #ddd;
}

/* Main */
  /* Slider Image */
  
/* Slideshow container */
.slideshow-container {
  max-width: 1500px;
  position: relative;
  margin: auto;
  top: 100px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #111;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: #fff;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Box For Product */
.title {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 200px;
}

.title p {
  font-size: 25px;
  border-bottom: 5px dotted #F79620;
  padding: 20px 20px;
  border-radius: 20px;
}

.container {
  display: flex;
  gap: 15px; /* space between boxes */
  justify-content: center; /* center the boxes horizontally */
  flex-wrap: nowrap; /* prevent wrapping; remove if you want wrapping on smaller screens */
  margin: 50px;
  flex-direction: row;
}
.box {
  width: 300px; /* adjust as needed */
  height: 300px; /* adjust as needed */
  border: 1px solid #111;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition : transform 0.5s ease;
  flex-direction: column;
}

.box:hover {
  opacity: 0.6;
}

.box p {
  font-size: 20px;
  color: #111;
  padding: 30px 0   ;
}

.box img {
  width: 100%;
  object-fit: cover;
}

/* Tables */
.table-wrapper p {
  text-align: center;
  background-color: #bbb;
  padding: 20px 0;
  width: 100%;
  font-size: 25px;
}

.table-wrapper {
  width: 40%;
}

.table-wrapper a {
  display: flex;
  text-align: center;
  font-size: 15px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #111;
  background-color: #bbb;
}

.table-wrapper a:hover {
  background-color: #F79620;
  color: #eee;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

td, th {
  border: 1px solid #dddddd;
  text-align: right;
  padding: 30px 50px;
  width: 100%;
}

tr:hover {
  transform: translateX(3px);
}

tr:nth-child(even) {
  background-color: #dddddd;
  color: #1d256e;
}

tr:nth-child(odd) {
  color: #111;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.loti img {
  height: 80%;
}

.loti p {
  transform: translateY(-50px);
}

.line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.line span {
  border-bottom: 2px solid #F79620;
  width: 80%;
  margin-bottom: 30px;
}

.address {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin: 10px 0;
}

.address img {
  width: 1.5%;
  margin-left: 10px;
}

.address p {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.navs {
  display: flex;
  justify-content: center;
  text-align: center;
}

.navs a {
  margin: 0px 20px;
  color: #111;
  align-items: center;
  text-align: center;
  font-size: 12px;
}

.navs a:hover {
  color: #F79620;
}


/* Media Queries for Responsiveness */
@media screen and (max-width: 999px) {
  .logo {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0;  
  }

  .logo img {
    width: 20%;
    margin: 20px;
  }
  /* Header-Hamburger */
  header {
    background-color: #F79620;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    font-family: Arial, sans-serif;
    height: 150px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title1 {
    display: none;
}

.price {
  display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    background-color: #111;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.menu {
    display: none;
    position: absolute;
    top: 100%;
    right: -30px;
    background-color: #F79620;
    padding: 3rem;
    border-radius: 5px;
    width: 200px;
    text-align: right;
    z-index: 9999;
}

.hamburger:hover .menu {
    display: block;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    padding: 0.5rem 0;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.menu ul li a:hover {
    color: #ddd;
}
}

@media screen and (max-width: 480px) {

}