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

body{
    background-color: rgb(255, 255, 255);
}
html{
    scroll-behavior: smooth;
}
header{
    background-color: #000000;
    padding: 25px;
    text-align: right;
    font-size: 12px;
    color: #ffffff;
    position: sticky;
}

.navbar {
  display: block;
  justify-content: space-between;
  align-items: right;
  background-color: #ffffff;
  padding: 15px 30px;
}
#navbar_links{
    list-style: none;
    font-size: medium;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

#navbar_links li {
    margin-left: 0px;
    display: inline;
    margin-right: 20px;

}
#navbar_links li:hover a{
    color: #0891B2;
     
}

a{
    color: #ffffff;
    font-family: sans-serif;
    text-decoration: none;
}
.intro-text{
  width: 60%;
  left: 50;
  right: 20%;
}


.shapes{
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.shape1{
    position:absolute;
    width: 70%;
    height: 400px;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    background-color: rgb(226, 229, 228);
    left: 0%;
    top: 0;
    display: flex;
    align-items: center;
}


.shape2{
    position: absolute;
    width: 60%;
    height: 400px;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
    background-color: #000000;
    background-image: url(img/me.jpg);
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    right: 0%;
    transform: scaleX(-1);
}

/* .shape3{
    
    position: absolute;
    width: 100%;
    height: 90px;
    background-color: #000000;
    color: #ffffff;
    font-family: sans-serif;
    font-size: small;
    display: block;
    top: 70%;
    justify-content: center;
} */

#about-me{
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    padding: 8px   20px;
    border: #000000 solid 3px;
    text-align: center;
    background-color: rgb(245, 245, 234);
    margin: 0 auto;
}

.about-text{
    width: 50%;
    text-align: center;
    margin: 0 auto;
    font-family: sans-serif;
    font-weight: lighter;
    padding: 20px;
}
h2{
    text-align: center;
    margin: 40px;
    border: #000000 solid 2px;
    display: inline-block;
    background-color: rgb(245, 245, 234);
    padding: 20px;
    font-size: medium;
}
h2:hover{
  color: #007bff;
  transform: scale(1.15);
  
}
#about-me:hover{
  color: #007bff;
  transform: scale(1.15);
}
.explore {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin: 60px 0;
}

.explore::before,
.explore::after {
      content: "";
      display: inline-block;
      width: 30px;
      height: 60px;
      border-left: 3px solid black;
}

.services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  text-align: center;
}

.service {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 350px;
}

.service h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #FAFAFA;
}

.projects-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.projects-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.projects-card h3 {
  color: #2563EB;
  font-size: 20px;
  margin-bottom: 5px;
}

.projects-card p {
  color: #6B7280;
  margin: 4px 0;
}

.projects-card blockquote {
  color: #0891B2;
  font-style: italic;
  margin-top: 10px;
} 
.projects-card:hover{
transform: scale(1.15);
}

/* contact form */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.contact-info-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info-section a {
  color: #007BFF;
  text-decoration: none;
}
textarea{
    resize: none;
}
 /* skills section */
 #skills-section{
  margin-bottom: 50px;
 }
.skills-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.skills-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 2px solid #007bff;
  display: flex;
  padding-bottom: 4px;
  align-items: center;
}


.skills-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
margin-top: 20px;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.skill img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.skill p {
  font-size: 14px;
  color: #333;
  margin: 0;
  font-weight: 500;
}

/* Hover effect */
.skill:hover img {
  transform: scale(1.15);
}

.skill:hover p {
  color: #007bff;}



  /* Education background section */
  #education {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #FAFAFA;


}
  .education-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.education-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.education-card h3 {
  color: #2563EB;
  font-size: 20px;
  margin-bottom: 5px;
}

.education-card p {
  color: #6B7280;
  margin: 4px 0;
}

.education-card blockquote {
  color: #0891B2;
  font-style: italic;
  margin-top: 10px;
} 
.education-card:hover{
transform: scale(1.15);
}

.site-footer {
  background-color: #374151;
  color: #D1D5DB;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

