
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

h2 {
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
}

input {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button[type="submit"] {
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 600px) {
    .popup-content {
        width: 95%;
    }
}

.navbar .navbar-nav .nav-link {
  padding: 0px 15px !important;
  /* color: var(--tertiary); */
  color: #fff;
  font-weight: 500;
  outline: none;
}

  /* Basic button styles */
.btn {
  /*background-color: #ed2f5e;*/
  border: none;
  border-radius: 4px;
  /*padding: 0px 20px;*/
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-link {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
}

/* Hover effect */
    /*.btn:hover {*/
    /*  background-color: #fff112;*/
    /*}*/

/* New responsive class */
.responsive-btn {
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 768px) {
  .responsive-btn {
    padding: 15px;
    font-size: 16px;
  }

  .btn-link {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .responsive-btn {
    padding: 12px;
  }

  .btn-link {
    font-size: 14px;
  }
}

   .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 19px;
    margin: 5px;
    padding: 5px 12px;
    background: #4e1742 !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}
.owl-theme .owl-nav {
    margin-top: 0px;
}