/* ===============================
   GENEL NAVBAR AYARLARI
   =============================== */
.navbar-nav > li {
  position: relative;
}
.limited-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;   /* maksimum 5 satır */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-nav > li > a {
  padding:0px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
/* Genel dropdown küçültme */
.gtranslate_wrapper {
  display: inline-block;
  font-size: 12px;
    
}
  .filter-buttons {
      text-align: center;
      margin-bottom: 20px;
    }
    .filter-buttons button {
      padding: 10px 20px;
      margin: 5px;
      border: none;
      border-radius: 25px;
      background: #e0e0e0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-buttons button.active {
      background: #007bff;
      color: white;
    }
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      max-width: 900px;
      margin: 0 auto;
    }
    .product {
      background: white;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .product:hover {
      transform: translateY(-5px);
    }
/* Video Banner */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.video-banner .content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
  .icon-card {
    position: relative;
    padding: 20px;
    flex: 0 0 18%; /* 5 ikon = yaklaşık %18 her biri, aralarda boşluk için */
    box-sizing: border-box;
    text-align: center;
  }

  .icon-card::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    width: 1px;
    background: #ddd;
    transition: background 0.3s ease;
  }

  /* son kartta border olmasın */
  .icon-card:last-child::after {
    display: none;
  }

.icon-card img {
  max-width: 90px;   /* en fazla 90px olsun */
  width: 100%;       /* bulunduğu kutuya uyum sağlasın */
  height: auto;      /* oran korunsun */
  margin-bottom: 10px;
}

  .icon-card:hover img {
  }

  .icon-card:hover::after {
  }

  .icon-card h6 {
    font-size: 1rem;
    margin-top: 5px;
      font-weight: bold;
  }

  .icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
.video-banner .content p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.video-banner video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* 5 sütun grid (md ve üstü) */
@media (min-width: 768px) {
  .col-md-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.video-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* şeffaf tabaka */
  z-index: 2;
}

.video-banner .content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;  /* üstten alta hizala */
  justify-content: center; /* dikey ortala */
  align-items: center;     /* yatay ortala */
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  padding: 0 20px; /* kenarlarda taşmasın */
}



.video-banner .btn {
  display: inline-block;
  margin: 10px 15px 0 0;
  padding: 10px 25px;
  background: #ff5317;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.video-banner .btn.alt {
  background: #192436;
}
/* Çözümler Alanı */
.cozumler-alani {
    background-color: #fff;
    width: 80%;
  border-radius: 20px;
  margin: -170px auto 0 auto;
  position: relative;
  z-index: 5;

  /* border yerine outline kullanıyoruz */
  outline: 2px solid #fff;        /* beyaz çerçeve */
  outline-offset: 15px;           /* çerçeve ile kutu arasında boşluk */
  padding: 20px;
}
.cozumler-alani-sektor {
  background-color: #fff;
  width: 100%;
  border-radius: 20px;
  margin: 150px auto 0 auto;
  position: relative;
  z-index: 5;
  padding: 20px;
}

/* Top border */
.cozumler-alani-sektor::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 50%;
  height: 2px;       /* border kalınlığı */
  background-color: #ff5317;
  border-radius: 1px;
}

/* Bottom border */
.cozumler-alani-sektor::after {
  content: "";
  position: absolute;
  bottom: 0; 
  width: 70%;        /* %70 genişlik */
  background-color: #ff5317;
  border-radius: 1px;
}


.cozum-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 10px;  /* ✅ kutular arasında boşluk */
}


.cozum-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5’li */
  gap: 20px; /* kutular arası boşluk */
  text-align: center;
}

.cozum-box {
  background: rgba(255,255,255,0.8); /* %80 opak beyaz */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;       /* ikon üstte, yazı altta */
  align-items: center;          /* yatay ortalama */
  justify-content: center;      /* dikey ortalama */
  height: 150px;                /* kutu yüksekliği (isteğe göre değiştir) */
  text-align: center;
}
.cozum-box svg {
  margin-bottom: 12px;          /* ikon ile yazı arasına boşluk */
  max-width: 60px;              /* ikon boyutunu sınırla */
  height: auto;
}

.cozum-box:hover {
  background: #fff;
}

.cozum-box svg {
  width: 60px;
  height: 60px;
  stroke: #ff5317;
  margin-bottom: 10px;
  transition: 0.3s;
}

.cozum-box:hover svg {
}
    .col-5ths {
  width: 20%;
  float: left;
  padding: 15px;
}
    
    /* Çözüm kutuları sektörü */
.cozum-box-sektor {
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  text-align: center;
  margin: 10px;
  transition: background 0.3s;
}

.cozum-box-sektor:hover {
  background: #fff;
}

.cozum-box-sektor svg {
  width: 60px;
  height: 60px;
  stroke: #ff5317;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* Grid sektörü */
.cozum-grid-sektor {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5’li */
  gap: 20px; /* kutular arası boşluk */
  text-align: center;
}

/* 5’li sütun sektörü */
.col-5ths-sektor {
  width: 20%;
  float: left;
  padding: 15px;
}
@media (max-width: 991px) {
  .col-5ths { width: 33.333%; } /* tablet için 3lü */
}
@media (max-width: 767px) {
  .col-5ths { width: 50%; } /* mobil için 2li */
}
@media (max-width: 480px) {
  .col-5ths { width: 100%; } /* küçük mobil tekli */
}

.sektor-baslik-page h2 {
  font-family: 'Poppins', sans-serif; /* şık ve modern font */
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.sektor-baslik h2 {
  font-family: 'Poppins', sans-serif; /* şık ve modern font */
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.baslik-alt-cizgi {
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background-color: #ff5317;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.sektor-baslik h2:hover + .baslik-alt-cizgi {
  width: 120px;
}
 .banner-box-white {
  position: relative;
  background:#fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px;
    width: 50%;
}
.banner-box {
  position: relative;
  background: linear-gradient(135deg, #fff7f2, #ffe4d6);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px;
    width: 50%;
}
.banner-img {
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
}
.banner-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #192436;
  margin-bottom: 10px;
}
.banner-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff5317;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}
.btn:hover {
  background: #e64a12;
}
    .hizmet-kart {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  padding: 25px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  height: 100%;
}

.hizmet-kart:hover {
  background: linear-gradient(135deg, #ff6b2c, #ff9345);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.hizmet-kart .ikon {
  font-size: 32px;
  color: #ff5317;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.hizmet-kart:hover .ikon {
  color: #fff;
}

.hizmet-kart h6 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.aciklama-line {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 3 satır ile sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    color: #555; /* opsiyonel renk */
}
.pt-post-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-post-meta ul li {
    display: block; /* alt alta */
    margin-bottom: 5px; /* aralık */
}

.pt-post-meta ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
}

.pt-post-meta ul li a i {
    margin-right: 5px;
    color: #ff5317; /* ikon rengi opsiyonel */
}



#gt_float_wrapper { 
  top: 10px !important;
  right: 10px !important;
  z-index: 99999 !important;
  font-size: 12px !important; 
    position:relative !important;
}
/* Dropdown açılır kutu */
#gt_float_wrapper .gt_options {
  display: none;
  position: absolute;
  top: 100%;   /* seçili dilin altına gelsin */
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 4px 0 !important;
  min-width: 110px !important;
  z-index: 9999;
}

/* Hover ile görünür yap */
#gt_float_wrapper .gt_float_switcher:hover .gt_options {
  display: block;
}

/* Seçili dil kısmı */
.gtranslate_wrapper .glink,
.gtranslate_wrapper select {
  font-size: 15px !important;
  padding: 4px 8px !important;
  min-width: auto !important;
  max-width: 80px !important;
    float: left;
  height: auto !important;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
    text-align: left;
}

/* Açılır kutu küçültme */
.gtranslate_wrapper .gt_options {
  min-width: 110px !important;
  max-width: 120px !important;
  font-size: 12px !important;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 4px 0 !important;
}
.gt_float_switcher .gt-selected .gt-current-lang{
    padding: 5px 5px !important;
    font-size: 12px;
    color: #333;
    font-weight: bold;

}
/* Dil satırları */
.gtranslate_wrapper .gt_options a {
  padding: 4px 8px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px !important;
}

/* Bayrak boyutu */
.gtranslate_wrapper img {
  width: 16px !important;
  height: 11px !important;
}

.megamenu-content {
  width: 100%; /* dropdown tam genişlik */
  left: 0;
  right: 0;
}

.sol-menu.active,
.sol-menu:hover {
  background: #f8f9fa;
  color: #ff5317;
  font-weight: 600;
}
/* 5 sütunluk özel grid */
.col-5-custom {
  flex: 0 0 20%;   /* her biri %20 */
  max-width: 20%;
}

@media (max-width: 991px) {
  .col-5-custom {
    flex: 0 0 33.33%; /* tablet: 3 sütun */
    max-width: 33.33%;
  }
}

@media (max-width: 767px) {
  .col-5-custom {
    flex: 0 0 50%; /* mobil: 2 sütun */
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .col-5-custom {
    flex: 0 0 100%; /* küçük mobil: 1 sütun */
    max-width: 100%;
  }
}
.alt-box {
  border: 1px solid #f1f1f1;
  padding: 10px;
  height: 200px;                /* kutular sabit boyda */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.alt-box img {
  max-height: 110px;
  object-fit: contain;
}

.alt-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
  height: 40px;                 /* sabit yükseklik */
  overflow: hidden;             /* taşarsa kırp */
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav > li > a:hover {
  color: #d20000; /* hover rengi */
}
.sol-menu {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sol-menu img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  object-fit: contain;
}

.sol-menu.active,
.sol-menu:hover {
  background-color: #f8f9fa;
  color: #ff5317; /* turuncu vurgu */
  font-weight: 600;
}

.alt-kategori img {
  max-height: 120px;
  object-fit: cover;
}

/* ===============================
   MEGA MENU STİLİ
   =============================== */
.megamenu {
  position: static !important;
}

.megamenu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border-top: 3px solid #d20000;
  padding: 25px 30px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Sol kategori menüsü */
.megamenu .border-right {
  border-right: 1px solid #eee;
}

.megamenu .list-unstyled li {
  margin-bottom: 10px;
}

.megamenu .list-unstyled li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.megamenu .list-unstyled li a:hover {
  color: #d20000;
}

/* Sağ taraftaki kutucuklar */
.megamenu .col-4 {
  transition: transform 0.2s;
}

.megamenu .col-4:hover {
  transform: translateY(-5px);
}

.megamenu .col-4 img {
  max-height: 80px;
  margin-bottom: 10px;
}

.megamenu .col-4 p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.cozum-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid #ff5317;
  transition: all 0.3s ease;
  height: 100%;
}

.cozum-box svg {
  height: 60px;
  margin-bottom: 15px;
}

.cozum-box h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

/* Hover efekti */
.cozum-box:hover {
  background: #f9f9f9;
  border-color: #ff5317;
  transform: translateY(-6px);
}

.cozum-box:hover h6 {
  color: #ff5317;
}

/* Responsive */
@media (max-width: 767px) {
  .cozum-box {
    padding: 20px 10px;
  }
  .cozum-box svg {
    height: 45px;
  }
}

/* ===============================
   MOBİL GÖRÜNÜM
   =============================== */
@media (max-width: 991px) {
  .megamenu .dropdown-menu {
    position: static;
    width: 100% !important;
    box-shadow: none;
    border-top: none;
    padding: 15px;
  }

  .megamenu .border-right {
    border-right: none;
    margin-bottom: 15px;
  }

  .megamenu .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
