  :root{
    --accent:#10c8c8;
    --accent2:#0ea5e9;
  }

  /* TAM GENİŞLİK */
  .hero-img-swiper{
    width: 100vw;
    height: 500px;              /* BURAYI DEĞİŞTİR */
    position: relative;
    overflow: hidden;
  }

  .hero-img-swiper .swiper-slide{
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hero-img-swiper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
  }

  /* premium vignette */
  .hero-img-swiper .swiper-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(900px 400px at 20% 15%, rgba(16,200,200,.14), transparent 55%),
      linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
    pointer-events:none;
  }

  /* OKLAR */
  .hero-img-swiper .swiper-button-prev,
  .hero-img-swiper .swiper-button-next{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    transition: all .15s ease;
    color:#fff;
  }

  .hero-img-swiper .swiper-button-prev:hover,
  .hero-img-swiper .swiper-button-next:hover{
    background: rgba(16,200,200,.18);
    border-color: rgba(16,200,200,.45);
    transform: translateY(-1px);
  }

  .hero-img-swiper .swiper-button-prev:after,
  .hero-img-swiper .swiper-button-next:after{
    font-size: 16px;
    font-weight: 800;
  }

  /* BULLETS */
  .hero-img-swiper .swiper-pagination{
    bottom: 16px !important;
  }

  .hero-img-swiper .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.45);
    opacity: 1;
    border-radius: 999px;
    transition: width .2s ease, background .2s ease;
    margin: 0 5px !important;
  }

  .hero-img-swiper .swiper-pagination-bullet-active{
    width: 26px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
  }

  /* MOBİL */
  @media(max-width:768px){
    .hero-img-swiper{
      height: 280px;
    }
  }
  
.sec-heading h2.sec-title
{
	font-size: 28px;
line-height: 1.25;
}
.blog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.blog-item:hover .blog-thumb img {
  transform: scale(1.05);
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
