body, h1, h2, h3, h4, h5, h6, p, a, button, input {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.navbar {
  position: absolute;              /* روی اسلایدر قرار می‌گیره */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.15);  /* کاملاً شفاف */
  backdrop-filter: blur(10px);                 /* افکت شیشه‌ای */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}



.map-container {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 20;
}



.navbar-brand img {
  height: 70px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: #2f1c43 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s, border-bottom 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
  border-bottom: 2px solid #ffd700;
}


.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-img-glow img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
  transition: transform 0.3s;
}

.service-icon-glow {
  font-size: 3rem;
  color: #007bff;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}

.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-fade.show {
  opacity: 1;
  transform: translateY(0);}
  
  .glass-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 123, 255, 0.3);
}



.service-icon-glow:hover {
  transform: rotate(10deg) scale(1.1);
  transition: all 0.3s ease-in-out;
}

footer {
  background: #111;
  color: #fff;
}

footer h5 {
  color: #ffc107;
  margin-bottom: 1rem;
}

footer p, footer a {
  color: #ccc;
  font-size: 0.9rem;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.slider-bg {
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
}

.slider-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  border-radius: 16px;
}

.carousel-item {
  transition: transform 1s ease, opacity 1s ease !important;
}

.circle-wrapper {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

