body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
  }
  
  /* Section Title */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 40px 0;
    position: relative;
    color: #333;
  }
  
  .section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1a73e8;
    margin: 15px auto 30px;
  }
  
  /* Work Section */
  .work-section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .work-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
  }
  
  /* Featured Work */
  .featured-work {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
  }
  
  .featured-work img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .featured-details {
    padding: 25px;
  }
  
  .featured-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a73e8;
  }
  
  .featured-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .view-project {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .view-project:hover {
    background-color: #0d47a1;
  }
  
  /* Other Works */
  .other-works {
    flex: 1 1 500px;
  }
  
  .work-carousel {
    position: relative;
    height: 400px;
  }
  
  .work-card {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
  }
  
  .work-card.active {
    opacity: 1;
    position: relative;
  }
  
  .work-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .student-name {
      font-size: 0.9rem;
      color: #666;
      font-style: italic;
      margin-top: 0;
      margin-bottom: 15px;
  }
  
  .featured-details .student-name {
      font-size: 1rem;
      margin-top: -10px;
      margin-bottom: 20px;
  }
  .work-card h4 {
    padding: 15px 20px 5px;
    font-size: 1.3rem;
    color: #1a73e8;
  }
  
  .work-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Responsive Design */
  @media (max-width: 1100px) {
    .work-container {
      flex-direction: column;
    }
    
    .work-carousel {
      height: auto;
    }
  }