.project-card{
  background:#fff;
  padding:20px;
  border-left:4px solid #38bdf8;
  border-radius:8px;
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
}
.project-card h3{
  font-size:24px;
  margin-bottom:15px;
  color:#1e293b;
}
.project-card p{
    font-size:16px;     
    line-height:1.5;
    color:#475569;
}
.project-card a{
    display:inline-block;
    margin-top:15px;
    color:#3b82f6;
    text-decoration:none;
    font-weight:500;
}
.project-card a:hover{
    text-decoration:underline;
}
.project-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  padding:40px 20px;
    background-color:#f8fafc;
    border-radius:8px;
}
@media(max-width:768px){
    .project-gallery{
        padding:20px 10px;
    }
}
.project-image{
  width:100%;
  height:auto;
  border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  margin-bottom:15px;
}
.project-image:hover{
  transform:scale(1.02);
  transition:transform 0.3s ease;
}
@media(max-width:768px){
  .project-card h3{
    font-size:20px;
  }
  .project-card p{
    font-size:14px;
  }
}
.project-section{
  padding:60px 40px;
  background-color:#e0f2fe;
}
@media(max-width:768px){
    .project-section{
        padding:40px 20px;
    }
}


.project-header{
  text-align:center;
  margin-bottom:40px;
}
.project-header h1{
  font-size:36px;
  color:#0f172a;
}
.project-header p{
  font-size:18px;
  color:#475569;
  margin-top:10px;
}   
@media(max-width:768px){
  .project-header h1{
    font-size:28px;
  }
  .project-header p{
    font-size:16px;
  }
}
.project-tags{
  margin-top:10px;
}
.project-tag{
    display:inline-block;
    background-color:#38bdf8;
    color:#fff;
    padding:5px 10px;
    border-radius:4px;
    font-size:14px;
    margin-right:8px;
}
.project-tag:hover{
    background-color:#0ea5e9;
}   
.project-card-footer{
  margin-top:20px;
  font-size:14px;
  color:#94a3b8;
}
.project-card-footer a{
  color:#3b82f6;
  text-decoration:none;
}
.project-card-footer a:hover{
  text-decoration:underline;
}   
.project-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  transform:translateY(-5px);
  transition:all 0.3s ease;
}
.project-card img{
  width:100%;
  border-radius:6px;
  margin-bottom:15px;
}
.project-card img:hover{
  transform:scale(1.03);
  transition:transform 0.3s ease;
}
.project-card-content{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}
.project-card-content h3{
  margin-bottom:10px;
}
.project-card-content p{
    flex-grow:1;
    margin-bottom:15px;
}