* {
    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 */

    /* Header styling */
    header {
      display: flex;
      align-items: center;
      /* padding: 10px 20px; */
      justify-content: center;
      height: 200px;
      /* background-color: #111; */
      margin-bottom: 50px;
      border-bottom: 1px solid #1d256e;
    }

    /* Logo styling */
    .logo {
      width: 20%;
      transform: translateX(-200px);
    }

    /* Dropdown menu styling */
    .dropdown {
      position: relative;
      display: inline-block;
      transform: translateX(200px);
      z-index: 10000;
    }

    /* Dropdown button styling */
    .dropbtn {
      /* background-color: #333; */
      color: #111;
      padding: 14px 16px;
      font-size: 20px;
      border: none;
      cursor: pointer;
      margin: 0 10px;
      border-radius: 10px;
      /* background-color: #f9f9f9; */
    }

    .dropbtn a {
      color: #111;
    }

    /* Dropdown content styling */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      width: 100%;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      text-align: right;
      border-radius: 10px;
      z-index: 10000;
    }

    /* Links inside dropdown */
    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    /* Change color on hover */
    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    /* Show dropdown on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Change button color on hover */
    .dropbtn:hover {
      /* background-color: #555; */
    }

/* 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;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 200px;
}

.title p {
  font-size: 30px;
}

.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: #F79620;
  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;
}
