/* stack section  */

.stack-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.stack-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stack-card i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.stack-card span {
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 500;
}

.stack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 20px 60px -20px rgba(59, 130, 246, 0.5);
}
/* stack section :end  */

/* services section  */
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 1.25rem;
  padding: 2.25rem;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 30px 80px -30px rgba(59, 130, 246, 0.45);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.75rem;
}

.service-text {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 0.95rem;
}
/* services section end  */

/* project section  */
.project-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.35s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 40px 100px -40px rgba(59, 130, 246, 0.5);
}

.project-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 7, 15, 0.85),
    rgba(5, 7, 15, 0.2)
  );
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  font-size: 1.6rem;
  color: #60a5fa;
}

.project-body {
  padding: 2rem;
}

.project-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.6rem;
}

.project-body p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.project-tags span {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.project-links {
  display: flex;
  gap: 1.3rem;
}

.project-links a {
  font-size: 0.9rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
}

.project-links a:hover {
  color: #60a5fa;
}
/* project section end  */

/* contact section  */
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 1.5rem;
}

.contact-label {
  display: block;
  color: #d1d5db;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-input {
  width: 100%;
  background: rgba(5, 7, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.6rem;
  padding: 0.9rem 1rem;
  color: #f9fafb;
  transition: 0.3s;
}

.contact-input:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.contact-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 0.7rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #3b82f6, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(59, 130, 246, 0.6);
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-row i {
  color: #60a5fa;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.info-row span {
  display: block;
  color: #e5e7eb;
  font-weight: 500;
}

.info-row a,
.info-row p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-btn:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-4px);
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #4ade80;
  font-weight: 500;
}

.availability .dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 999px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* contact section end  */

