:root {
  --primary: #f0a61c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.hero {
  padding: 140px 0 80px;
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4") center/cover fixed;
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.btn-warning {
  background: var(--primary);
  border: none;
}

.feature-card {
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  background: white;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 15px;
}

.counter-section {
  padding: 70px 0;
  background: var(--primary);
  color: white;
}

.service-card {
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.testimonial {
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

footer {
  background: #111;
  color: white;
  padding: 50px 0;
}

.social i {
  margin: 10px;
  font-size: 22px;
  cursor: pointer;
}

#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
}
