* {
    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);
  } */

/* Home Icon */
.fix-icon {
    position: fixed;
    right: 20px; /* distance from the left edge */
    top: 89%; /* vertically centered */
    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;
    border-radius: 50%;
  }
  
  .fix-icon img {
    width: 100%;
  }


/* 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 */
    .flex-container {
        display: flex;
        flex-direction: row;
        font-size: 30px;
        margin: 100px 0;
      }
      
      .flex-item-left {
        padding: 10px;
        flex: 50%;
      }

      .map-div iframe {
        width: 100%;
        border: 0;
        padding: 10px;
    }
    
    .gfg {
        text-align: center;
        color: green;
    }
    
      
      .flex-item-right {
        padding: 10px;
        flex: 50%;
        text-align: right;
        margin-right: 100px;
      }

      .flex-item-right h6 {
        font-size: 20px;
      }

      .flex-item-right p {
        font-size: 25px;
      }

      .flex-item-right a {
        font-size: 20px;
        color: #111;
      }

      .flex-item-right a:hover {
        color: #F79620;
      }

      /* 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;
  }
  

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
    .flex-container {
      flex-direction: column;
    }
}