* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family:  sans-serif;
    background: #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;
  }
}

  .contact {
    text-align: center;
    padding: 80px 20px 50px;
    background: linear-gradient(135deg, #0ea5e9, #0f172a);
  }
  .contact h1 {
    font-size: 3rem;
    color: #67e8f9;
    text-shadow: 0 0 12px #22d3ee;
  }
  .contact p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #cbd5e1;
  }
  
  
  .cont-1 {
    display: flex;
    gap: 40px;
    padding: 60px 10%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  /* FORM */
  .form {
    flex: 1 1 48%;
    background: rgba(255,255,255,0.04);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border-left: 4px solid #22d3ee;
    box-shadow: 0 0 20px rgba(34,211,238,0.15);
  }
  .form h2 {
    color: #67e8f9;
    margin-bottom: 20px;
  }
  .form form input,
  .form form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #22d3ee33;
    border-radius: 8px;
    color: #dbeafe;
    font-size: 1rem;
    outline: none;
  }
  .form form input:focus,
  .form form textarea:focus {
    border-color: #22d3ee;
  }
  .form form button {
    padding: 12px 25px;
    background: #22d3ee;
    color: #0f172a;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .form form button:hover {
    background: #0ea5e9;
    box-shadow: 0 0 10px #22d3eeaa;
  }
  
  
  .info {
    flex: 1 1 40%;
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border-right: 4px solid #22d3ee;
    box-shadow: 0 0 25px rgba(34,211,238,0.1);
    position: relative;
  }
  .info h2 {
    color: #67e8f9;
    margin-bottom: 20px;
  }
  .info p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #cbd5e1;
  }
  
  
  .lines {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 0;
  }
  .line {
    width: 4px;
    height: 50px;
    background: #22d3ee;
    border-radius: 4px;
    animation: glowPulse 1.5s ease-in-out infinite alternate;
    opacity: 0.5;
    box-shadow: 0 0 10px #22d3eeaa;
  }
  .line1 { animation-delay: 0s; }
  .line2 { animation-delay: 0.3s; }
  .line3 { animation-delay: 0.6s; }
  
  @keyframes glowPulse {
    0% {
      height: 40px;
      opacity: 0.4;
    }
    100% {
      height: 70px;
      opacity: 1;
    }
  }
  
  
  
  @media (max-width: 768px) {
    .cont-1 {
      flex-direction: column;
    }
    .form, .info {
      flex: 1 1 100%;
    }
    .contact h1 {
      font-size: 2.2rem;
    }
    .lines {
      position: relative; 
      bottom: auto;
      left: auto;
      margin-top: 20px;
      justify-content: left;
    }
  
    .line {
      height: 30px;
    }
    
  }
  