/********** Template CSS **********/
:root {
    --primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn:hover::after {
    width: 50%;
    left: 25%;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

.img-fluid{
width: 100%;
height: auto;
object-fit: cover;
min-height: 75%;
max-height: 75%;
}
.service-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* Bölmeyi tam yükseklik yapar */
    text-align: center;
}


  @media (min-width: 2560px) { /* 4K ve üzeri çözünürlükler için */
    .service-item h4 {
      font-size: 3rem; /* 4K ekranlar için yazı boyutunu artır */
    }

  }

.px-4.pb-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-item {
    position: relative;
    overflow: hidden; /* İçeriğin taşmasını engeller */
    padding: 1rem; /* İçerik ile kenarlar arasındaki boşluk */
}

.service-item img {
    max-width: 100%; /* Resim genişliğini kapsayıcıya göre sınırlar */
    height: auto; /* Resim yüksekliğini otomatik olarak ayarlar */
}

.service-item .px-4 {
    width: 100%; /* İçerik kutusunun genişliğini sınırlar */
    text-align: center; /* İçerikteki metni ortalar */
}

.service-item a.btn {
    display: inline-block; /* Butonun genişliğini metne göre ayarlar */
    margin-top: 0.5rem; /* Buton ile metin arasındaki boşluk */
}

/*index carousel responsive tasarım kodları*/
@media (max-width: 768px) {
    .carousel-caption h6 {
        font-size: 1.5rem; /* Küçük ekranlarda daha küçük bir font boyutu */
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .carousel-caption h6 {
        font-size: 2rem; /* Orta boy ekranlar için biraz daha büyük bir font boyutu */
    }
}
   


