 header {
  background: linear-gradient(90deg, #1d2d22, #000);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo-wrapper {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
}

/* Static image */
.logo-static {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

/* GIF image */
.logo-gif {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
}

/* header .logo img {
  height: 45px;
} */

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn {
  background: linear-gradient(90deg, #c59d37, #a97159);
  color: #000;
  border: 1.5px solid #c9a22d;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  /* background: #c9a22d; */
  color: #ffffff;
}

/* Hamburger menu icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  .hamburger {
    display: block;
  }

  nav {
    width: 100%;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    /* background: #000; */
    padding: 15px 0;
  }

  nav ul li {
    text-align: center;
  }

  .btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}



@media (max-width: 575.98px) {
  /* Modal content responsiveness */
  #contactModal .modal-content {
    width: 90%;
    margin: 10% auto;
    padding: 1.5rem;
    border-radius: 10px;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
    margin-left:20px;
  }

  /* Adjust heading size */
  #contactModal h2 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  /* Input and textarea responsiveness */
  #contactModal input,
  #contactModal textarea {
    width: 100%;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    /* padding: 0.75rem; */
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  /* Submit button full width */
  #contactModal button {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem;
    background-color: #C18F2D; /* your theme color */
    color: white;
    border: none;
    border-radius: 5px;
  }

  /* Close icon adjustment */
  #contactModal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
}
