*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
}

body{
  background:
  linear-gradient(rgb(0, 68, 255), rgba(0, 0, 0, 0.9)),
  url("assets/backgroundv2.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  animation: bgMove 4s ease-in-out infinite alternate;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 12%;
  background-color: transparent;
  border: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo{
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url("/assets/LOGO MRD.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

span{
  color: rgba(88, 98, 236, 1);
}

.navbar a{
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin: 0 20px;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active{
  color: white;
  border-bottom: 3px solid white;
}

::-webkit-scrollbar{
  width: 15px;
}

::-webkit-scrollbar-thumb{
  background-color: rgba(71, 79, 189, 1);
}

::-webkit-scrollbar-track{
  background-color: whitesmoke;
  width: 50px;
}

.heading{
  font-size: 50px;
  margin: 0 0 24px 0;
}

.project-content h2{
  text-align: left;
  color: black;
  font-size: 102px;
}

.project-frame {
  margin: 120px auto 40px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(24px, 4vw, 60px);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  width: 85%;
  max-width: 1400px;
}

.project-header {
  margin-bottom: 50px;
}

.heading {
  font-size: clamp(36px, 5vw, 64px);
  color: white;
  margin-bottom: 20px;
}

.project-intro {
  color: white;
  max-width: 800px;
  line-height: 1.7;
  font-size: 18px;
}

.project-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

.text-block {
  color: white;
}

.text-block h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: rgba(88, 98, 236, 1);
}

.text-block p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.text-block ul {
  padding-left: 20px;
  color: white;
}

.text-block li {
  list-style: disc;
  margin-bottom: 10px;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background-color: gray;
  padding: 10px;
}

.full-width {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .project-section {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 42px;
  }
}