.elementor-2591 .elementor-element.elementor-element-c2379a5{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-630a7b8 */body, .tsn-header, .tsn-nav a, .tsn-logo a {
  font-family: "Poppins", sans-serif;
}

.tsn-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff00c3, #ff9a00, #00eaff);
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tsn-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

/* Logo */
.tsn-logo a {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* Desktop nav */
.tsn-nav {
  display: flex;
}

.tsn-nav a {
  margin-left: 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease;
}

.tsn-nav a:hover {
  opacity: 0.7;
}

/* CTA button */
.tsn-btn {
  padding: 10px 18px;
  background: #ffffff;
  color: #000 !important;
  border-radius: 50px;
  font-weight: 600;
}

.tsn-btn:hover {
  background: #000;
  color: #fff !important;
}

/* Fix page spacing */
body {
  padding-top: 80px;
}

/* ========== MOBILE VIEW ========== */
@media(max-width: 768px) {

  /* Container */
  .tsn-container {
    flex-direction: row;
  }

  /* Logo center */
  .tsn-logo a {
    font-size: 22px;
  }

  /* Hamburger icon */
  .tsn-menu-icon {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    display: block;
  }

  /* Hide desktop menu */
  .tsn-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.2);
    padding: 12px 0;
  }

  /* Open menu */
  .tsn-nav.active {
    display: flex;
    animation: fadeIn .3s ease;
  }

  /* Mobile links style */
  .tsn-nav a {
    margin: 10px 0;
    text-align: center;
    font-size: 18px;
    padding: 8px 0;
    color: #fff;
  }

  /* Mobile CTA button */
  .tsn-btn {
    background: #fff;
    color: #000 !important;
    border-radius: 30px;
    margin-top: 6px;
    width: 140px;
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}/* End custom CSS */