.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.home-btn {
  padding: 8px 18px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover effect */
.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,114,255,0.3);
  background: linear-gradient(135deg, #0056d2, #0096ff);
}
  .logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  color: #111;
  transition: 0.3s ease;
}

/* Highlight "Point" */
.logo span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effect */
.logo:hover {
  transform: scale(1.05);
}
/* Section Background */
/* WORK PAGE BACKGROUND */
body {
  background: #f8fbff;  /* soft light blue instead of plain white */
}
.work-hero {
  text-align: center;
  padding: 80px 20px 50px;
  background: linear-gradient(180deg, #f0f6ff, #ffffff);
}

.work-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
}

.work-hero p {
  color: #6b7280;
  font-size: 16px;
}

/* Projects Layout */
.projects {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* Card Design */
.card {
  width: 340px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eef2ff;
}

/* Hover */
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Image Fix */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.card-content p {
  color: #6b7280;
  font-size: 14px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #0072ff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0056d2;
  transform: translateY(-2px);
}

.disabled {
  background: gray;
  cursor: not-allowed;
}