@import url(https://db.onlinewebfonts.com/c/ae238c3ee498c52a23aab0d9f5e94d6b?family=dana-fanum+regular);

/* Start Global Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "dana-fanum regular";
  text-decoration: none;
  scroll-behavior: smooth;
  outline: none;
}

:root {
  --bg-color: #1e3a8a;
  --second-bg-color: #e1b373;
  --text-color: #fff;
  --main-color: #ffd700;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: rgb(26, 26, 26);
  background: linear-gradient(
    98deg,
    rgba(26, 26, 26, 1) 0%,
    rgb(22, 1, 93) 100%
  );
  color: var(--text-color);
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

/* End Global Variables */

/* Start Header */
.header {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 11%;
  padding: 3rem;
  display: flex;
  background: rgba(255, 255, 255, 0.052);
  border: 3px solid rgba(255, 255, 255, 0.171);
  box-shadow: 0 0 10px rgba(215, 214, 214, 0.022);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 3.8rem;
  color: #1e3a8a;
  font-weight: 600;
}

.logo span {
  color: var(--second-bg-color);
}

.navbar {
  margin-left: 8rem;
  z-index: 101;
}

.navbar a {
  font-size: 3rem;
  color: var(--text-color);
  margin-right: 7rem;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--second-bg-color);
}

#login {
  cursor: pointer;
  position: relative;
  padding: 8px 18px;
  font-size: 16px;
  color: var(--text-color);
  border: 2px solid var(--bg-color);
  border-radius: 34px;
  background-color: var(--bg-color);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

#login a {
  text-decoration: none;
  color: var(--text-color);
}

#login::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--second-bg-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#login:hover::before {
  scale: 3;
}

#login:hover {
  color: #212121;
  scale: 1.1;
  border: 2px solid var(--second-bg-color);
  box-shadow: 0 0px 20px var(--second-bg-color);
}

#login:active {
  scale: 1;
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--text-color);
  display: none;
  position: relative;
  z-index: 102;
  cursor: pointer;
}

#login-icon {
  font-size: 3.6rem;
  color: var(--text-color);
  display: none;
}

/* End Header */

.Contact-us-page {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 12rem 9% 2rem;
}

.Contact-us-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -41%);
  width: 5px;
  height: 63%;
  background: #fff;
  border-radius: 1px;
}

.form {
  margin-right: 5%;
  justify-content: center;
  align-items: center;
  width: 490px;
  background: rgba(26, 26, 26, 0.345);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 23px;
  padding: 30px 40px;
}

.contact-info h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.info-details {
  position: relative;
  text-align: center;
}

.info-details p {
  font-size: 1.8rem;
  margin: 1.5rem 0;
}

.info-details a {
  text-decoration: none;
  color: var(--text-color);
}

.info-details span {
  font-weight: 600;
  color: var(--second-bg-color);
}

.social-media {
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.social-media h3 {
  font-size: 2.4rem;
  text-align: center;
}

.social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: transparent;
  border: 0.2rem solid var(--text-color);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--text-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.5s ease;
}

.social-media a:hover {
  background: transparent;
  color: var(--bg-color);
  border-color: var(--bg-color);
}
.permissions {
  margin-top: 4rem;
}

.permissions h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.permission-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.permission-images img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.permission-images img:hover {
  transform: scale(1.1);
}

.permission-images .enamad {
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
}

.permission-images .samandehi {
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
}

.permission-images .zarinpal {
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact-form {
  width: 490px;
}

.contact-form form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form form .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 13px 0;
}

.contact-form form .input-box input::placeholder {
  margin-right: 3rem;
}

.contact-form form .input-box input,
.contact-form form textarea {
  width: 85%;
  height: 100%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  color: #fff;
  font-size: 16px;
  padding: 0 15px;
}

.contact-form form textarea {
  resize: none;
}

.contact-form form .btn {
  margin-top: 2rem;
  cursor: pointer;
}

.contact-form form .btn {
  width: 40%;
  height: 48px;
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: var(--text-color);
  border: 2px solid var(--bg-color);
  border-radius: 34px;
  background-color: var(--bg-color);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 45px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--second-bg-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover::before {
  scale: 3;
}

.btn:hover {
  color: #212121;
  scale: 1.1;
  border: 2px solid var(--second-bg-color);
  box-shadow: 0 0px 20px var(--second-bg-color);
}

.btn:active {
  scale: 1;
}

@media (max-width: 1948px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 1800px) {
  html {
    font-size: 53%;
  }

  .header {
    width: 76%;
  }

  .navbar a {
    font-size: 2.6rem;
    margin-right: 5rem;
  }
}

@media (max-width: 1600px) {
  .header {
    position: absolute;
    top: 4rem;
    width: 98%;
  }
}

@media (max-width: 991px) {
  .navbar a {
    font-size: 2.5rem;
    margin-right: 4rem;
  }

  section {
    padding: 10rem 3% 2rem;
  }

  #menu-icon {
    display: block;
  }

  .header {
    position: fixed;
    top: 13px;
    padding: 2rem 3%;
    background: rgba(26, 26, 26, 0.345);
    backdrop-filter: blur(20px);
  }

  #menu-icon {
    display: block;
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
  }

  .navbar {
    position: fixed;
    top: -26px;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.808);
    transition: 0.5s ease;
    z-index: 999;
  }

  .navbar.active {
    right: -4%;
  }

  #login {
    display: none;
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 2rem 0;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    width: 100%;
    text-align: right;
  }

  .navbar a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  #menu-icon {
    font-size: 3rem;
    z-index: 1000;
    position: fixed;
  }

  .home {
    flex-direction: column;
  }

  .navbar .logo {
    margin-bottom: 3rem;
    order: -1;
  }

  #login-icon {
    position: relative;
    top: 0.5rem;
    display: block;
  }

  .navbar {
    position: fixed;
    top: -24px;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.761);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: 0.5s ease;
    z-index: 999;
  }

  .navbar.active {
    right: -4%;
  }

  .navbar a {
    display: block;
    font-size: 1.8rem;
    margin: 1.5rem 0;
    padding: 1rem 3rem;
    text-align: right;
    color: var(--text-color);
  }

  .navbar a:hover {
    color: var(--second-bg-color);
  }

  .menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .logo {
    font-size: 3.8rem;
    color: #1e3a8a;
    font-weight: 600;
    /* margin-bottom: 3rem; */
    text-align: center;
    width: 100%;
  }

  .Contact-us-page {
    padding-top: 15rem;
    gap: 4rem;
  }

  .Contact-us-page::before {
    display: none;
  }

  .form,
  .contact-form {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .navbar a {
    display: block;
    font-size: 2.5rem;
    margin: 2rem 0;
  }

  #login {
    display: none;
  }

  #login-icon {
    display: block;
  }

  .home {
    flex-direction: column;
  }

  .home-content h1 {
    font-size: 5rem;
  }

  .home-content h3 {
    font-size: 2.6rem;
  }

  .logo {
    text-align: center;
  }

  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .Contact-us-page {
    padding: 12rem 5% 2rem;
  }

  .form,
  .contact-form {
    padding: 20px;
    margin-top: 7rem;
  }
}
