 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}
.nav1{
    color: white;
    display: flex;
    width: 1533px;
    height: 65px;
    margin-top: -10%;
    position: fixed;
    z-index: 1000;
    display: flex;
    margin-top: 0%;
    /* border: solid 2px yellow; */
}
.nav1.scrolled {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s, backdrop-filter 0.3s;
}
.nav1 h3{
    width: 105px;
    padding-left: 40px;
    display: flex;
    padding-top: 23px;
    left: 52%;
    /* border: solid 2px lightcoral; */
}
.nav1 a{
    text-decoration: none;
    color: white;
    display: flex;
}
.nav1 img{
    height: 18px;
    width: 28px;
    padding-right: 10px;
    /* border: solid 2px lightblue; */
}

.underline{
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-right: 105px;
}
.underline::after{
    content: "";
    position: absolute;
    left: 37px;
    bottom: 10px;
    width: 0;
    height: 4px;
    border-radius: 5px;
    background-color: rgb(204,94,246);
    transition: 0.3s ease-in;
}
.underline:hover::after{
    width: 65%;
}
button img{
    height: 15px;
    width: 20px;
    padding-right: 5px;
}
button{
    background-color: rgb(204,94,246);
    padding: 10px;
    margin-top: 80px;
    margin-left: 630px;
    font-weight: bold;
    font-size: 15px;
    color: white;
    border: none;
    border-radius: 5px;
    display: flex;
    width: 220px;
    justify-content: center;
    cursor: pointer;
}
a{
    text-decoration: none;
}
a button:hover{
    background-color: rgb(152, 0, 212);
    cursor: pointer;
}
.myresume{
    height: 1000px;
    width: 730px;
    margin-top: 70px;
    margin-left: 380px;
    max-width: 100%;
}
.container3{
  display: flex;
  margin-top: 6%;
  height: 60px;
  justify-content: space-around;
  background-color: black; 
  margin-top: 200px;
  /* border: solid 10px lightgreen; */
}
.container3 .one, .two, .three {
  display: flex;
  justify-content: center;   
  align-items: center;        
  text-align: center;
  font-size: 17px;
  color: white;
}
.container3 .one{
  width: 250px;
  margin-right: 5%;
  /* border: solid 5px lightblue; */
}
.container3 .two{
  width: 250px;
  /* border: solid 5px lightgray; */
}
.container3 .three {
  width: 300px;
  margin-left: 5%;
  /* border: solid 5px lightpink; */
}
.container3 h4 {
  padding: 0;
  margin: 0;
}

/* Hamburger menu - hidden by default */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    padding: 20px;
    z-index: 1001;
}
.bgc {
    display: none; /* Hidden by default */
    background-color: #1c182f;                   
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}


  @media (max-width: 768px) {
  
  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    cursor: pointer;
    padding: 8px;
  }

  .menu-toggle img {
    height: 30px;
    width: 30px;
    transition: all 0.3s ease;
  }

  .close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .nav1 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px 0;
    position: static;
  }

   .nav1 h3 {
    padding: 10px 0;
    width: auto;
    padding-left: 0;
    justify-content: center;
   }
    
    button {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        max-width: 220px;
    }
    
    .myresume {
        width: 90%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .container3 {
            flex-direction: column;
            padding: 20px 0;
            margin-top: 80px;
        }
        
        .container3 .one, 
        .container3 .two, 
        .container3 .three {
            width: 100%;
            margin: 10px 0;
        }
        .container3 .three{
            padding-bottom: 30px;
        }
    .nav1 h3.underline::after {
      display: none !important; /* Disables underline on mobile */
    }
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  cursor: pointer;
}

/* Mobile view nav */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav1 {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.85);        
    width: 100%;
    position: fixed;
    z-index: 1000;
  }

  .nav1.show {
    display: flex;
    height: 220px;
    padding-right: 210px;
  }

  .nav1 h3 {
    padding: 15px 0;
    justify-content: center;
  }

  .nav1 a {
    justify-content: center;
    width: 100%;
  }
  .bgc {
        display: block;
    }
}

::-webkit-scrollbar-thumb {
    background-color: #b148c9;
    border-radius: 10px;
    border: 2px solid #312958; 
    background-clip: padding-box;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #b148c9 #312958;
}