 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #0e0e2c;
      color: white;
    }
    nav {
      background-color: #1a1a40;
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      
    }
    main {
    height: auto;
    margin-bottom: 10%;
  }


    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      display: flex;
      align-items: center;
     
      
    }
    .logo img{
      width:90px ;
      height: 90px;
      
    }
    .logo a{
      color: white;
      text-decoration: none;
    }
    .menu {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      list-style: none;
    }
    .menu-item {
      position: relative;
    }
    .menu-item > a {
      color: white;
      text-decoration: none;
      padding: 0.75rem 1rem;
      display: block;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    .menu-item > a:hover {
      background-color:#2e2e701f;
      border-radius: 5px;
    }
    .submenu {
      display: none;
      position: absolute;
      background-color: #2a2a60;
      list-style: none;
      top: 100%;
      left: 0;
      min-width: 220px;
      border-radius: 5px;
      overflow: hidden;
      animation: fadeIn 0.3s ease-in-out;
      z-index: 998;
    }
    .submenu li a {
      display: block;
      padding: 0.75rem 1rem;
      color: white;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    .submenu li a:hover {
      background-color: #3f3f80;
    }
    /* .menu-item:hover .submenu {
      display: block;
    } */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      width: 35px;
      height: 30px;
      gap: 6px;
      transition: all 0.3s ease-in-out;
    }
    .hamburger div {
      height: 4px;
      width: 100%;
      background-color: white;
      border-radius: 5px;
      transition: all 0.3s ease-in-out;
    }
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInMobile {
      from { opacity: 0; }
      to { opacity: 1; }
    }

  


    body {
  
  color: #f9f9f9;
  font-family: "Euclid Circular B", "Poppins";
}

* {
  box-sizing: border-box;
}

:root {
  --fancy-border: 2px dotted rgb(255 255 255 / 25%);
}

footer {
  position: relative;
  bottom: 112px;
  display: grid;
  gap: 48px;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 56px;
  background: #692acc;
  border-radius: 12px;
}

.hero .bg {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 50vw;
}

.hero .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

h2,
h3,
p {
  margin: 0;
}

.hero h2 {
  font-size: clamp(30px, 6vw, 50px);
  font-weight: 400;
}

.hero p {
  font-size: 17px;
  opacity: 0.7;
  margin-top: 8px;
  max-width: 45%;
  display: none;
}

.box-btn {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px 16px;
  height: 100px;
  width: 21vw;
  min-width: 200px;
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  color: inherit;
  font-size: 18px;
  border: 2px solid rgb(255 255 255 / 65%);
}

.support-btn {
  display: none;
}

.box-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 10px;
  left: 10px;
  border-radius: inherit;
  border-right: var(--fancy-border);
  border-bottom: var(--fancy-border);
  margin-right: -10px;
  margin-bottom: -10px;
}

.box-btn span {
  position: absolute;
  top: 16px;
  right: 16px;
}

.logo {
  position: absolute;
    top: 18px;
    right: 15px;
    height: 48px;

}

.content {
  display: flex;
  flex-direction: column;
  gap: 58px;
  padding: 0 24px 0 56px;
}

nav {
  flex: 1 1 auto;
  display: flex;
  gap: 10vw;
}

nav h3 {
  font-size: 20px;
  margin-bottom: 12px;
  opacity: 0.4;
  font-weight: 400;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  display: inline-block;
  font-size: 20px;
  padding: 10px 0;
}

@media (width >= 860px) {
  .hero .bg {
    right: 0;
  }

  nav {
    gap: 8vw;
  }

  .content {
    flex-direction: row;
    gap: 0;
  }

  .support-btn {
    display: flex;
  }
}

@media (width >= 1036px) {
  .hero p {
    display: block;
  }

  .logo {
    height: 36px;
  }

  .content {
    align-items: flex-start;
    gap: 0;
  }

  .logo {
    margin-right: 72px;
    position: static;
  }
}
