#header #logo img {
  height: 48px !important;
  width: auto !important;
}

.slider-caption {
  padding-top: 350px;
}
@media (max-width: 768px) {
  .slider-caption {
    padding-top: 150px;
  }
}

.menu-link {
  font-size: 1.2rem;
  text-transform: none;
}
.sub-menu-container .menu-link {
  font-size: 1rem !important;
}

/* Görsel Yapısı ve Dekorasyon */
.service-img-wrapper {
  position: relative;
  padding: 15px; /* Dekoratif arkaplan için boşluk */
}

.service-img-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 34, 34, 0.05) 0%,
    rgba(34, 34, 34, 0.1) 100%
  );
  border-radius: 24px;
  z-index: 0;
  transform: translate(15px, 15px);
  transition: all 0.4s ease;
}

/* Sol-Sağ zig-zag durumuna göre dekorasyon yönünü çevirme */
.flex-row-reverse .service-img-backdrop {
  transform: translate(-15px, 15px);
}

.service-img-box {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-img-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-img-wrapper:hover .service-img-backdrop {
  transform: translate(
    8px,
    8px
  ); /* Hover durumunda arkadaki gölge hafifçe yaklaşır */
}

.flex-row-reverse .service-img-wrapper:hover .service-img-backdrop {
  transform: translate(-8px, 8px);
}

.service-img-box:hover img {
  transform: scale(1.06);
}

/* Tipografi İyileştirmeleri */
.service-title {
  color: #222;
  letter-spacing: -1px;
  line-height: 1.2;
}

.service-desc {
  font-size: 1.15rem;
  line-height: 1.85;
  text-align: justify;
  color: #666 !important;
}

/* Buton İyileştirmeleri */
.button-shadow {
  box-shadow: 0 10px 20px rgba(34, 34, 34, 0.15);
  transition: all 0.3s ease;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.btn-service i {
  transition: transform 0.3s ease;
}

.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(34, 34, 34, 0.25);
}

.btn-service:hover i {
  transform: translateX(4px);
}

.btn-service-all {
  transition: all 0.3s ease;
  border-width: 2px !important;
}

.btn-service-all:hover {
  background-color: #222 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

#page-title h1 {
  text-transform: none;
}

/* Haber Kartı Genel Yapısı */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Görsel Alanı */
.news-image-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image-wrapper img {
  transform: scale(1.08);
}

/* İçerik Alanı */
.news-content-wrapper {
  padding: 25px;
  flex-grow: 1;
}

.news-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.news-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 600;
}

.news-title a {
  color: #222;
}

.news-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-image img {
  height: 200px !important;
  object-fit: cover;
}

