.agrotod-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column; /* 🔹 Satır değil sütun hizası */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.agrotod-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.6);
  z-index: -1;
}

.agrotod-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: 2px;
  color: #ffcc00;
  text-shadow: 0 0 25px rgba(255, 204, 0, 0.7);
}

.agrotod-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.agrotod-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  width: 350px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.agrotod-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.agrotod-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 20px 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  margin: 0;
}

.agrotod-card:hover {
  transform: translateY(-10px);
  border-color: #ffcc00;
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.4);
}

.agrotod-card:hover img {
  transform: scale(1.1);
}
