@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');
body {
  background: #fff;
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}
/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  margin-top: 0;
  padding: 10px 0px 15px 0px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  width: 140px;
  height: 46px;
  object-fit: contain;
  margin-left: 10px;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1rem;
  color: #444;
}
.header-icons span {
  cursor: pointer;
}
.icon-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #5F5E5E;
}
.icon-group + .icon-group {
  border-right: 2px solid #e8e8e8;
}
.icon-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #5F5E5E;
}
/* Menu */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 0;
  min-height: 42px;
  margin-top: 15px;
}
.menu {
  flex: 1;
  min-width: 0;
  margin-left: 0;
  border-left: none;
  position: relative;
  font-size: 14px;
  color: black;
}
.menu-buttons {
  display: flex;
  gap: 8px;
}
.menu-buttons button {
  width: 69px;
  height: 37px;
  min-width: unset;
  min-height: unset;
  padding: 9px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0084FF;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  line-height: 18.75px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.menu-buttons button:hover {
  background: #006acc;
}
.menu a {
  text-decoration: none;
  color: #222;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.2s;
  display: inline-block;
}
.menu a.active, .menu a:hover {
  color: #2176ae;
}

.menu a.active {
  position: relative;
  color: #0084ff !important;
  padding-right: 0px;
  padding-left: 10px;
  background-repeat: no-repeat !important;
  background-position: right -1px !important;
  background-size: 45%;
  border-left: 2px solid #e8e8e8;
}

.menu .home-icon {
  font-size: 1rem;
  margin-left: 2px;
}
/* Top Buttons */
.top-buttons {
  display: flex;
  gap: 8px;
  margin: 18px 0 0 0;
  justify-content: flex-start;
  padding-right: 18px;
}
.top-buttons button {
  background: #2176ae;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 6px 18px;
  font-size: 0.98rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.top-buttons button:hover {
  background: #155a8a;
}
/* Message Box */
.message-box {
  width: 95vw;
  max-width: 700px;
  min-height: 180px;
  background: repeating-linear-gradient(120deg, #f8eaea 0 8px, #fff 8px 24px);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  margin: 18px auto 0 auto;
}
.message-box p {
  color: #2176ae;
  font-size: 1.15rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 0;
}
/* Global Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding-bottom: 20px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b3e0fa;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots .dot.active {
  background: #21b6ae;
}
/* Bottom Buttons */
.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0 0 0;
  flex-wrap: wrap;
  margin-bottom: 84px; /* 64px footer height + 20px extra space */
}
.bottom-btn {
  background: #eaf6fd;
  border-radius: 22px;
  width: 214px;
  height: 50px;
  text-align: center;
  color: #222;
  font-size: 0.98rem;
  border: none;
  box-shadow: 0 1px 4px rgba(33,118,174,0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.bottom-btn:hover {
  background: #d2eafd;
}
.bottom-btn .icon {
  font-size: 1.2rem;
  color: #2176ae;
}
@media (max-width: 900px) {
  .container {
    padding: 0 4vw;
  }
  .header {
    margin-top: 8px;
  }
  .menu {
    padding: 0 10px;
    gap: 10px;
    font-size: 0.97rem;
    height: 38px;
  }
  .logo {
    height: 30px;
    margin-left: 6px;
  }
  .header-icons {
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .menu-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: unset;
    padding: 0;
  }
  .menu {
    margin-left: 0;
    border-left: none;
    margin-bottom: 8px;
  }
  .menu-buttons {
    justify-content: flex-start;
    margin-bottom: 6px;
  }
  .header {
    padding: 4px 4vw 2px 4vw;
    min-height: 32px;
  }
  .header-left {
    gap: 4px;
  }
  .logo {
    height: 22px;
    margin-left: 3px;
  }
  .header-icons {
    font-size: 0.9rem;
    gap: 4px;
  }
  .menu {
    padding: 0 2vw;
    gap: 6px;
    font-size: 0.93rem;
    height: 32px;
  }
  .menu a {
    padding: 3px 6px;
    font-size: 0.93rem;
  }
  .image-slider {
    margin-bottom: 0;
  }
  .slider-dots {
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 10px;
    padding: 10px;
  }
  .slider-dots .dot {
    width: 20px;
    height: 20px;
  }
  .bottom-buttons {
    margin: 0;
  }
}
.message-slider {
  width: 95vw;
  max-width: 700px;
  min-height: 180px;
  background: repeating-linear-gradient(120deg, #f8eaea 0 8px, #fff 8px 24px);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  margin: 18px auto 0 auto;
  position: relative;
  flex-direction: column;
}
.message-slider .slide {
  display: none;
}
.message-slider .slide.active {
  display: block;
}
.message-slider .slide p {
  color: #2176ae;
  font-size: 1.15rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 1px 4px rgba(33,118,174,0.08);
  color: #2176ae;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slider-btn.prev {
  right: 10px;
}
.slider-btn.next {
  left: 10px;
}
.slider-btn:hover {
  background: #e3f0fa;
}
@media (max-width: 700px) {
  .message-slider {
    width: 99vw;
    padding: 10px 2vw;
    min-height: 120px;
  }
  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .slider-btn.prev {
    right: 2px;
  }
  .slider-btn.next {
    left: 2px;
  }
  .slider-dots {
    margin-top: 10px;
  }
  .message-slider .slide p {
    font-size: 0.98rem;
    line-height: 1.7rem;
  }
}
.image-slider {
  width: 1170px;
  height: 340px;
  max-width: 100%;
  min-height: unset;
  aspect-ratio: unset;
  background: #f7fafd;
  border-radius: 10px;
  margin: 15px auto 0 auto;
  box-shadow: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.image-slider .caption {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  color: #2176ae;
  background: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 8px;
  margin: 0 auto;
  padding: 6px 18px;
  width: fit-content;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 4px rgba(33,118,174,0.04);
}
.image-slider .slider-btn {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  background: #fff;
  color: #2176ae;
  border-radius: 50%;
  border: none;
  box-shadow: 0 1px 4px rgba(33,118,174,0.04);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
}
.image-slider .slider-btn.prev { right: 10px; }
.image-slider .slider-btn.next { left: 10px; }
.image-slider .slider-btn:hover { background: #e3f0fa; opacity: 1; }
.image-slider .slider-dots {
  position: static;
  bottom: unset;
  left: unset;
  right: unset;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}
.image-slider .slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b3e0fa;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.image-slider .slider-dots .dot.active {
  background: #21b6ae;
}
@media (max-width: 1200px) {
  .container {
    width: 98%;
    padding: 0 1%;
  }
  .image-slider {
    width: 100%;
    height: auto;
    aspect-ratio: 1170/340;
  }
  .image-slider img {
    border-radius: 8px;
  }
  .image-slider .caption {
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0;
  }
  .image-slider {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 600px) {
  .image-slider {
    width: 99vw;
    height: calc(99vw * 340 / 1170);
    min-height: 90px;
    border-radius: 5px;
  }
  .image-slider img {
    border-radius: 5px;
  }
  .image-slider .slider-btn {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  .image-slider .slider-btn.prev { right: 2px; }
  .image-slider .slider-btn.next { left: 2px; }
  .image-slider .slider-dots {
    bottom: 4px;
    gap: 3px;
  }
  .image-slider .slider-dots .dot {
    width: 6px;
    height: 6px;
  }
  .image-slider .caption {
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
  }
}
.separator {
  width: 100%;
  height: 3px;
  background: #222;
  margin: 18px 0;
  border: none;
}

/* Footer Styles */
.footer {
    background-color: #dff0fd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1440px;
    height: 64px;
    margin: 0 auto;
    z-index: 1000;
}

.footer-text {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    margin: 0 20px;
}

.footer-button {
    background-color: #008cff;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    transition: background-color 0.2s;
    height: 44px;
}

.footer-button:hover {
    background-color: #0073cc;
}

.footer-logo {
    width: 40px;
    height: 30px;
    object-fit: contain;
}

.footer-right {
    display: flex;
    align-items: center;
}
@media (max-width: 1440px) {
    .footer {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        height: auto;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .bottom-buttons {
        margin-bottom: 120px; /* Increased for stacked footer */
    }
}

