/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
  }
  
  /* Header Section */
  .portfolio-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.459), rgba(0, 0, 0, 0.504)), url('../image/bg1.webp') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .portfolio-title {
    font-size: 3rem;
    font-weight: bold;
  }
  
  /* Portfolio Section */
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
  }
  
  .section-subtitle {
    font-size: 1rem;
    color: #000000;
  }
  
  .portfolio-card {
    border: none;
    box-shadow: 0 4px 8px  #0dcaf061;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px  #0dcaf0;
  }
  
  .portfolio-card img {
    height:auto;
    object-fit: cover;
  }
  
  .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
  }
  
  .card-text {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .portfolio-title {
      font-size: 2.5rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .card-title {
      font-size: 1rem;
    }
  }
  