
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* --- HEADER BASE --- */
#header-logo {
  max-width: 180px;
  padding-top: 10px;
}
.download-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #41F096;
    color: #290A46;
    font-family: Raleway, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 20px;
    letter-spacing: 0.7px;
    transition: background-color 0.3s ease;
  }
.btn-download {
 display: none !important;
}

  .download-button:hover {
    background-color: #A0F7CA;
  }
.top-bar {
  background: #290A46;
}

.top-bar li,
.top-bar p {
  color: #fff;
}

/* --- NAVIGATION --- */
header nav .nav > li > a:hover,
header nav .nav > li > a:focus {
  background: transparent;
  color: #57039e;
}

.nav-item-dropdown {
  position: relative;
}

.nav-link-with-caret {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.nav-link-with-caret:hover {
  color: #C89DFF;
}

.svg-caret {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .svg-caret {
  transform: rotate(180deg);
}

/* --- DROPDOWN MENU --- */
.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background-color: #140024;
  padding: 16px;
  display: none;
  min-width: 180px;
  z-index: 5;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item-dropdown .dropdown-menu li {
  margin-bottom: 12px;
}

.nav-item-dropdown .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.nav-item-dropdown .dropdown-menu a {
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: block;
  transition: color 0.2s ease;
}

.nav-item-dropdown .dropdown-menu a:hover {
  color: #C89DFF !important;
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
  z-index: 2;
}

/* --- MEGAMENU --- */
.megamenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #1b0934;
  color: white;
  padding: 2rem 3rem 2rem 1rem;
  display: none;
  z-index: 2001;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  min-width: 800px;
  max-width: 100vw;
  overflow-x: auto;
  box-sizing: border-box;
}

.nav-item-dropdown:hover .megamenu {
  display: block;
}

.megamenu-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.megamenu-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 60px;
  max-width: 140px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 1rem;
  text-align: center;
}

.megamenu-left a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.megamenu-left a:hover {
  color: #C89DFF;
  text-decoration: none;
}

.megamenu-left i,
.megamenu-left svg {
  color: #C89DFF;
  fill: #C89DFF;
  width: 24px;
  height: 24px;
}

.megamenu-right {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  flex: 1;
  padding-left: 0;
}

.megamenu-section {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  max-width: 200px;
	text-align: left;
}

.megamenu-section h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #c78fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.megamenu-section a {
  color: white;
  text-decoration: none;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.megamenu-section a span {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 2px;
}

.megamenu-section a:hover {
  color: #C89DFF;
}

/* --- BUTTONS --- */
.btn {
  background: transparent !important;
  color: #fff !important;
  padding: 7px 12px !important;
  border-radius: 20px;
  border: 1px solid #fff;
  transition: all 0.2s ease-in-out;
}

.btn:hover,
.btn:focus {
  color: #c89Dff !important;
  border-color: #c89Dff;
  background: transparent;
}

.btn-demo {
  background: #41F096;
  color: #290a46;
  padding: 9px 2px 10px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-demo:hover,
.btn-demo:focus {
  background: #A0F7CA;
  color: #290a46;
	text-decoration: none !important;
}

.btn-demo .rotating-icon {
  transition: transform 0.2s ease;
}

.btn-demo:hover .rotating-icon {
  transform: rotate(45deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .megamenu-grid {
    flex-direction: column;
  }
  
  .megamenu-left {
    border-right: none;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .megamenu-right {
    padding-left: 0;
    gap: 1rem;
  }

  .nav-links,
  .nav-item-dropdown {
    display: none !important;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    flex-wrap: nowrap;
  }

  .logo {
    flex-shrink: 0;
    width: 250px;
  }

  .button-group {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .btn {
    flex: 0 0 auto;
    padding: 5px !important;
    margin: 5px;
    width: 120px;
  }
	.btn-download {
		display: block !important;
  background: #41F096;
  color: #290a46;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
		line-height: 20px;
}

.btn-download:hover,
.btn-download:focus {
  background: #A0F7CA;
  color: #290a46;
	text-decoration: none !important;
}

.btn-download .rotating-icon {
  transition: transform 0.2s ease;
}

.btn-download:hover .rotating-icon {
  transform: rotate(45deg);
}

  #header-logo {
    width: 150px;
    padding-top: 10px;
  }

  .btn-demo {
    display: none;
  }
}