/* Mobilde slider kenar boşluğu ve caption font küçültme */
:root {
    --dark: #1E1E1E;
    --primary: #EC642B;
    --warning: #EF9335;
    --secondary: #AFAC95;
    --danger: red;
    --info: #25D366;
}

/* Genel font boyutunu artır */
body {
    font-size: 1.1rem;
    line-height: 1.6;
    padding-top: 80px; /* Navbar için padding */
}

.bottom{
    margin-bottom: 100px !important;
}

/* Hizmetler başlıklarını bold yap */
.services-section h5 {
    font-weight: 700 !important;
}

/* Ana sayfa ikon bölümü başlıklarını bold yap */
.container h5 {
    font-weight: 700 !important;
}

/* Kart açıklamalarını daha okunabilir yap */
.card-text, .service-description, p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Madde işaretleri için satır sonlarını koru */
.text-muted {
    white-space: pre-line;
}
@media(max-width:768px){
    /* Mobil font optimizasyonları */
    body {
        font-size: 1rem;
        padding-top: 70px; /* Mobil navbar için daha az padding */
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    .card-text, .service-description, p {
        font-size: 1rem;
    }

    .revers{
        display: flex;
        flex-direction: column-reverse;     
    }
    .ms-4-marg{
        margin-left: 0 !important;
    }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media(max-width: 480px){
    body {
        font-size: 0.95rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    .card-text, .service-description, p {
        font-size: 0.95rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 18px;
}

.scroll-to-top-btn:hover {
    background: #d4551a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-to-top-btn.show {
    display: block;
}

/* Mobil için daha küçük */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

