.blog-section {padding: 40px 20px;max-width: 1000px;margin: 0 auto;}
.blog-section h2 {font-size: 28px;margin-bottom: 24px;display: flex;align-items: center;gap: 12px;color: #333;}
.blog-content {margin-bottom: 40px;}
.blog-image {width: 100%;max-height: 400px;object-fit: cover;border-radius: 12px;box-shadow: 0 8px 16px rgba(0,0,0,0.1);margin-bottom: 20px;}
.blog-text {font-size: 16px;line-height: 1.8;color: #444;}
.fullwidth-image-box {position: relative;width: 100%;overflow: hidden;border-radius: 12px;}
.fullwidth-image {width: 100%;height: auto;display: block;object-fit: cover;filter: brightness(0.7);position: relative;z-index: 1;}
.overlay-button {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);background-color: rgba(255,255,255,0.15);backdrop-filter: blur(6px);padding: 12px 24px;border-radius: 8px;color: #fff;font-weight: 600;text-decoration: none;z-index: 2;display: flex;align-items: center;gap: 8px;box-shadow: 0 4px 12px rgba(0,0,0,0.2);transition: all 0.3s ease;}
.overlay-button:hover {background-color: rgba(255,255,255,0.25);}

.tech-category {margin-bottom: 40px;}
.tech-category h3 {font-size: 2rem;margin-bottom: 20px;color: #1a1a1a;font-weight: 600;letter-spacing: 5px;border-bottom: 2px solid #f0f0f0;padding-bottom: 8px;position: relative;}
.tech-category h3::after {content: '';position: absolute;left: 0;bottom: -2px;width: 50px;height: 3px;background-color: #007BFF;border-radius: 2px;}
.tech-grid {display: grid;grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));gap: 20px;}
.tech-item {padding: 12px;text-align: center;transition: transform 0.2s ease;}
.tech-item:hover {transform: translateY(-4px);}
.tech-item img {width: 100%;height: 400px;object-fit: contain;margin-bottom: 8px;border-radius: 8px;}
.tech-item span {font-size: 1.3rem;color: #444;display: block;margin-top: 6px;}

@media only screen and (max-width: 600px) {
    .tech-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 sütun yap */
      gap: 16px;
    }
  
    .tech-item img {
      height: 220px; /* mobilde daha kısa görsel */
    }
  
    .tech-item span {
      font-size: 1.1rem;
    }
}