* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    height: 700px;
    overflow-x: hidden;
}

.navbar {
    width: 100%;
    height: 100px;
    flex-shrink: 0;
    background: #000;
    box-shadow: 0px 4px 4px 0px #2868A2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
}

.title {
    color: #FFF;
    font-family: "Tilt Warp";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: center;
    margin-left: 20px;
    cursor: pointer;
}

.contents {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;


}


.lists {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 22px;
    margin-right: 8px;



}

.listnav {
    color: #FFF;
    font-family: "Tilt Warp";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style: none;


}

.listnav:hover {
  color: #fcb111;
  transition: color 0.3s ease;
  cursor: pointer;
}


.profilelogo {
    width: 60px;
    height: 60px;

}

.headroad {
    width: 8vw;
    height: 90vh;
    /* border: 2px solid white; */
    position: fixed;
    top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #000;


    /* background-color: #FFF; */
}

.headroadtext {
    text-align: center;
    font-family: Montserrat;
    font-size: 98px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    background: linear-gradient(101deg, #F33742 20.15%, #FCB111 39.15%, #4382EE 58.16%, #B840B4 77.16%, #FB9F18 96.16%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(-90deg);
    position: absolute;
    /* top: 40%; */


}

.roadcon {
    width: 89vw;
    height: 100vh;

    position: absolute;
    top: 100px;
    left: 10vw;
    background-image: url("../imgg/Roadmaps/RMBG.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    /* background-position: center;     */
}

.roaditem {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    cursor: pointer;

}



.Roadmapname {
    font-family: Montserrat;
    font-size: 2rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;

    text-align: center;
    background:#fb5e3a;
    /* background: linear-gradient(101deg, #F33742 20.15%, #FCB111 39.15%, #4382EE 58.16%, #B840B4 77.16%, #FB9F18 96.16%); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;


}

.RMDESC {
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    padding-left: 2rem;
    padding-right: 2rem;

    text-align: center;
    background: rgb(255, 255, 255);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* @media screen and (max-width:768px){
    .roadcon{
        height: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(1fr,4);
        background-image: url("imgg/Roadmaps/RMBG.png");
        
    }
    .Roadmapname{
        font-size: 1rem;
    }
    .RMDESC{
        font-size: 0.4rem;
    }
    .roaditem img{
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 100px;
    }
} */

/* === Responsive Navbar Toggle === */
@media screen and (max-width: 1100px) {
    .contents {
      display: none;
    }
  
    .menu-icon {
      display: block;
      font-size: 28px;
      color: #fff;
      margin-right: 20px;
    }
  
    .dropdown {
      display: none;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 100px;
      right: 20px;
      width: 200px;
      border-radius: 10px;
      padding: 10px;
      z-index: 200;
    }
  
    .dropdown .listnav {
      padding: 12px;
      text-align: center;
      cursor: pointer;
      font-family: "Tilt Warp";
      color: #fff;
    }
  
    .dropdown .listnav:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
  }
  
  /* === Responsive Roadmap Grid === */
  @media screen and (max-width: 1024px) {
    .roadcon {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
      height: auto;
      background-attachment: scroll;
    }
    .Roadmapname {
      font-size: 1.3rem;
    }
    .RMDESC {
      font-size: 0.4rem;
    }
  }
  
  @media screen and (max-width: 600px) {
    .roadcon {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      padding: 10px;
    }
    .roaditem img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }
    .Roadmapname {
      font-size: 1rem;
    }
    .RMDESC {
      font-size: 0.35rem;
    }
  }

  /* === Responsive Navbar Toggle === */
@media screen and (max-width: 1100px) {
  .contents {
    display: none;
  }

  .menu-icon {
    display: block;
    font-size: 28px;
    color: #fff;
    margin-right: 20px;
  }

  .dropdown {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100px;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    padding: 10px;
    z-index: 200;
  }

  .dropdown .listnav {
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-family: "Tilt Warp";
    color: #fff;
  }

  .dropdown .listnav:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* === Responsive Roadmap Grid === */
@media screen and (max-width: 1024px) {
  .roadcon {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
    background-attachment: scroll;
  }
  .Roadmapname {
    font-size: 1.3rem;
  }
  .RMDESC {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 600px) {
  .roadcon {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    padding: 10px;
  }
  .roaditem img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .Roadmapname {
    font-size: 1rem;
  }
  .RMDESC {
    font-size: 0.35rem;
  }
}
 
