body {
    font-family: "Roboto", sans-serif;
    color: #323232;
    font-weight: 400;
}



/* Sayfa içi yumuşak kaydırma için */
html {
    scroll-behavior: smooth;
}

/* Navbar için düzeltmeler */
/* Navbar stil güncellemeleri */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* Başlangıçta gölge yok */
    padding: 15px 0; /* Başlangıçta daha geniş padding */
}

/* Kaydırıldığında navbar görünümü */
.navbar-scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0; /* Kaydırma sonrası daha dar padding */
}

/* Logo geçiş efekti */
.navbar-brand img {
    transition: all 0.3s ease;
}


.navbar-nav .nav-link.active-dil {
    color: #FD6E20 !important;
}

.active-dil {
    color: #FD6E20 !important;
}


.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

/* Aktif menü öğesi */
.navbar-nav .nav-link.active {
    color: #FD6E20 !important;
    font-weight: 500;
}

/* Mobil menü için düzeltmeler */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}




/*Menü*/

#navbarNav {
    font-size: 15px;
    color: #323232;
}


#navbarNav .nav-item .nav-link {
    padding: 0 25px;
}

#navbarNav .nav-item .dil {
    padding: 0 10px !important;
    font-weight: 700;
}

#navbarNav .nav-item .nav-link:hover {
    color: #FD6E20;
}

.navbar-nav .nav-link.active {
    color: #FD6E20 !important;
}


.navbar-brand {
    width: 138px;
}

#giris{
    background-image: url('../img/giris_gorsel.jpg'); /* Resim dosya adını kendi dosya adınıza göre değiştirin */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.giris-yazi-alani .small-title {
    font-size: 16px;
    font-weight: 500;
}

.giris-yazi-alani .big-title {
    font-size: 42px;
    font-weight: 700;
    margin-top: 45px;
}

.giris-yazi-alani .description {
    font-size: 18px;
}


.giris-yazi-alani .btn {
    font-size: 18px;
    color: #fff;
    border-radius: 15px !important;
    background: #323232;
    padding: 11px 26px 9px 26px !important;
}

.giris-yazi-alani .btn:hover {
    background: #FD6E20;
}






/* Neden Day Flow Rutini Bölümü Stilleri */
#neden {
    background-color: #F2F2F2;
    padding: 80px 0;
}

.section-title {
    font-size: 25px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 15px;
}

.title-turuncu {
    color: #FC6E20;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature icon stillendirmesi */
.grad-turuncu {
    background: linear-gradient(50deg, #FF7010, #FF974C); /* Turuncu arka plan */
}

.grad-yesil {
    background: linear-gradient(50deg, #007D7A, #00B5B0); /* Yeşil arka plan */
}

.grad-pembe {
    background: linear-gradient(50deg, #981B49, #D81B61); /* Pembe arka plan */
}

.grad-mavi {
    background: linear-gradient(50deg, #1A5B9C, #277ACD); /* Mavi arka plan */
}

.feature-icon {
    position: relative;
    width: 97px;
    height: 97px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1); /* SVG ikonları beyaza çevirir */
}


.number-turuncu {
    background-color: #FF7010; /* Turuncu numara dairesi */
}

.number-yesil {
    background-color: #007D7A; /* Yeşil numara dairesi */
}

.number-pembe {
    background-color: #981B49; /* Pembe numara dairesi */
}

.number-mavi {
    background-color: #1A5B9C; /* Turuncu numara dairesi */
}

.feature-icon .icon-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid white;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    color: #323232;
    line-height: 1.6;
}

/* Hover efekti - isteğe bağlı */
.feature-card:hover .feature-title {
    /*color: #FD6E20;*/
}








/* Özellikler Bölümü Stilleri */
#ozellikler {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Feature Butonları */
.feature-buttons {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 150px;
}

.feature-buttons::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}

.feature-btn {
    display: flex;
    align-items: center;
    padding: 0px 20px;
    margin-bottom: 15px;
    background: transparent;
    border: none;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 3px;
    height: 100%;
    background-color: #FD6E20;
    z-index: 2;
}

.feature-btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0; /* Pasif durumda gri arka plan */
    border-radius: 50%; /* Daire şeklinde */
    transition: all 0.3s ease;
}

.feature-btn-icon img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    filter: brightness(0); /* SVG ikonları siyah yapar (pasif durumda) */
}

.feature-btn.active .feature-btn-icon {
    background-color: #FD6E20; /* Aktif durumda turuncu arka plan */
}

.feature-btn.active .feature-btn-icon img {
    filter: brightness(0) invert(1); /* SVG ikonları beyaz yapar (aktif durumda) */
}

.feature-btn span {
    font-size: 17px;
    /*font-weight: 500;*/
    color: #666;
    transition: color 0.3s ease;
}

.feature-btn.active span {
    color: #FD6E20;
    font-weight: 600;
}

.feature-btn:hover span {
    color: #FD6E20;
}

.feature-btn:hover .feature-btn-icon {
    background-color: #FD6E20; /* Hover durumunda turuncu arka plan */
}

.feature-btn:hover .feature-btn-icon img {
    filter: brightness(0) invert(1); /* Hover durumunda ikonları beyaz yapar */
}

.feature-btn:hover span {
    color: #FD6E20; /* Hover durumunda yazıları turuncu yapar */
}



/* Telefon Görseli */
.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.phone-slide-out {
    opacity: 0 !important;
    transform: translateY(20px) !important; /* Aşağı doğru kayarak kaybol */
}

.phone-slide-in {
    opacity: 1 !important;
    transform: translateY(0) !important; /* Normal konuma dön */
}

.phone img {
    max-width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* İçerik Alanı */
.feature-content-container {
    position: relative;
    min-height: 250px; /* İçerik yüksekliğine göre ayarlayın */
    margin-top: 170px;
}

/* Animasyon için başlangıç konumları */
.feature-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(30px); /* Yazılar sağdan gelsin */
}

.feature-content.active {
    display: block;
    opacity: 1;
    position: relative;
    transform: translateX(0); /* Normal konuma dön */
}

.feature-content h2 {
    font-size: 25px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .feature-buttons::after {
        display: none;
    }
    
    .feature-btn.active::after {
        display: none;
    }
    
    .feature-content {
        margin-top: 30px;
        text-align: center;
    }
    
    .phone-container {
        margin: 40px 0;
    }
}







/* Kullanıcı Yorumları Bölümü Stilleri */
#yorumlar {
    background-color: #fff;
    padding: 80px 0;
}

.rating-overall {
    margin-top: 10px;
    font-weight: 500;
    color: #555;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 33.333%; /* 3 kart görünecek şekilde */
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.testimonial-rating img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FD6E20;
}

/* Responsive ayarlar */
@media (max-width: 991px) {
    .testimonial-slide {
        min-width: 50%; /* 2 kart görünecek şekilde */
    }
}

@media (max-width: 767px) {
    .testimonial-slide {
        min-width: 100%; /* 1 kart görünecek şekilde */
    }
}






/* Uygulama İndirme Bölümü Stilleri */
#indir {
    position: relative;
    padding: 50px 0;
    /*background: linear-gradient(45deg, #FF6E20, #FF9B40);*/
    background: #FD6E20;
    overflow: hidden;
}

#downloadCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#indir .container {
    position: relative;
    z-index: 2;
}

.download-title {
    color: white;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    line-height: 35px;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn img {
    height: 60px;
}

.download-btn:hover {
    transform: translateY(-5px);
}

@media (max-width: 767px) {
    .download-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
}





/* Footer */


#footer {
    background-color: #f5f5f5;
    padding: 20px 0;
}

.footer-left, .footer-right {
    color: #666;
    font-size: 14px;
}

.social-link img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 1;
}

.footer-contact {
    color: #666;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FD6E20;
}

@media (max-width: 767px) {
    .footer-left, .footer-right {
        text-align: center;
    }
    
    .footer-left {
        margin-bottom: 15px;
        justify-content: center;
    }
}







/* Mobil menü açık olduğunda navbar arkaplanı */
.navbar-mobile-open {
    background-color: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
}



/* Responsive Geliştirmeler */

/* Tablet ve mobil için genel düzenlemeler */
@media (max-width: 991px) {
    /* Başlık boyutları */
    .giris-yazi-alani .big-title {
        font-size: 27px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    /* Özellikler bölümü düzenlemeleri */
    .feature-buttons {
        margin-top: 50px;
    }
    
    .feature-content-container {
        margin-top: 50px;
    }
    
    /* Yorum kartları arası boşluk */
    .testimonial-slide {
        padding: 0 10px;
    }
    
    /* İndirme bölümü */
    .download-title {
        font-size: 22px;
        line-height: 1.4;
    }
}

/* Mobil cihazlar için özel düzenlemeler */
@media (max-width: 767px) {
    /* Giriş bölümü */
    #giris {
        min-height: auto;
        padding: 0;
        background: none;
    }
    
    .giris-yazi-alani {
        text-align: center;
        padding: 40px 15px;
    }

     .content-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .small-title {
        font-size: 16px;
    }
    
    .big-title {
        font-size: 30px;
        margin-top: 15px;
        line-height: 1.3;
    }
    
    .description {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .giris-yazi-alani .btn {
        margin-top: 20px;
    }

    .giris-yazi-alani .big-title {
        
        font-weight: 700;
        margin-top: 5px;
    }

    /* Özellikler bölümünde telefon ve içerik alanı */
    .phone-container {
        margin: 0px 0;
    }
    
    .phone img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .feature-content-container {
        margin-top: 0px;
        min-height: 150px;
    }

    .feature-content h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .feature-content p {
        text-align: center;
    }
    
    /* Özellik butonlarını yatay düzenleme */
  .feature-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .feature-buttons::after {
        display: none; /* Arka plandaki çizgiyi kaldır */
    }
    
    .feature-btn {
        width: auto;
        margin: 0 5px;
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* İkonların her zaman daire şeklinde olmasını sağla */
    .feature-btn-icon {
        width: 50px;
        height: 50px;
        margin-right: 0;
        margin-bottom: 0;
        border-radius: 50%; /* Kesinlikle daire olmasını sağla */
        aspect-ratio: 1 / 1; /* En-boy oranını 1:1 olarak sabitle */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-btn span {
        display: none; /* Mobil görünümde yazıları gizle */
    }
    
    /* Aktif buton için ayrı stil */
    .feature-btn.active::after {
        display: none; /* Sağ taraftaki aktif çizgiyi kaldır */
    }
    
    .feature-btn.active::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background-color: #FD6E20;
        border-radius: 3px;
    }

    
    /* İndirme bölümü */
    .download-btn img {
        height: 50px;
    }
    
    /* Footer düzenlemesi */
    .footer-contact {
        display: block;
        margin-top: 15px;
    }
}



/* Tablet ve ara ekran boyutları için ek düzenleme */
@media (min-width: 768px) and (max-width: 991px) {
    .feature-btn-icon {
        width: 40px;
        height: 40px;
        min-width: 40px; /* Genişliğin değişmemesini sağla */
        min-height: 40px; /* Yüksekliğin değişmemesini sağla */
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
    
    .feature-btn {
        padding: 0 15px;
    }







        #giris {
        min-height: auto;
        padding: 0;
        background-position: bottom center;
    }
    
    .giris-yazi-alani {
        padding: 40px 15px;
    }

     .content-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .small-title {
        font-size: 16px;
    }
    
    .big-title {
        font-size: 30px;
        margin-top: 15px;
        line-height: 1.3;
    }
    
    .description {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .giris-yazi-alani .btn {
        margin-top: 20px;
    }



}




/* Küçük mobil cihazlar için düzenlemeler */
@media (max-width: 575px) {
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    /* Özellik butonları */
    .feature-btn {
        width: 100%;
    }
    
    .feature-btn span {
        font-size: 15px;
    }
    
    /* İndirme bölümü */
    .download-title {
        font-size: 20px;
    }
}




/* Dil seçim butonları mobil görünüm */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.language-selector .nav-link.dil {
    padding: 5px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #323232;
}

.language-selector .nav-link.dil.active {
    color: #FD6E20;
}

/* Mobil navbar düzenlemesi - dil seçimi eklendiğinde */
@media (max-width: 991px) {
    .navbar-brand {
        max-width: 120px; /* Logo boyutunu küçült */
    }
    
    .navbar-toggler {
        padding: 4px 8px; /* Toggle butonunu küçült */
        font-size: 0.9rem;
    }
    
    /* Dil seçenekleri ve toggle butonunu yan yana düzgün konumlandırma */
    .navbar > .container {
        justify-content: space-between;
        align-items: center;
    }
}