.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;
}
/* ________________________________________________NAVBAR_____________________________________________ */

.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;
}
button>a{
    color: inherit;
    text-decoration: none;
}
@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;
  }
}
/* ________________________________________________________________________CYBER CASES________________________________________________________________________________ */
.hero-case{
    background-color: #171717;
    color: white;
    min-height: 100vh;
    height: auto;
    min-width: 280px;
    width: 100%;
}
.hero-case h1{
    text-align: center;
    padding-bottom: 4rem;
    font-family: Exo 2;
    font-size: 2.5rem;
}
.text-cases{
    padding-left: 5rem;
    padding-right: 3rem;
}
.text-cases h2{
    color: #00ffae;
    padding-top: 2rem;
    padding-bottom: 1.2rem;
}
#twitter-hack p, hr{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#twitter-hack hr{
    padding-bottom: 4rem !important;
}
/* ________________________________________________FOOTER_____________________________________________ */
.footer{
    background-color: black;
    color: white;
    height: 70vh;
    min-width: 280px;
    width: 100%;
    height: auto !important;
}
.footer-sec{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}
.footer-menus{
    flex: 1 1 200px;
    min-width: 200px;
    margin-top: 5rem;
    min-width: 0;
    max-width: 100%;
}
.foot-headings{
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: #00ffae;
}
.logo-f{
    font-family: orbitron;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.footer-sec .icons .fa-square-facebook, .fa-square-twitter, .fa-youtube{
    font-size: 1.5rem;
    margin-left: 1.2rem;
}
.footer-sec .icons {
    font-size: 1.5rem;
    margin-top: 1.2rem;
    transition: transform 0.3s ease;
}
.footer-sec .icons i:hover{
    cursor: pointer;
    transform: scale(1.05) translateY(-3px);
    color: #00ffae;
}
.quick:hover{
    cursor: pointer;
    transform: scale(1.05) translateY(-3px);
    color: #00ffae;
}
.subscribe-box {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  max-width: 320px;
  background-color: white;
}
.subscribe-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 0;
  background-color: white;
}
.subscribe-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, #00b4db, #0083b0);
  color: white;
  font-weight: bold;
  transition: 0.3s ease;
}
.subscribe-btn:hover {
  opacity: 0.9;
}
.last{
    text-align: center;
}
@media (max-width: 1075px) {
  .footer-menus:last-child {
    flex-basis: 100%;
  }
  .footer{
    height: auto;
    width: 100%;
  }
}
@media (max-width:993px) {
    .footer-sec {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 3rem 1rem;
  }

  .footer-menus {
    width: 100%;
    max-width: 400px;
    margin-top: 0;
    margin-top: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 3rem 1rem;
  }
}
@media (max-width: 355px) {
  .subscribe-btn {
    padding: 0 12px;
    font-size: 13px;
  }

  .subscribe-input {
    font-size: 13px;
    padding: 0 10px;
  }

  .subscribe-box {
    height: 44px;
  }
}
[data-aos] {
  will-change: transform, opacity;
}
@media (max-width: 600px) {
  .cybercards,
  .newscards {
    flex-direction: column;
    align-items: center;
  }
}
