*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

.resume-container{
    width: 100%;
    height: 100vh;
    background:linear-gradient(#ffffff) ;
}

.resume-sub{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

@media (max-width: 768px){
    .resume-container{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 280vh;
        background:linear-gradient(#333) ;
    }
    .resume-card{
        width: 100%;        /* Expand to fit mobile width */
        margin-bottom: 10px;
    }

    .resume-sub{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .address i{
    padding-right: 20px;
    font-size: 15px;
}
}

.resume-card{
    width: 335px;
    height: auto;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-top-right-radius: 20px;
    border-radius: 10px;
}

.profile-image{
    padding: 20px;
    display: flex;
}

.profile-image img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-image-sub{
  padding: 10px;
  margin-left: 10px;
  margin-top: 10px;
}

.profile-image-sub h2{
    color: #fff;
}
.profile-image-sub p{
    color: #fff;
}


.address{
    padding: 10px;
  
}

 .address i{
    padding-right: 20px;
    font-size: 15px;
 }

.address1 i{
    padding-right: 10px;
    font-size: 10px;
}

.addr{
    width: 100%;
    background-color: #444;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.addr1{
    width: 100%;
    background-color: #444;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

.addr2{
    width: 100%;
    background-color: #444;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

.addr3{
    width: 100%;
    background-color: #444;
    padding: 10px;
   
    border-radius: 8px;
  }

  .addr4{
    width: 100%;
    background-color: #444;
    padding: 10px;
    
    border-radius: 8px;
  }

   .addr5{
    width: 100%;
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
  }


    .addr6{
    width: 100%;
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
  }

  .addr7{
    width: 100%;
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
  }

  .hobbies-icon{
    display: flex;
  }
  .hobbies-icon img{
    width: 80px;
  }

.address a{
   color: #fff;
   font-size: 14px; 
   text-decoration: none;
}

.address1{
    padding: 10px;
}



.address1 h3{
    font-size: 15px;
    padding-bottom: 10px;
}
.address1 p{
    font-size: 14px;
    line-height: 1.3;
}




/******************************************?/
/**********************************************/
.resume-card2{
    width: 330px;
    height: auto;
    background-color: #efefef;
    color: #333;
    padding: 10px;
    border-radius: 10px;
}


.resume-sub-card{
    padding: 10px;
}

.address2{
    padding: 10px;
  
}

.address2 i{
    padding-right: 10px;
    font-size: 10px;
}
.address2 p{
    font-size: 12px;
}

.expere{
    display: flex;
}

.experien{
    width: 57%;
    background-color: #444;
    padding: 10px;
    display: flex;
    border-radius: 5px;
}
.experien h3{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.line{
    width: 100%;
    height: 2px;
    background-color: #444;
    margin-top: 17px;
    border-radius: 5px;
}



.addrr1{
    width: 100%;
    border-radius: 8px;
  
  }

  .addrr1 h3{
    font-size: 14px;
    padding-top: 5px;
  }
  .addrr1 p{
     line-height: 1.3;
  }

  .hobbies-icon i{
    font-size: 30px;
   
    text-align: center;
    margin: 20px;
  }





  /****************PROGRESS ******************/

  :root {
  --size: 80px;
  --ring-width: 8px;
  --green: #00c853; /* PROGRESS COLOR */
}



.skills-row {
  display: flex;
  gap: 25px;
}

.skill {
  text-align: center;
  width: var(--size);
}

.progress-wrap {
  width: var(--size);
  height: var(--size);
  position: relative;
}

.progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bg {
  fill: none;
  stroke: #e4e4e4;
  stroke-width: var(--ring-width);
}

.progress {
  fill: none;
  stroke-width: var(--ring-width);
  stroke-linecap: round;
  stroke-dasharray: 263.89;
  stroke-dashoffset: 263.89;
  stroke: var(--green);   /* ALWAYS GREEN */
  transition: stroke-dashoffset .8s ease;
}

.skill-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 65%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.pct {
  margin-top: 5px;
  font-weight: bold;
}