* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a;
    color: #dbeafe;
    overflow-x: hidden;
  }
  

  .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;
}
/* ________________________________________________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;
}
@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 {
    text-align: center;
    padding: 80px 20px 50px;
    background: linear-gradient(135deg, #0ea5e9, #0a1225);
  }
  .hero h1 {
    font-size: 3rem;
    color: #67e8f9;
    text-shadow: 0 0 15px #22d3ee;
  }
  .hero p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #cbd5e1;
  }
  
  
  .cases {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  

  .line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #298d9c, transparent);
  }
  
  
  .case {
    display: flex;
    align-items: flex-start;
    margin-left: 80px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease forwards;
  }
  .case .dot {
    width: 18px;
    height: 18px;
    background-color: #22d3ee;
    border-radius: 50%;
    margin-right: 20px;
    margin-top: 6px;
    box-shadow: 0 0 12px #22d3eeaa;
  }
  .text {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px 30px;
    border-left: 4px solid #22d3ee;
    backdrop-filter: blur(10px);
    border-radius: 10px;
  }
  .text h2 {
    font-size: 1.5rem;
    color: #67e8f9;
    margin-bottom: 8px;
  }
  .text p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
  }
  
  
  @keyframes fadeInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .d-1 { animation-delay: 0.2s; }
  .d-2 { animation-delay: 0.4s; }
  .d-3 { animation-delay: 0.6s; }
  .d-4 { animation-delay: 0.8s; }
  .d-5 { animation-delay: 1s; }
  

  @media (max-width: 600px) {
    .case {
      flex-direction: column;
      margin-left: 30px;
    }
    .hero h1 {
      font-size: 2.2rem;
    }
  }