*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #09203A;
    height: 93px;
    color: white;
    width: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #042e5f; 
    border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #09203A; 
  }

h1 {
    font-size: 30px;
    font-weight: bold;
    padding: 12%;
    margin-left: -10%;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}
#projects {
    color: #12D640;
    border-bottom: 2px solid yellow; /* Adds a bottom border */
    padding-bottom: 3px; /* Optional: Add some space below the text */
}
.nav-links a:hover {
    color: #12D640;
}

/* Hamburger Styles (visible on mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
}
.main{
    width: 100%;
    height: 108vh;
    background-color: #010e1b;
}

#projectss{
    color: white;
    margin-left: 16%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    top: 5px;
}
#projectss::after{
    content: "";
    display: block;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.719);
    width: 5%;
    margin-left: 7%;
    margin-top: -0.8%;
}

.main .boxs{
    width: 60%;
    height: 75%;
    margin: 3.4% 25%;
    display: flex;
}
.boxs .left{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 10%;
}
.left .box1{
    width: 95%;
    height: 30%;
    background-image: url(/chat.png);
    background-size: cover;
    background-position: center;
}
.left .box2{
    width: 95%;
    height: 30%;
    background-color: red;
    background-image: url(/to-do-list.jpeg);
    background-size: cover;
    background-position: center;
}
.left .box3 {
    width: 95%;
    height: 30%;
    background-color: green;
    background-image: url(/spotify.jpg);
    background-size: cover;
    background-position: center;
}
.boxs .right{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 10%;
}
.right .box4{
    width: 95%;
    height: 30%;
    margin-left: 30%;
    background-image: url(/portfolio1.webp);
    background-size: cover;
    background-position: center;
}
.right .box5{
    width: 95%;
    height: 30%;
    margin-left: 30%;
    background-image: url(/code\ editor.jpeg);
    background-size: cover;
    background-position: center;
}
.right .box6{
    width: 95%;
    height: 30%;
    margin-left: 30%;
    background-image: url(/nike-shoes-ui-design.jpg);
    background-size: cover;
    background-position: center;
}
.boxs p{
    color: white;
    margin-top: -8%;
    margin-left: 2%;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #09203A;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 1rem 0;
        z-index: 999;
    }
    .main{
        width: 100%;
        height: 192%;
    }
    .main #projectss{
        /* color: white; */
        margin-left: 6%;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
        font-weight: 500;
        position: relative;
        top: 1%;
    }
    #projectss::after {
        content: "";
        display: block;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.719);
        width: 15%;
        margin-left: 27%;
        margin-top: -2%;
    }
    h1{
        margin-left: -12%;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .hamburger {
        display: flex;
        margin-left: 25%;
    }
    
    .nav-links.active {
        display: flex;
    }
    .left .box1{
        width: 380%;
        height: 20%;
        background-image: url(/chat.png);
        background-size: cover;
        background-position: center;
        margin-left: 106%;
        margin-top: 0%;
    }
    .left .box2{
        width: 380%;
        height: 20%;
        background-image: url(/to-do-list.jpeg);
        background-size: cover;
        background-position: center;
        margin-left: 106%;
        margin-top: -180%;
    }
    .left .box3 {
        width: 380%;
        height: 20%;
        background-image: url(/spotify.jpg);
        background-size: cover;
        background-position: center;
        margin-left: 106%;
        margin-top: -180%;
    }
    .right .box4 {
        width: 380%;
        height: 20%;
        background-image: url(/portfolio1.webp);
        background-size: cover;
        background-position: center;
        position: relative;
        top: 93%;
        left: -60%;
    }
    .right .box5{
        width: 380%;
        height: 20%;
        background-image: url(/code\ editor.jpeg);
        background-size: cover;
        background-position: center;
        position: relative;
        top: 88%;
        left: -60%;
    }
    .right .box6{
        width: 380%;
        height: 20%;
        background-image: url(/nike-shoes-ui-design.jpg);
        background-size: cover;
        background-position: center;
        position: relative;
        top: 80%;
        left: -60%;
    }
    
    
}