/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  header {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  .hero {
    background-color: #f4f4f4;
    padding: 50px;
    text-align: center;
  }
  
  .hero .cta {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  section {
    padding: 40px 20px;
  }
  
  section h2 {
    text-align: center;
  }
  
  #courses ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
  }
  
  #courses ul li {
    display: inline-block;
    margin: 0 15px;
  }
  
  blockquote {
    text-align: center;
    font-style: italic;
  }
  
  blockquote cite {
    display: block;
    margin-top: 10px;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  footer a {
    color: #007BFF;
    text-decoration: none;
  }

  /* Profile Image Styling */
.profile-image {
    display: block;
    max-width: 50%;
    height: 20%;
    border-radius: 50%;
    margin: 0 auto;
  }
  
  /* Work Portfolio Image Styling */
  .work-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  

  /* Portfolio Section Styling */
#portfolio {
    padding: 40px 20px;
    text-align: center;
  }
  
  .portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .work-item {
    max-width: 300px;
  }
  
  .work-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .work-item img:hover {
    transform: scale(1.05);
  }
  
  .work-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  
  /* About Box Styling */
.about-box {
  background-color: #f9f9f9; /* Light background color for contrast */
  border: 2px solid #ddd;    /* Light grey border */
  padding: 20px;             /* Spacing inside the box */
  border-radius: 10px;       /* Rounded corners for a modern look */
  max-width: 800px;          /* Optional: Set a max width */
  margin: 0 auto;            /* Center the box horizontally */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Languages Portfolio Section Styling */
#languages-portfolio {
  padding: 40px 20px;
  text-align: center;
  background-color: #f5f5f5; /* Optional: Background color for the section */
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.language-item {
  width: 200px; /* Adjust the width of each item */
  margin-bottom: 20px;
  text-align: center;
}

.language-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners for images */
  transition: transform 0.3s; /* Smooth hover effect */
}

.language-item img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.language-item p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333; /* Optional: Text color */
}
