
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family:  sans-serif;
    background-color: #0f172a;
    color: #dbeafe;
  }
  a {
    color: #22d3ee;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  .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 section  */
  .hero {
    background-color: #0f172a;
    height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero .about {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 12px;
  }
  .hero h1 {
    font-size: 3rem;
    color: #22d3ee;
  }
  .hero h1 span {
    color: #67e8f9;
  }
  .hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #cbd5e1;
  }
  
  /* cards section  */
  .cards {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
  }
  .card {
    background-color: #1e293b;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .card img.icon {
    width: 100px;
    height: 100px;
  }
  .card div {
    flex: 1;
  }
  .card h2 {
    font-size: 1.8rem;
    color: #22d3ee;
    margin-bottom: 10px;
  }
  .para {
    position: relative;
  }
  .para::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #22d3ee;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  .card p, .card li {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
  }
  .card ul {
    padding-left: 20px;
    list-style: disc;
  }
  
 /* contct sec  */
  .contact {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
  }
  .contact h2 {
    font-size: 2rem;
    color: #22d3ee;
    margin-bottom: 15px;
  }
  
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes slideInTop {
    0% { transform: translateY(-60px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @keyframes fadeLeft {
    0% { transform: translateX(-60px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes fadeRight {
    0% { transform: translateX(60px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes lock {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes zoom {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes flip {
    0% { transform: rotateY(90deg); opacity: 0; }
    100% { transform: rotateY(0); opacity: 1; }
  }
  

  .cyber {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
  }
  .pic {
    opacity: 0;
    transform: translateX(-60px);
    animation: fadeLeft 1s ease-out forwards;
  }
  .pic1 {
    opacity: 0;
    transform: translateX(60px);
    animation: fadeRight 1s ease-out forwards;
  }
  .welcome {
    opacity: 0;
    transform: translateX(60px);
    animation: slideInTop 1s ease-out forwards;
  }
  .lock {
    animation: bounce 2s infinite;
  }
  .what {
    animation: zoom 1s ease-out forwards;
  }
  .khayal {
    animation: flip 1s ease-out forwards;
  }


  

  @media (max-width: 768px) {
    .card {
      flex-direction: column;
      text-align: center;
    }
  }
  