.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.skill-category {
  margin-bottom: 20px;
  text-align: left;
  /* background-color: aqua; */
}

.skill-category-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFF00;
  background-color: #420177;
  margin-bottom: 10px;
  text-align: center;
}

.skill-tag {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  border-left: 3px solid #667eea;
}

.section-title {
  font-size: 22px;
  color: #667eea;
  border-bottom: 3px solid #667eea;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.section-host {
  box-sizing: content-box;
  background-color:#f0f0f0;
}


/* .center {
  margin: auto;
  width: 50%;
  border: 3px solid #73AD21;
  padding: 10px;
} */

.photo-gallery {
  padding: 70px 20px;
  background: #f5f7fa;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2.4rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.gallery-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.gallery-header p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

