.navbar-brand {
  height: 70px;
}

.menu-toggle {
  top: 18px;
  position: absolute;
}
.menu-toggle i {
  background-color: #00a8cc;
  border-radius: 3px;
}
#offcanvas-menu {
  background: #233644;
}
#offcanvas-menu .close-menu i {
  background-color: #00a8cc;
}
#offcanvas-menu .menu-wrapper li a.active {
  color: #00a8cc;
}
.header-section .navbar .navbar-collapse .navbar-nav li .dropdown-menu {
  min-width: 300px;
}
.contact-section .contact-bar .wrapper-content ul li .content {
  width: calc(100% - 50px);
}
.contact-section .footer-section .footer-wrapper {
  padding: 40px 35px;
}
.sosyalicon {
  font-size: 18px;
  margin-right: 10px;
}
.slider-ust {
  position: relative;
  overflow: hidden;
}
.slider-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20%;
  left: 20%;
  width: 100%;
  height: 100%;
  transform: scale(0.65);
}
.slider-container-ic {
  background: rgba(0, 167, 204, 0.452);
  padding: 30px;
  max-width: 800px;
}
.slider-container-ic h3 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.slider-container-ic h4 {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.slider-container-ic h5 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}

@media (min-width: 990px) {
  .slider__area {
    margin: 100px 0 0 0;
  }
}
@media (max-width: 990px) {
  .slider-container-ic h4 {
    display: none;
  }
  .slider-container-ic h3 {
    font-size: 30px;
  }
  .slider-container-ic h5 {
    font-size: 18px;
  }
  .slider-container {
    top: 0;
    left: 0;
  }
}
/* =========================
   Services cards - modern UI
   ========================= */

:root {
  --svc-bg: #ffffff;
  --svc-text: #0f172a; /* slate-900 */
  --svc-muted: #475569; /* slate-600 */
  --svc-border: rgba(15, 23, 42, 0.1);
  --svc-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  --svc-shadow-hover: 0 18px 45px rgba(2, 6, 23, 0.14);

  --svc-accent: #00a8cc; /* blue-600 */
  --svc-accent2: #22c55e; /* green-500 */
  --svc-accentSoft: rgba(37, 99, 235, 0.1);
}

/* Kartın dış kabı (senin existing sınıflarınla uyumlu) */
.services__item {
  border-radius: 18px;
}

/* Asıl kart */
.services__item-inner {
  position: relative;
  height: 100%;
  background: var(--svc-bg);
  border: 1px solid var(--svc-border);
  border-radius: 18px;
  padding: 26px 22px 22px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 14px;

  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Üstte ince şerit + hafif arka plan parıltısı */
.services__item-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00a8cc, #00a8cc);
  opacity: 0.95;
}

.services__item-inner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(37, 153, 235, 0.062),
    rgba(37, 99, 235, 0) 70%
  );
  filter: blur(0px);
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hover */
.services__item:hover .services__item-inner {
  transform: translateY(-6px);
  box-shadow: var(--svc-shadow-hover);
  border-color: rgba(37, 99, 235, 0.25);
}
.services__item:hover .services__item-inner::after {
  transform: scale(1.08);
  opacity: 1;
}

/* Icon alanı */
.services__icon span {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.12),
    rgba(34, 197, 94, 0.08)
  );
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.06);
}

.services__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  filter: saturate(1.05);
}

/* İçerik */
.services__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.services__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.services__title a {
  color: var(--svc-text);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
  margin: 10px 0 0 0;
  display: block;
}

.services__item:hover .services__title a {
  color: var(--svc-accent);
}

.services__content p {
  margin: 0;
  color: var(--svc-muted);
  font-size: 14.5px;
  line-height: 1.65;

  /* Çok uzunsa güzelce kısalt */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Buton alanı */
.services__btn {
  margin-top: auto;
  padding-top: 6px;
}

.services__btn .tp-btn-border {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.06);
  color: var(--svc-accent);
  text-decoration: none;

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

.services__btn .tp-btn-border i {
  transition: transform 0.2s ease;
}

.services__item:hover .tp-btn-border {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.services__item:hover .tp-btn-border i {
  transform: translateX(2px);
}

/* Koyu arka plan varsa otomatik daha iyi görünmesi için (opsiyonel) */
@media (prefers-color-scheme: dark) {
  :root {
    --svc-bg: rgba(15, 23, 42, 0.65);
    --svc-text: #e2e8f0;
    --svc-muted: #cbd5e1;
    --svc-border: rgba(148, 163, 184, 0.16);
    --svc-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    --svc-shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.4);
  }
}
/* CTA Alanı */
.cta__area {
  padding: 70px 0;
  position: relative;
  background-color: #00a8cc; /* koyu lacivert / kurumsal */
}

/* İç Kutu */
.cta__inner-5 {
  background-color: #213442;
  border-radius: 12px;
  padding: 50px 40px;
}

/* Metin Alanı */
.cta__content-5 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.cta__btn-5 {
  display: flex;
  justify-content: flex-end;
}
.cta__title-5 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Buton */
.tp-btn-orange-2 {
  display: inline-block;
  padding: 14px 28px;
  background-color: #00a8cc;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.tp-btn-orange-2:hover {
  background-color: #0090b1;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .cta__inner-5 {
    padding: 40px 30px;
  }

  .cta__title-5 {
    font-size: 24px;
  }

  .cta__btn-5 {
    margin-top: 25px;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .cta__inner-5 {
    padding: 30px 20px;
  }

  .cta__title-5 {
    font-size: 22px;
  }
}
.project-section .project-carousel .slick-arrow.slick-prev::after {
  content: "ÖNCEKİ";
  font-size: 16px;
}
.project-section .project-carousel .slick-arrow.slick-next::after {
  content: "SONRAKİ";
  font-size: 16px;
}
.ilet {
  color: #fff;
}
.breadcrumb__title {
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  line-height: 1.2;
}
.ileta:hover {
  color: #fff;
}
.header-title {
  padding: 120px 0 120px;
}
/* Genel liste */
.contact__list-11 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Kart */
.contact__list-item-11 {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  transition: all 0.25s ease;
}

.contact__list-item-11:hover {
  border-color: #ddd;
  background: #fafafa;
}

/* Icon alanı */
.contact__list-icon-11 {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.contact__list-icon-11 svg {
  width: 26px;
  height: auto;
}

/* İçerik */
.contact__list-content-11 h5 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.contact__list-content-11 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact__list-content-11 a {
  color: #555;
  text-decoration: none;
}

.contact__list-content-11 a:hover {
  color: #000;
  text-decoration: underline;
}

/* Renkli varyasyonlar (abartısız) */
.contact__list-item-11.is-green .contact__list-icon-11 {
  background: #e9f6ef;
  color: #1f7a4d;
}

.contact__list-item-11.is-brown .contact__list-icon-11 {
  background: #f3ede7;
  color: #6a4a2f;
}

/* Sosyal medya */
.iltssy {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.iltssy a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.iltssy a:hover {
  background: #000;
  color: #fff;
}
/* Grid item */
.blog__grid-item {
  height: 100%;
  margin: 0 0 30px 0;
}

/* Kart */
.blog__item-10 {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.25s ease;
}

.blog__item-10:hover {
  border-color: #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Görsel */
.blog__thumb-10 {
  position: relative;
  overflow: hidden;
}

.blog__thumb-10 img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog__item-10:hover .blog__thumb-10 img {
  transform: scale(1.05);
}

/* İçerik */
.blog__content-10 {
  padding: 18px 20px 20px;
}

/* Üst meta */
.blog__content-10-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog__meta-10 span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777;
}

.blog__meta-10 svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* Başlık */
.blog__title-10 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.blog__title-10 a {
  color: #203441;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 22px;
  font-weight: 700;
}

.blog__title-10 a:hover {
  color: #000;
  text-decoration: underline;
}

/* Mobil ufak dokunuş */
@media (max-width: 768px) {
  .blog__thumb-10 img {
    height: 200px;
  }

  .blog__title-10 {
    font-size: 17px;
  }
}
/* Sidebar genel */
.news-right-bar {
  position: relative;
}

/* Widget */
.widget-post {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
}

/* Başlık */
.widget-post h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #111;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* Liste */
.widget-post ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget-post ul li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

.widget-post ul li:last-child {
  border-bottom: none;
}

/* Thumbnail */
.widget-post .thumb {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.widget-post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.widget-post ul li:hover .thumb img {
  transform: scale(1.08);
}

/* İçerik */
.widget-post .post-desk {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.widget-post .post-desk h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.widget-post .post-desk h5 a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.widget-post .post-desk h5 a:hover {
  color: #000;
  text-decoration: underline;
}

/* Tarih */
.widget-post .date {
  font-size: 12px;
  color: #777;
}

/* Mobil */
@media (max-width: 768px) {
  .news-right-bar {
    margin-left: 0;
    margin-top: 30px;
  }

  .widget-post {
    padding: 18px;
  }

  .widget-post .thumb {
    width: 70px;
    height: 55px;
  }
}
.w-100 {
  width: 100%;
}
/* Sidebar genel */
.sidebar__wrapper {
  position: relative;
}

/* Widget */
.sidebar__widget {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
}

/* Başlık */
.sidebar__widget-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #111;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* Post listesi */
.sidebar__post {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Tek post */
.rc__post {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Thumbnail */
.rc__post-thumb {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.rc__post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rc__post:hover .rc__post-thumb img {
  transform: scale(1.08);
}

/* İçerik */
.rc__post-content {
  display: flex;
  align-items: center;
}

.rc__post-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.rc__post-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rc__post-title a:hover {
  color: #000;
  text-decoration: underline;
}

/* Mobil */
@media (max-width: 768px) {
  .sidebar__wrapper {
    padding-left: 0;
    margin-top: 30px;
  }

  .sidebar__widget {
    padding: 18px;
  }

  .rc__post-thumb {
    width: 70px;
    height: 55px;
  }
}
/* Paylaşım alanı */
.tagcloud-sm {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* Ortak ikon buton */
.tagcloud-sm a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover genel */
.tagcloud-sm a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: #fff;
}

/* Platform renkleri (hover) */
.tagcloud-sm a:hover .fa-linkedin {
  color: #fff;
}
.tagcloud-sm a:hover {
  background: #000;
}

/* Platform özel renk */
.tagcloud-sm a:has(.fa-linkedin):hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.tagcloud-sm a:has(.fa-twitter):hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.tagcloud-sm a:has(.fa-whatsapp):hover {
  background: #25d366;
  border-color: #25d366;
}

/* Mobil */
@media (max-width: 768px) {
  .tagcloud-sm {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .header-title {
    padding: 50px 0 50px;
  }
}
@media only screen and (max-width: 479px) {
  .hello-section .content-section h4::before {
    display: none;
  }
}
