/* === HERO / TANITIM BÖLÜMÜ === */
.hero-container {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url('./pictures/banner.jpg'); /* Görsel yolunu buraya gir */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.3); /* Görsele hafif koyuluk verir */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-box {
  background-color: white;
  padding: 2rem;
  margin-left: 5%;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobil için medya sorgusu */
@media (max-width: 768px) {
  .hero-box {
    max-width: 90%; /* genişliği ekranın %90’ı yap */
    margin-left: auto;  /* otomatik kenar boşlukları */
    margin-right: auto;
    padding: 1.5rem; /* biraz daha az padding */
  }
}

.hero-box h1 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.hero-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* === OUR MISSION SECTION === */
.mission-section {
  padding: 4rem 2rem;
  background-color: #fdfdfd;
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: 1300px;
  margin: auto;
}

/* Video Alanı */
.mission-video {
  flex: 1 1 60%;
  max-width: 600px;
}

.mission-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text Area */
.mission-text {
  flex: 1 1 35%;
  max-width: 500px;
  margin-left: 0;       /* Soldan boşluk sıfır */
  margin-right: auto;
  padding-top: 40px;
}

.mission-text h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.mission-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* === WHAT WE DO SECTION === */
.what-we-do-section {
  background-color: #147deddb; /* canlı mavi */
  color: white;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.what-we-do-section h3{
  color:#f0f0f0;
}

.what-we-do-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.25rem;
  color: white;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: white;
  bottom: 0;
  left: 20%;
  border-radius: 2px;
}

.wwd-cards {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.wwd-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  background: rgba(255, 255, 255, 0.3);
}

.wwd-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

.wwd-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.wwd-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #f0f0f0;
}

