* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  line-height: 1.6;
  color: var(--primary-color);
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

img {
  object-fit: cover;
  width: 100%;
}

/* <!-- ==================Buttons==================== --> */
.btn-solid-main {
  /* width: 160px;
  height: 45px; */
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #77530a, #ffd277, #77530a);
  background-size: 300%;
  background-position: left;
  color: #fffbe6;
  font-weight: bold;
  /* font-family: 'Cairo', sans-serif; */
  font-size: 19px;
  text-decoration: none;
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 6px 16px;
  cursor: pointer;
  transition: background-position 0.6s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(119, 83, 10, 0.3);
  overflow: hidden;
}

.btn-solid-main:hover {
  background-position: right;
  color: #fffbe6;
}

.btn-solid-main:active {
  transform: scale(0.96);
}

.section-title {
  color: #a67c52;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
  text-shadow: 0 0 6px rgba(255, 210, 119, 0.4);
}

.section-desc {
  color: #a67c52;
  font-size: clamp(1rem, 2.5vw, 20px);
}

@media (max-width: 576px) {
  .section-title {
    font-size: 29px;
  }
}

/* <!-- ==================Animation==================== --> */
.floating {
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
