* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family:  sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #dbeafe;
  }
  .exo-2 {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.orbitron {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
   from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html, body{
    max-width: 100%;
    overflow-x: hidden;
}
li>a{
    color: inherit;
    text-decoration: none;
}
div>a{
    color: inherit;
    text-decoration: none;
}
button>a{
    color: inherit;
    text-decoration: none;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-bar{
    background: #0D1117;
background: linear-gradient(90deg, rgba(13, 17, 23, 1) 19%, rgba(26, 26, 46, 1) 58%, rgba(0, 0, 0, 1) 82%);
    padding: 30px;
    width: 100%;
    min-width: 280px;
    animation: fadeInDown 0.6s ease-out;
    color: white;
}
.menus{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
    min-width: 0;
    max-width: 100%;
}
.menus ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style-type: none;
}
.logo{
    /* background-color: pink; */
    font-family: orbitron;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.logo:hover{
    cursor: pointer;
}
.menus ul>li{
    transition: transform 0.7s ease;
}
.menus ul>li:hover{
    cursor: pointer;
    background-color: white;
    color: black;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    transform: scale(1.1);
}
.nav-btns button:hover{
    cursor: pointer;
    background-color: #00ffae;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 16px rgba(206, 191, 191, 0.2);
}
.nav-btns button{
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    border: none;
    background-color: aqua;
    transition: transform 0.3s ease;
    font-weight: 500;
    margin-left: 1.1rem;
    margin-bottom: 1.3rem;
}
@media (max-width: 1150px) {
    .navbar{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
.toggle-btn {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
}

.toggle-btn i {
  font-size: 1.8rem;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .toggle-btn {
    display: block;
  }

  .menus,
  .nav-btns {
    display: none;
    width: 100%;
  }

  .menus.active,
  .nav-btns.active {
    display: block;
  }

  .menus ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }

  .menus ul li {
    width: 100%;
    padding: 10px;
  }

  .nav-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-btns button {
    width: 100%;
    margin-left: 0;
  }

  .navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}


  /* hero section---------------  */
  .hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #0D1117;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(57, 83, 143, 0.8);
  }
  .cntnt {
    position: relative;
    z-index: 2;
  }
  .text {
    font-size: 3.5rem;
    color: #22d3ee;
    text-shadow: 0 0 10px #22d3ee, 0 0 20px #0ea5e9;
    animation: slideInTop 1s ease-out forwards;
  }
  .world {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #cbd5e1;
    animation: fadeIn 2s ease-out forwards;
  }
  
  /* ===========================*/
  .threats {
    background-color: #0f172a;
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  .threats .card {
    background: rgba(14, 58, 179, 0.1);
    border: 1px solid #0d95aa30;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
  }
  .threats .card img {
    width: 70px;
    margin-bottom: 15px;
    margin-left: 110px;
  }
  .threats .card h2 {
    color: #22d3ee;
    margin-bottom: 10px;
  }
  .threats .card p {
    font-size: 0.95rem;
    color: white;
  }
  .threats .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
  }
  

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes slideInTop {
    0% { transform: translateY(-60px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  .thr {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 1s ease-out forwards;
  }

  
  .p { animation-delay: 0.3s; }
  .m { animation-delay: 0.3s; }
  .e { animation-delay: 0.6s; }
  .d { animation-delay: 0.9s; }
  .r { animation-delay: 1.2s; }
  .z { animation-delay: 1.5s; }

  

  @media (max-width: 600px) {
    .text {
      font-size: 2.5rem;
    }
  }