/* 3D Hover Efekti */
.video-card {
  margin: 30px 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2a2a38;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  perspective: 900px;
}

.video-card:hover {
  transform: rotateX(10deg) rotateY(-10deg) translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

.video-card img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

/* Play butonu merkezde kalsın */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.15);
  padding: 20px 26px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  backdrop-filter: blur(4px);
  transition: 0.35s ease;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}
.imagebox {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.imagebox:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Başlık */
.imagebox .box-title a {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.imagebox .box-title a:hover {
    color: #0077ff;
}

/* Metin */
.imagebox .box-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Görsel */
.imagebox .box-image img {
    border-radius: 14px;
    margin-top: 15px;
    width: 100%;
    height: auto;
    display: block;
}

/* Buton */
.imagebox .box-button {
    background: #0077ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.imagebox .box-button:hover {
    background: #005fcc;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
}

.footer-links li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links li a:hover {
  text-decoration: underline;
  color: #000;
}
@media(max-width: 768px){
  .footer-links {
    flex-direction: column;
    gap: 6px;
  }
}
 /* .left  { text-align: left;  background:#f2f2f2; padding:10px; border-radius:8px; }
  .right { text-align: left; background:#e8f0ff; padding:10px; border-radius:8px; }*/

  .row{ 
    display:flex; gap:16px; align-items:center; flex-wrap:wrap
   }
  .row img { 
    max-width:100%; height:auto; display:block; border-radius:6px; 
  }

.container2 {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px;
}

.container2 .left,
.container2 .right {
  flex: 1;
}

/* Mobilde alt alta */
@media (max-width: 480px) {
  .container2 {
    flex-direction: column !important;
  }

  .container2 .left,
  .container2 .right {
    width: 100% !important;
  }
}