body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: #f9fbfc;
  color: #333;
    background: #dbdbdb;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.bg-soft {
  background-color: #f0f7fa;
}

.hero-slider {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-slider .content {
  z-index: 2;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  color: #fff;
}

.hero-slider h1,
.hero-slider p {
  color: white;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #333;
}
.navbar-nav .nav-link:hover {
  color: #6cb4ee;
}
.step-number {
  width: 48px; height: 48px; line-height: 48px;
  background: #6cb4ee; color: white; border-radius: 50%;
  margin: auto auto 10px auto; font-weight: bold;
}
.btn-primary {
  background-color: #6cb4ee; border-color: #6cb4ee;
}
.btn-primary:hover {
  background-color: #589cd6;
}
.accordion-button:not(.collapsed) {
  background-color: #e4f1fc;
}
.scroll-wrapper {
  position: relative;
}

.scroll-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-gallery::-webkit-scrollbar {
  display: none;
}
.img-thumb {
  flex: 0 0 auto;
  width: 200px; height: auto;
  object-fit: contain;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0.4;
  transform: scale(0.95);
  transition: all 0.6s ease-in-out;
}
.img-thumb.visible {
  opacity: 1;
  transform: scale(1);
}

.circle-progress {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#008dff 0%, #ddd 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: background 1s ease-out;
}

.circle-progress::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
}

.count-label {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  z-index: 1;
  color: #333;
}

.img-thumb.centered {
  opacity: 1;
  transform: scale(1.05);
}


.scroll-to-top {
  position: fixed;
  bottom: 40px;
  left: 30px;
  z-index: 999;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  width: 50px;
  height: 65px;
  border-radius: 50% 50% 60% 60% / 40% 40% 80% 80%;
  transform: translateY(-5px);
  background-color: red;
}

.navbar {
    background-color: #09303b;
  }

  .navbar-nav .nav-link {
    color: white;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #ffe082;
    outline: none;
  }

  .header {
    background: linear-gradient(135deg, #99ffff, #006f8f);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    user-select: none;
	height: 200px;
  }

  .avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f3f8fb;
    margin-top: -100px;
    display: inline-block;
	background: #e1e1e1;
  }

  .carousel-item img {
    object-fit: cover;
    height: 400px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
  }

  .carousel-item img:hover,
  .carousel-item img:focus {
    transform: scale(1.02);
    outline: none;
  }

  .card-custom {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    background: white;
  }

  .card-custom:hover,
  .card-custom:focus-within {
    transform: translateY(-5px);
    outline: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }

  #map {
    height: 300px;
    border-radius: 1rem;
    margin-top: 1rem;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
  }

  #mapUnavailableMsg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
    color: #555;
    background: #fafafa;
    border-radius: 1rem;
    text-align: center;
  }

   .text-justify {
      text-align: justify;
       line-height: 40px;
    }
    
  .footer {
    background-color: #09303b;
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
    user-select: none;
  }

  .footer a {
    color: #ccc;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  .footer a:hover,
  .footer a:focus {
    color: #1abc9c;
    outline: none;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 40px;
    left: 30px;
    z-index: 999;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  #scrollTopBtn:hover,
  #scrollTopBtn:focus {
    width: 50px;
    height: 65px;
    border-radius: 50% 50% 60% 60% / 40% 40% 80% 80%;
    transform: translateY(-5px);
    background-color: orange;
  }

  .custom-tabs {
  background-color: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

.custom-tabs .nav-link {
    color: #495057;
    border: none;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
    color: #fff;
    background-color: #007bff;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

.custom-tabs .tab-content {
    padding: 30px;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  .hover-social:hover {
  transform: scale(1.3);
  opacity: 0.9;
  transition: all 0.3s ease;
}


@keyframes fadeZoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#imageModal .modal-content {
  animation: fadeZoomIn 0.4s ease-out;
  backdrop-filter: blur(8px);
}

.scroll-wrapper {
  position: relative;
}

.gallery-img {
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}


.gallery-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.scroll-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
}

.scroll-gallery::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.image-item {
  flex: 0 0 auto;
  width: 180px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.scroll-btn {
  position: absolute;
  transform: translateY(-50%);
  top: 8%;
  border: none;
  padding: 9px 12px;
  font-size: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  background: #f0f0f0;
}

.scroll-btn:hover {
  background-color: #48bcdd;
}

.scroll-btn.left {
  left: 2.0rem;
}

.scroll-btn.right {
  left: 5.0rem;

}

.map-box {
      border: 2px solid #dee2e6;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
    iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }