.pages_detail .wrapper-hero-page {
  background : var(--primary) ;
}

.hsec {
  padding-top: 100px;
  padding-bottom: 100px;
}


.about-us-section {
  margin-top:90px;
  margin-bottom:90px;
  background-image: url('/asset/images/gemimax.jpg');
  background-size: cover;
  background-position: center;
}

/* ==========================================
   CONTAINER İÇİ HERO KART TASARIMI
   ========================================== */

   

/* Dış alan sadece üst/alt padding verir */
.hero-section {
  padding: 40px 0;
  width: 100%;
}

/* Arka plan resmi ve yükseklik container içi karta verildi */
.hero-card {
  position: relative;
  width: 100%;
  min-height: 600px; /* Container içindeyken sabit veya min yükseklik verilmesi daha dengelidir */
  background: url('/asset/images/gemimax.jpg') center / cover no-repeat;
  border-radius: 16px; /* İsteğe bağlı: Kutunun köşelerini yuvarlatmak şık durur */
  overflow: hidden;
  padding: 60px 40px 40px 40px;
}

/* Koyu Filtre Katmanı (Sadece kartı kaplar) */
.hero-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
 180deg, 
    rgba(0, 20, 50, 0.75) 0%, 
    rgba(0, 0, 0, 0) 35%, 
    rgba(0, 0, 0, 0) 65%, 
    rgba(0, 20, 50, 0.75) 100%
  );
  z-index: 1;
}

/* İçeriklerin filtrenin üstünde durması için z-index katmanı */
.hero-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

/* Üst Metin Grubu */
.hero-content-row {
  margin-bottom: 50px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  margin-bottom: 1.75rem;
  max-width: 650px;
  opacity: 0.95;
  line-height: var(--lh-normal);
  color: var(--white);
  
}

/* Buton Tasarımı */
.btn-hero-outline {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-normal);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Alt İstatistikler */
.hero-features-row {
  margin-top: auto;
  padding-top: 6rem;
}

.feature-item {
  padding: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* İçindeki SVG'nin taşmadan tam sığmasını sağlar */
}

.my-icon {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  color: var(--white) !important;
  display: block;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  margin: 0;
  line-height: var(--lh-tight);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}



@media (max-width: 991.98px) {
  .hero-card {
    min-height: auto;
    padding: 40px 20px 30px 20px;
  }

  .hero-title {
    font-size: var(--text-xl);
  }
}

@media (max-width: 575.98px) {
  .hero-card {
    padding: 30px 15px 20px 15px;
    border-radius: 8px; /* Mobilde daha küçük köşe yuvarlatma */
  }

  .hero-title {
    font-size: var(--text-lg);
  }

  .hero-description {
    font-size: var(--text-sm);
  }
}