/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body{
    margin: 0;
    padding:0;
    background-color:#224479;
    font-family: 'Roboto', sans-serif;
    text-align: center; 
    background: url("../assets/images/bg3.png") no-repeat center center/cover;
}

/* =========================
   PROJECT LIST (CARDS)
========================= */

.project-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
}

.project-card {
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  cursor: pointer;

  /* ADD THIS (actual card look) */
  background: #1f2933;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* image preview */
.project-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
 



.project-title {
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to top, #111, transparent);
} 

.project-card:hover .project-title {
  color: #4CAF50;
}

.visit-btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, #4CAF50, #2ecc71);
  border-radius: 8px;
  transition: 0.3s; 
  text-decoration: none; 
  color: white;
}

.visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76,175,80,0.4);
}

/* =========================
   PROJECT DETAIL PAGE
========================= */

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 6px;
  text-align: center;
}

.title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 30px;

  text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.image {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
} 

.card-content {
  padding: 25px;
  text-align: left;
}

.card {
  background-color: #1f2933;
  border-radius: 18px;
  padding: 25px;
  margin-top: 25px;

  text-align: left;

  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.project-info {
  width: 40%;
  text-align: left;
}

.desc {
  font-size: 18px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 20px; 
  margin-top: 20px;
}  

.project-card-glass {
  max-width: 900px;
  margin: 30px auto;
  border-radius: 20px;
  overflow: hidden;

  /* GLASS EFFECT */
  background: rgba(31, 41, 51, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back {
  display: block;
  margin-top: 20px;
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold; 
  margin-top: 2rem;
}

.back:hover {
  opacity: 0.8;
} 

.tech-tags {
  display: flex;
  gap: 5rem;
 
  
}

.tech-tag {
  display: flex;
  align-items: center;
  gap: 11px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 5px 12px;

  font-size: 13px;
  color: #e5e7eb;

  backdrop-filter: blur(6px);
}

.tech-tag img {
  width: 16px;
  height: 16px;
}