/* Global Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* HTML and Body Defaults */
html, body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Vazir', sans-serif;
  scroll-behavior: smooth;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.shadow-2xl {
  box-shadow: none !important;
}

/* Swiper Styles */
.swiper-container {
  width: 100% !important;
  overflow: hidden;
}

.swiper-slide {
  width: 100% !important;
}

.swiper-button-next, .swiper-button-prev {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  color: #16a34a;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  z-index: 10;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.55);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.125rem;
}

.swiper-button-next {
  right: 0.75rem;
}

.swiper-button-prev {
  left: 0.75rem;
}

.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  left: 5% !important;
  right: 5% !important;
  bottom: 1.5rem !important;
  width: 90% !important;
}

.swiper-pagination-progressbar-fill {
  background: #fff;
}

.slider-text a {
  max-width: 180px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
}

/* Mobile Menu */
.mobile-menu {
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.active {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* Section Transition */
section {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* reCAPTCHA badge fix */
.grecaptcha-badge {
  bottom: 6px !important;
  right: 6px !important;
  z-index: 99;
}




