@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Italianno&display=swap');



  * { box-sizing: border-box; margin: 0; padding: 0; }

  .nw {
    width: 100%;
    background: #ffffff;
    font-family: Verdana, Geneva, sans-serif;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: visible;
    position: relative;
    z-index: -1;
  }

  .nw-top {
    background: #CC0000;
    text-align: center;
    padding: 4px 0;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0 0 9px 9px;
    font-family: Caveat, Geneva, sans-serif;
  }

  .nw-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 50px;
    position: relative;
  }

  .nw-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nw-logo-icon {
    width: 42px;
    height: 42px;
    position: relative;
    flex-shrink: 0;
  }

  .nw-logo-icon .big-dot {
    width: 26px;
    height: 26px;
    background: #CC0000;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
  }

  .nw-logo-icon .small-dot {
    width: 10px;
    height: 10px;
    background: #CC0000;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
    right: 0;
    opacity: 0.3;
  }

  .nw-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nw-logo-text .brand {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 4px;
    line-height: 1;
    margin-top: 35px;
  }

  .nw-logo-text .brand span {
    color: #CC0000;
  }

  .nw-logo-text .tagline {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 8px;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
  }

  .nw-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
  }

  .nw-item {
    position: relative;
  }

  .nw-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 1rem;
    height: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-family: Verdana, Geneva, sans-serif;
  }

  .nw-link:hover {
    color: #CC0000;
    border-bottom-color: #CC0000;
  }

  .nw-chevron {
    font-size: 9px;
    transition: transform 0.25s ease;
    color: #aaa;
  }

  .nw-item:hover .nw-chevron {
    transform: rotate(180deg);
    color: #CC0000;
  }

  .nw-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #CC0000;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  }

  .nw-item:hover .nw-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nw-ditem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: 400;
  }

  .nw-ditem:last-child { border-bottom: none; }

  .nw-ditem:hover {
    background: #fff5f5;
    color: #CC0000;
    padding-left: 24px;
  }

  .nw-ditem-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CC0000;
    opacity: 0;
    transition: opacity 0.15s;
    flex-shrink: 0;
  }

  .nw-ditem:hover .nw-ditem-dot { opacity: 1; }

  .nw-divider {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
    margin: 0 0.4rem;
  }

  .nw-bottom-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #CC0000 30%, #CC0000 70%, transparent);
    margin: 0 2rem;
    opacity: 0.2;
  }



/* Top Header Part */

.animated-bg{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background: linear-gradient(45deg,#d2001a,#7462ff,#f48e21,#23d512);
  background-size: 300%, 300%;
  animation: color 12s ease-in-out infinite;
}
@keyframes color{
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}
.animated-bg h1{
  color: rgb(255, 255, 255);
  margin-bottom: -5px;
}
.animated-bg h3{
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
  font-family: Italianno;
  font-size: 30px;
}

.animated-bg .btn{
  padding: 15px 40px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 12px;
}
.animated-bg .btn::after{
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.animated-bg .btn::before{
  content: "";
  background: linear-gradient(
    45deg, 
    #FF0000, #FF7300, #FFFB00, #48FF00,
    #00FFD5, #002BFF, #FF00C8, #FF0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  /* animation */
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 1;
}
@keyframes glowing{
  0% {background-position: 0 0;}
  50% {background-position: 400% 0;}
  100% {background-position: 0 0;}
}
/* hover */
.animated-bg .btn:hover::before{
  opacity: 1;
}
.animated-bg .btn:active:after{
  background: #000;
}
.animated-bg .btn:active{
  color: #ffffff;
  font-weight: bold;
}
