/* single-tajdeveloper.css */

.single-tajdeveloper-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.single-tajdeveloper-wrapper h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.developer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.developer-buttons a {
  padding: 12px 20px;
  background-color: #007BFF;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.developer-buttons a:hover {
  background-color: #0056b3;
}

.developer-description {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.projects-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.project-card {
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 10px;
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.project-card .price {
  font-size: 16px;
  color: #333;
}

.developer-logo {
  margin-bottom: 20px;
  text-align: left;
}

.developer-logo img {
  max-height: 60px;
  width: auto;
  display: inline-block;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
}

.card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.project-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 16px 8px;
  color: #222;
}

.project-card .price {
  margin: 0 16px 16px;
  font-size: 14px;
  color: #2da7ff;
  font-weight: 500;
}

.card-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.project-card {
  max-width: 100%;
margin: 0;

}


.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;

  justify-items: start;      /* 👈 This aligns items to the left */
  justify-content: start;    /* 👈 This keeps the whole grid left-aligned */
}

.project-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========== All Developers Page Styles ========== */

.all-developers-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}

.developers-main {
  flex: 0 0 68%;
}

.developers-sidebar {
  flex: 0 0 28%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  font-size: 15px;
}


.developer-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border: 1px dashed #ccc;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.dev-logo {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

.dev-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dev-details {
  flex-grow: 1;
}

.dev-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.dev-details p {
  font-size: 15px;
  margin: 6px 0;
  color: #444;
}

.dev-details i {
  margin-right: 8px;
  color: #2da7ff;
}
