/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply Poppins to Navigation */
.wtw-header {
  font-family: 'Poppins', sans-serif  !important;
}


/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.wtw-header {
  text-decoration: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 10px 0;
}

.wtw-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  padding: 0 55px;

}

.wtw-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

/* Logo with Float Animation */
.wtw-logo {
   display: inline-flex; 
  align-items: center;
 
  animation: wtwLogoFloat 3s ease-in-out infinite;
}

@keyframes wtwLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.wtw-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Mobile Toggle */
.wtw-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.wtw-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.wtw-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.wtw-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.wtw-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.wtw-menu-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin:0;
  padding:0;
}

.wtw-menu-item {
  position: relative;
}

.wtw-menu-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  text-decoration: none;
   font-size: 17px; /* Adjustable */
  font-weight: 400; /* Regular weight */
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
   line-height: 1;
}

.wtw-menu-link:hover {
  color: #a25dd6;
  text-decoration: none;
}

/* Dropdown Arrow */
.wtw-dropdown-arrow {
  transition: transform 0.3s ease;
}

.wtw-has-dropdown:hover .wtw-dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.wtw-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  margin-top: 10px;
}

.wtw-has-dropdown:hover .wtw-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wtw-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
   font-size: 15px; /* Adjustable */
  font-weight: 400; /* Regular weight */
  
  transition: all 0.3s ease;
}

.wtw-dropdown-link:hover {
  background: #f5f5f5;
  color: #a25dd6;
  padding-left: 25px;
  text-decoration: none;
}

/* Contact Button */
.wtw-contact-btn {
  display: inline-flex;
  padding: 12px 30px;
  background-color: #d9d9d9;
  /* background: linear-gradient(135deg, #e8d9f5, #d9c5e8); */
  color: #a25dd6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(217, 197, 232, 0.4);
}

.wtw-contact-btn:hover {
  color: #a25dd6;
  background: linear-gradient(135deg, #d9c5e8, #c9b5d8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 197, 232, 0.6);
  text-decoration: none; 
}

/* Responsive */
@media (max-width: 992px) {
  .wtw-mobile-toggle {
    display: flex;
  }

  .wtw-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
  }

  .wtw-menu.active {
    right: 0;
  }

  .wtw-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .wtw-menu-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .wtw-menu-link {
    width: 100%;
    padding: 15px 0;
  }

  .wtw-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .wtw-has-dropdown.active .wtw-dropdown-menu {
    max-height: 300px;
    margin-top: 10px;
  }

  .wtw-contact-btn {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wtw-logo-img {
    height: 40px;
  }

  .wtw-menu {
    width: 100%;
    right: -100%;
  }
}