.purecounter-container {
  display: flex !important;
  justify-content: center !important;
  align-items: baseline;
}

.plus-sign {
  margin-left: 2px;
  font-weight: bold;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-title {
  font-weight: 600;
  font-size: 1rem;
}
.gallery-desc {
  font-size: 0.85rem;
}
.btn-get-started {
  background: #ff5722;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
}
.btn-get-started:hover {
  background: #e64a19;
  color: #fff;
  text-decoration: none;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 380px; /* smaller, compact height */
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.project-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.project-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  border-bottom: 1px solid #eee;
}
.project-card:hover .project-img img {
  transform: scale(1.08);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .overlay {
  opacity: 1;
}
.overlay a {
  padding: 8px 20px;
  background: #ff4d4d;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.overlay a:hover {
  background: #ff6666;
}
.project-info {
  padding: 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}
.project-info p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.3;
  margin-bottom: 8px;
}
.tech-tags {
  margin-top: 5px;
}
.tech-tags span {
  display: inline-block;
  background: #f2f2f2;
  color: #333;
  padding: 3px 8px;
  margin-right: 5px;
  margin-top: 4px;
  border-radius: 5px;
  font-size: 0.75rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.project-card:hover .tech-tags span {
  transform: translateY(-2px);
  background: #ffeaea;
  color: #ff4d4d;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
  padding: 6px 20px; /* better spacing */
  background-color: #0a66c2; /* LinkedIn blue */
  color: white;
  font-weight: 500;
  border-radius: 25px; /* rounded pill shape looks modern */
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.linkedin-btn:hover {
  transform: translateY(-2px);
}

.linkedin-btn i {
  font-size: 1.4rem; /* slightly bigger icon */
}

.linkedin {
  justify-self: center;
}

.skills {
  row-gap: 8rem;
}

#team {
  padding-bottom: 150px;
}

/* Floating Contact / Book a Call Button */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  padding: 15px 25px;
  background-color: #1acc8d; /* solid green */
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

/* Hover effect */
.contact-floating:hover {
  background-color: #17b77d; /* slightly darker green */
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Hover effect */
.contact-floating:hover {
  background-color: #17b77d;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: #fff;
}

/* Optional: Show only after scrolling */
.contact-floating.hidden {
  display: none;
}
