* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #b8860b;
}
.logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #b8860b;
  transform: scale(1.05);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #b8860b;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}
.mobile-menu a:hover {
  color: #b8860b;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
    animation: fadeDown 0.3s ease;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.services-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
  font-size: 3rem;
  color: #b8860b;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer {
  background: #111;
  color: #fff;
  padding: 3rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-about {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-about img {
  height: 50px;
  margin-bottom: 0.5rem;
}

.footer-about h3 {
  color: #b8860b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-about p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #b8860b;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b8860b;
}

.footer-contact p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: #b8860b;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.social-icons a {
  color: #b8860b;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }

  .footer-links ul,
  .footer-contact p {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 2rem 3rem;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 250px;
    margin-bottom: 0;
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 1rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

.back-to-top {
  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 45px;

  height: 45px;

  border: none;

  border-radius: 50%;

  background: #b8860b;

  color: #fff;

  font-size: 1.2rem;

  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  display: none;

  justify-content: center;

  align-items: center;

  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;

  z-index: 999;
}

.back-to-top:hover {
  background: #e0a106;

  transform: scale(1.1);
}

.back-to-top.show {
  display: flex;

  opacity: 1;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;

    right: 20px;

    width: 40px;

    height: 40px;

    font-size: 1rem;
  }
}

.fade-in-up {
  opacity: 0;

  transform: translateY(30px);

  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;

  transform: translateY(0);
}
