/* @import url("https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"); */

* {
  font-family: "Reem Kufi", sans-serif;
  font-weight: 500;
  font-style: normal;
  scroll-behavior: smooth;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.gold-gradient {
  background: linear-gradient(135deg, #ffd700 0%, #ffb400 100%);
}
.gold-text {
  background: linear-gradient(135deg, #ffd700 0%, #ffb400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.hover-glow:hover {
  box-shadow: 0 0 20px rgba(167, 142, 0, 0.5);
  border-color: #6a5a00;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* header section */

.header-btn {
  font-size: 13px;
}

.nav-link {
  font-size: 13px;
}

button{
  cursor: pointer;
}

@media (min-width: 1280px) {
  .header-btn {
    font-size: 14px;
  }
  .nav-link {
    font-size: 16px;
  }
}

/* form valiadtion */
.form-error {
  color: #e53935;
  font-size: 0.7rem;
  margin-top: 2px;
  display: block;
  transition: color 0.2s;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media (min-width: 1024) {
  .form-error {
    font-size: 0.85rem;
  }
}

/* Fade + Scale Animation */
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-scale {
  animation: fadeScale 0.3s ease-out forwards;
}


/* service section */

.service-section {
  background-image: url('../image/bg-img/img-1.webp');
}