
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

header {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}



.logo p {
    font-size: 35px;
    font-weight: bolder;
    font-family: 'PP Pangaia Ultralight', sans-serif;
}

nav {
    height: 115px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    border-bottom: 1px solid #33333324;
}

.logo img {
    height: 60px;
    padding-left: 20px;
}


nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    font-family: "Roboto", sans-serif;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: black;
}


.cv-button {
    padding: 10px 18px;
    font-size: 15px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cv-button:hover {
    background-color: #333;
}
.toggle_btn{
    display: none;
}


@media (max-width: 1100px) {
    nav {
        padding: 0 30px;
    }

    nav ul {
        gap: 25px;
        padding: 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}


@media (max-width: 992px) {
    .toggle_btn {
        display: block;
        position: absolute;
        right: 4%;
    }

    nav ul {
        position: fixed;
        top: 110px;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        transition: all 0.5s ease;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li a {
        font-size: 20px;
    }

}


@media (max-width: 768px) {
    nav {
        position: relative;

    }



    nav ul {
        position: fixed;
        top: 100px;
        height: calc(100%-120px);
    }

    .toggle_btn {
        right: 4%;
    }
}


@media (max-width: 480px) {
    nav {
    
        position: relative;
        

    }

    .logo img {
        width: 100%;
        height: 80px;
        padding: 0%;
    }

    .toggle_btn {
        right: 4%;
    }


}

@media (max-width: 375px) {
    .logo img {
        height: 70px;
        width: 100%;
        padding: 0%;
    }

    .toggle_btn {
        right: 4%;
    }
}



.banner {
    margin-top: 115px;
   
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px 40px 20px;
  
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.banner-content {
    flex: 1;
    min-width: 280px;
    padding-left: 8%;

}

.banner-content h1 {
    color: black;
    font-size: 48px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}


.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
   
}

.banner-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 8px solid white;
    border-radius: 15%;
    box-shadow: 20px 20px rgba(128, 128, 128, 0.35);
}

.location .fa-solid {
    padding-right: 8px;
}

.location label {
    font-family: "Roboto", sans-serif;
    font-size: 18px;

}

.location {
    padding-top: 5%;
}

.online {
    padding-top: 20px;

}

.online label {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    padding-left: 8px;

}

.link-icon {
    padding-top: 6%;
    display: flex;
    gap: 40px;
    align-items: center;

}

.link-icon a {
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .banner-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 36px;
    }
     .banner-content{
        padding-left:5% ;
        padding-right: 5%;
     }

    .banner-content p {
        font-size: 18px;
    }

    .link-icon {
        justify-content: center;
    }

    .location {
        padding-top: 3%;
    }

    .online {
        padding-top: 10px;

    }

    .link-icon {
        padding-top: 5%;
    }
}

@media (max-width: 375px) {
    .location {
        padding-top: 5%;
    }

    .online {
        padding-top: 10px;

    }

    .link-icon {
        padding-top: 8%;
    }
    .banner-image img{
        max-width: 270px;
    }
}


.about {
 width: 100%;
    background-color: rgba(240, 240, 240, 0.75);
    padding: 40px 20px;

    display: flex;
    justify-content: center;;
}

.about-container {
    width: 100%;
    max-width: 775px;
}

.about-content {
    font-family: "Roboto", sans-serif;
    text-align: center;
}

.about-content h4 {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 14px;
    background-color: rgba(141, 140, 140, 0.25);
    border-radius: 8px;
    
}

.about-content h1 {
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 22px;
}








.skills {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
   
}

.skills-container {
    width: 100%;
    max-width: 1080px;
}

.skills-heading {
    text-align: center;
    margin-bottom: 50px;
}

.skills-heading h4 {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(141, 140, 140, 0.25);
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: "Roboto", sans-serif;
}

.skills-heading p {
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}


.skills-icon {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.skills-icon1 {
     font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
}


.skills-icon1 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.skills-icon1 label {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.skills-icon1:hover img {
    transform: scale(1.15) translateY(-6px);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}



.work-section .container {
  max-width: 1100px;
  margin: auto;
   padding: 25px 20px;
  
}



.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h4 {
     font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
}
.section-header p{
    font-size: 18x;
     font-family: "Roboto", sans-serif;
}
.badge {
  display: inline-block;
  background: #f1f1f1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  background-color: rgba(141, 140, 140, 0.25);
}



.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.283);
  margin-bottom: 40px;
}

.project-card.reverse {
  direction: rtl;
}

.project-card.reverse .project-content {
  direction: ltr;
}

.project-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}



.project-content h3 {
     font-family: "Roboto", sans-serif;
  font-size: 20px;
  margin-bottom: 14px;
}

.project-content p {
     font-family: "Roboto", sans-serif;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}



.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tags span {
     font-family: "Roboto", sans-serif;
  background: #f3f3f3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #555;
}


.external-link {
  font-size: 18px;
  text-decoration: none;
  color: #333;
}


@media (max-width: 768px) {
  .project-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .project-card.reverse {
    direction: ltr;
  }
}



.experience-section .container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  
}
.experience-heading {
    text-align: center;
    margin-bottom: 30px;
}

.experience-heading h4 {
    padding: 6px 9px;
    display: inline-block;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    background-color: rgba(141, 140, 140, 0.25);
    border-radius: 8px;
}

.experience-heading p {
    padding: 14px 0px;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}
.experience-section{
      background-color: rgba(240, 240, 240, 0.75);
}

.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 40px;
}



.exp-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: flex-start;

  background: white;
  padding: 32px 40px;
  border-radius: 14px;
  margin-bottom: 24px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0);
}



.company {
  font-size: 20px;
  font-weight: 700;
 color:rgb(14, 226, 14);
   font-family: "Roboto",sans-serif;
}



.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  
}

.exp-header h3 {
  font-size: 18px;
  font-weight: 600;
   font-family: "Roboto",sans-serif;
}

.exp-header span {
  color: #6b7280;
  font-size: 16px;
   font-family: "Roboto",sans-serif;
}



.exp-content ul {
  padding-left: 18px;
  
}

.exp-content li {
  margin-bottom: 8px;
  color: #4b5563;
  line-height: 1.6;
   font-size: 18px;
   font-family: "Roboto",sans-serif;
}



@media (max-width: 700px) {
  .exp-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .exp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}




.contact-section {
  padding: 50px 10px;
  text-align: center;
   background-color: rgba(240, 240, 240, 0.75);
}

.contact-container {
  max-width: 750px;
  margin: auto;
}


.badge {
  display: inline-block;
   background-color: rgba(141, 140, 140, 0.25);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 24px;
   font-family: "Roboto", sans-serif;
}

.contact-container h2 {
     font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 50px;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
   font-family: "Roboto", sans-serif;
}

.contact-item i {
  width: 28px;
  height: 28px;
  color: #6b7280;
}

.copy-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  color: #9ca3af;
  transition: 0.3s;
}

.copy-icon:hover {
  color: #111827;
}


.social-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
   font-family: "Roboto", sans-serif;
}

.social-icons {
    
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icons i {
    
  width: 22px;
  height: 22px;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
}
.lucide {
  color: rgb(44, 44, 44); 
}

.social-icons i:hover {
  color: #050606;
}


footer {
     font-family: "Roboto", sans-serif;
  background: #ffffff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.heart {
  color: red;
}

@media (max-width: 480px){
    .contact-item{
        font-size: 20px;
    }
  
}
@media (max-width: 375px){
    .contact-item{
        font-size: 16px;
    }
    .contact-container h2{
        font-size: 18px;
    }
}