.skills-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    width: fit-content;
  }

  .skills-card:hover { 
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .skills-card img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .skills-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .skills-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin: 20px 0;
  }
  
  /**Project Section **/
  .projects-section-horizontal {
    display: flex;
    gap: 20px;
    overflow-x: hidden; 
    padding: 10px 0;
  }
  
  .project-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    flex-shrink: 0;
  }
  
  .project-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
  }
  
  .coming-soon-card {
    background: linear-gradient(135deg,#d2be82, #91415a, #692a42);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    height: 150px;
    position: relative;
  }
  
  .coming-soon-card h3 {
    font-size: 1.5rem;
  }
  
  .coming-soon-card p {
    font-size: 1rem;
    margin: 0;
  }
  
  /* Hover Effect */
  .coming-soon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .coming-soon-card:hover::after {
    content: "✨";
    font-size: 2rem;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }