@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box ;
}
:root {
   --primary-color: #ff7613; 
   --text-color: #727171;
}
html {
    font-size: 8px;
}
body{
  font-family: Inter; sans-serif;
  background-color: black;
  color: white;
}

/* common styles */
img {
    width: 100;
}
a {
    text-decoration: none;
    color: white;
}
.description{
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
}
.title{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;


}
.item_preTitle {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 300;
}
.item_title {
    font-size: 1.6rem;
    color: white;
    font-weight: 500;
    margin: 0.8rem 0;
}
.item_subtitle {
    font-size: 1.5;
    color: var(--text-color);
    font-weight: 400;
}
/* layouts */ 
.container {
  max-width: 1000px;
  width: 90%;  
  margin: 0 auto;
  display: grid;
  padding: 5rem;
  background: #070707;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;

}
.group1, 
.group2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 1.7rem;
}
.group3 {
    max-width:  700px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.7rem;
}

/* Small Devices */

@media only screen and (max-width: 768px) {
    .container {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 4rem;
    gap: 7rem;
    }  
}
@media only screen and (max-width: 768px) {
    .profile_container {
        flex-direction: column;
    }
    
}
.profile {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

/* Profile */
.profile_container {
  display: flex;
  gap: 2rem;  
}

.profile_profileImg {
    max-width: 450px;
}
.profile_name_firstName {
    color: white;
    font-weight: 150;
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase ;
    display: block;
    margin-bottom: -0.8rem;
}
.profile_name_lastName {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(2.5rem, 15vw, 7rem);
    text-transform: uppercase;
    display: block;
}
.profile_title {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;

}
.downloadresume{
    display: block;
    text-decoration: underline;
    font-size: 1.6rem;
    margin-top: 1rem;
}
.downloadresume:hover{
    color: var(--primary-color);
}

/* Profile/Skills */
.skill_list{
    margin-top: 1rem;
    margin left: 2rem;
    line-height: 2;
}

/*Reference*/
.ref_item {
    margin-top: 2rem;
}
.ref_rem {
    font-size: 2.5rem;
    font-weight: 700;
}
/* Education */
.edu_item {
    margin-top: 2rem;
}
/* exp*/
.exp_item {
    margin-top: 2rem;
    font-size: 1.5rem;

}
.counter-number {
    display: block;  /* Ensures it appears on a new line */
    margin-top: 15px;  /* Adds space between button and counter */
    font-size: 1.6rem;  /* Adjusts text size */
    font-weight: bold;  /* Makes it stand out */
    color: white;  /* Matches text color */
}

/* Contact Info */

