*{
    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;
}
#Experience {
    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;
}
.main #Experienceee{
    color: white;
    margin-left: 15.7%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    top: 1%;
}
#Experienceee::after {
    content: "";
    display: block;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.719);
    width: 10%;
    margin-left: 8%;
    margin-top: -0.8%;
}
.main .box{
    width: 69%;
    height: 40%;
    background-color: #09203A;
    margin: 5% 16%;
}
.box h2{
    color: rgb(40,167,69);
    padding: 2% 7%;
    text-transform: capitalize;
}
.box h4{
    color: #ffffffe2;
    padding: 0% 7%;
    text-transform: capitalize;
    font-size: 18px;
}
.box h5{
    color: #ffffffe2;
    padding: 1% 7%;
    text-transform: capitalize;
    font-weight: 500;
    font-style: italic;
    font-size: 17px;
}
.box p{
    color: #fff;
    font-size: 17px;
    margin-left: 7%;
    line-height: 22px;
}
#break{
    margin-left: 11px;
}
#Superadmin{
    font-weight: bold;
}




/* 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 #Experienceee{
        color: white;
        margin-left: 6%;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
        font-weight: 500;
        position: relative;
        top: 1%;
    }
    #Experienceee::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;
    }
    .main .box{
        width: 90%;
        position: relative;
        left: -11%;
        top: 1%;
        height: 35%;
        border-radius: 10px;
    }
    .box h2{
        font-size: 20px;
    }
    .box p{
        margin-top: 1.5%;
        /* width: 80%; */
        margin-left: 8%;
    }
}