.elementor-25485 .elementor-element.elementor-element-61e97f7{--display:flex;}.elementor-25485 .elementor-element.elementor-element-61e97f7 .trx_addons_bg_text{z-index:0;}.elementor-25485 .elementor-element.elementor-element-61e97f7 .trx_addons_bg_text.trx_addons_marquee_wrap:not(.trx_addons_marquee_reverse) .trx_addons_marquee_element{padding-right:50px;}.elementor-25485 .elementor-element.elementor-element-61e97f7 .trx_addons_bg_text.trx_addons_marquee_wrap.trx_addons_marquee_reverse .trx_addons_marquee_element{padding-left:50px;}/* Start custom CSS for html, class: .elementor-element-7d13465 *//* ===========================
   1) GENEL ve GRID AYARLARI
   =========================== */
.media-gallery {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 20px 16px;
  background: #F0F8FA;          /* Çok açık sky-blue */
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;                    /* Kartlar arası yatay ve dikey boşluk */
  justify-content: space-between;
}

/* ===========================
   2) MEDIA CARD (BAĞIMSIZ KUTU)
   =========================== */
.media-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  width: calc(50% - 12px);      /* İki kart + gap(24px) için yüzde ayarı */
  display: flex;
  flex-direction: row;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===========================
   3) SOL: VIDEO BÖLÜMÜ (%48 genişlik) 
      – Modern “aspect-ratio” ile 16:9 garanti
   =========================== */
.media-video {
  position: relative;
  width: 48%;
  aspect-ratio: 16 / 9;          /* Mutlaka 16:9 oran */
  background: #000000;           /* Video yüklenene kadar siyah placeholder */
  border-radius: 8px;
  overflow: hidden;
}

.media-video iframe,
.media-video video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* ===========================
   4) SAĞ: BİLGİ BÖLÜMÜ
   =========================== */
.media-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;            /* Video ile aradaki mesafe */
}

.media-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #001A2E;                /* Lacivert */
  margin: 0;
  line-height: 1.2;
}

.media-features {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.media-features li {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #004579;                /* Logo Mavi */
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 20px;
  line-height: 1.4;
}

.media-features li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.6rem;
  line-height: 1.4;
  color: #25D366;                /* Accent Yeşil */
}

/* ===========================
   5) BUTON STİLİ
   =========================== */
.btn-download {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: #25D366;           /* Accent Yeşil */
  text-decoration: none;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  margin-top: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
  background: #1cb957;           /* Bir miktar koyu Accent */
  transform: translateY(-2px);
}

/* ===========================
   6) RESPONSIVE (992px ALTINDA)
   =========================== */
@media (max-width: 992px) {

  .media-card {
    width: 100%;
    flex-direction: column;
    padding: 16px;
  }

  .media-video {
    width: 100%;
    aspect-ratio: 16 / 9;        /* Mobilde de 16:9 */
    margin-bottom: 16px;
  }

  .media-info {
    width: 100%;
    margin-left: 0;
  }

  .media-info h3 {
    font-size: 1.5rem;
  }

  .media-features li {
    font-size: 0.95rem;
  }

  .btn-download {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

/* ===========================
   7) ESKO İLETİŞİM FORMU (Önceden eklediğiniz .esco-* CSS)
   =========================== */
.esco-contact-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border-top: 6px solid #004579;
  text-align: center;
}

.esco-contact-title {
  font-size: 28px;
  color: #004579;
  margin-bottom: 10px;
}

.esco-contact-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.esco-contact-form {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .esco-contact-section {
    padding: 30px 20px;
  }
}

/* ===========================
   8) İKONLARIN GÖRÜNÜRLÜĞÜ (Opsiyonel)
   =========================== */
.media-video i,
.media-card i {
  display: inline-block !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  speak: none;
}

/* ========================================
   1) MEDYA KAPSAYICISI (İSTEĞE BAĞLI)
   ========================================
   Eğer .media-gallery veya benzer bir satır-kapsayıcınız yoksa,
   doğrudan iframe'lere de uygulayabilirsiniz. Burada .media-video
   isimli kapsayıcıyla örnek gösteriyoruz. */

.media-video {
  width: 300px;              /* Video kutusunun sabit genişliği */
  aspect-ratio: 16 / 9;      /* Her zaman 16:9 oran korunsun */
  background-color: #000;    /* Video yüklenene kadar siyah placeholder */
  border-radius: 8px;        /* Köşeleri yuvarlatmak isterseniz */
  overflow: hidden;
  margin: 0 auto;            /* Ortalamak isterseniz */
}

/* İçindeki iframe veya video, kapsayıcıya tamamen otursun */
.media-video iframe,
.media-video video {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   2) MASAÜSTÜ İÇİN 
   ======================================== */
/* Eğer yan yana iki videonuz varsa, kapsayıcıları yan yana hizalamak için 
   aşağıdaki flex tanımını kullanabilirsiniz (opsiyonel). */
.media-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;       /* Videolar arası boşluk */
  justify-content: center;
  padding: 20px 0;
}

/* .media-card ya da doğrudan iframe sarmalayıcılarınız varsa, onlara şu gibi bir genişlik de verebilirsiniz: */
.media-card {
  /* width: 300px; */       /* İsterseniz kartın tamamını da 300px yapın */
  /* display: inline-block; */ /* Veya flex/item olarak yerleştirin */
}


/* ========================================
   3) MOBİL (600px ALTINDA) 
   ======================================== */
@media (max-width: 600px) {
  .media-video {
    width: 100%;            /* Küçük ekranda tam genişlik, yine 16:9 korunsun */
    max-width: 300px;       /* İsterseniz maksimum 300px sınırı */
    margin: 0 auto;         /* Ortalamak için */
  }
}/* End custom CSS */