@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #0b0c10 0%, #000 100%);
  color: #f0f0f0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
canvas#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00aeff;
  text-shadow: 0 0 10px 00aeff;
}
.hero-brand {
    color: #00aeff;
    text-shadow: 0 0 10px 00aeff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  transition: all 0.4s;
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    text-align: center;
    display: none;
    padding: 1rem 0;
  }
  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
  .news {
    display: none;
  }
  .news-box {
    display: inline-block;
  }
  .news-mobile {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
   border-radius: 40px;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #35b5ff, #2155ff);
    color: #000;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 0 15px #00aeff, 0 0 30px #ff008060;
    text-transform: uppercase;
  }
  .news-mobile:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px #00aeff, 0 0 40px #ff0080cc;
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  /*background: linear-gradient(90deg, #ffcc00, #ff0080);*/
}
}
@media (min-width: 769px) {
  .news-mobile{
    display: none;
  }
  .news-show {
    display: none;
  }
}
.news-box {
    margin: 0 2px 0 0;
    height: auto !important;
    width: 250px;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
    border: #78ceff57 2px solid;
    border-radius: 15px;;
    box-shadow: 0px 0px 15px #35b5ffad;
    background-color: #78ceff4b;
}
.news-show {
  text-align: center;
}
.news-paragraph-header {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #78ceff;
}
.news-header {
    text-align: center;
    font-size: 24px;
    margin-bottom: 1rem;
    border-bottom: 2px solid #35b5ff;
    padding-bottom: 0.5rem;
}
.section {
  min-height: 100vh;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}
.section.show {
  opacity: 1;
  transform: translateY(0);
}
.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: bold;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  /*background: linear-gradient(90deg, #ffcc00, #ff0080);*/
  color: #000;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 15px #00aeff, 0 0 30px #ff008060;
  text-transform: uppercase;
}
.cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px #00aeff, 0 0 40px #ff0080cc;
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  /*background: linear-gradient(90deg, #ffcc00, #ff0080);*/
}
.cta-cheat {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  /*background: linear-gradient(90deg, #ffcc00, #ff0080);*/
  color: #000;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 15px #00aeff, 0 0 30px #ff008060;
  text-transform: uppercase;
}
.skill-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  margin-bottom: 3px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(53, 181, 255, 0.1);
  backdrop-filter: blur(6px);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news {
  position: absolute;
  top: 100px;
  left: 5px;
  width: 300px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(53, 181, 255, 0.1);
  backdrop-filter: blur(6px);
}
.project-image {
    margin: 0 2px 0 0;
    height: 300px;
    width: auto !important;
    overflow: hidden;
    text-align: center;
}
.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 85%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.1);
  backdrop-filter: blur(6px);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #ffcc00;
  box-shadow: 0 0 15px #35b5ff ;
  /*box-shadow: 0 0 15px #ffcc00a0;*/
}
.contact-form textarea {
  resize: none;
  min-height: 120px;
}
.contact-form button {
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  /*background: linear-gradient(90deg, #ffcc00, #ff0080);*/
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #35b5ff ;
  /*box-shadow: 0 0 15px #ffcc00a0;*/
}
.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff0080a0;
  background: linear-gradient(90deg, #35b5ff, #2155ff);
  /*background: linear-gradient(90deg, #ffcc00, #ff0080);*/
}
.w3-border {
  padding: 2px;
  border-radius: 10px;
}
.w3-blue {
  border-radius: 6px;
  box-shadow: 0 0 25px #35b5ff;
}