#section-hero-eighth {
    position: relative;
}
#section-hero-eighth .content-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
#section-hero-eighth:hover .content-edit-tooltip {
    opacity: 1;
}

#section-tab-content {
    position: relative;
}
#section-tab-content .content-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
#section-tab-content:hover .content-edit-tooltip {
    opacity: 1;
}

#section-content-third {
    position: relative;
}
#section-content-third .content-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
#section-content-third:hover .content-edit-tooltip {
    opacity: 1;
}

#section-cards-kenburn {
    position: relative;
}
#section-cards-kenburn .content-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
#section-cards-kenburn:hover .content-edit-tooltip {
    opacity: 1;
}

#section-about {
    position: relative; /* Tooltip'in doğru konumlanması için gerekli */
}

#section-about .about-edit-tooltip {
    position: absolute;
    top: 50px; /* Konumu isteğe bağlı olarak ayarlayabilirsiniz */
    right: 10px;
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #fff; /* Beyaz arkaplanda görünürlük için #fff'den değiştirildi */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    z-index: 9980; /* Diğer elementlerin üzerinde kalması için */
}

#section-about:hover .about-edit-tooltip {
    opacity: 1; /* Hover durumunda görünür yap */
}

#section-blog .blog-edit-tooltip {
    position: absolute;
    top: 30px; /* Orijinal değer */
    right: 10px; /* Orijinal değer */
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #fff; /* Orijinal renk - Arkaplana göre görünürlüğünü kontrol edin */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Orijinal: Tooltip her zaman görünür (giriş yapıldığında) */
    transition: opacity 0.3s ease-in-out;
    z-index: 999; /* Diğer elementlerin üzerinde kalması için */
}

#section-blog:hover .blog-edit-tooltip {
    opacity: 1;
}

.container.page-section {
    /* Daha spesifik hale getirdik */
    position: relative;
}

.container.page-section .clients-edit-tooltip {
    /* Seçiciyi daha spesifik yaptık */
    position: absolute;
    top: 50px; /* Orijinal değer */
    right: 10px; /* Orijinal değer */
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #333; /* Beyaz arkaplanda görünürlük için #fff'den değiştirildi */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    z-index: 9980; /* Diğer elementlerin üzerinde kalması için */
}

.container.page-section:hover .clients-edit-tooltip {
    /* Seçiciyi daha spesifik yaptık */
    opacity: 1; /* Hover durumunda görünür yap */
}

#section-contact {
    /* position: relative; zaten .page-section'dan gelebilir, ama garantiye alalım */
    position: relative;
}

#section-contact .contact-edit-tooltip {
    position: absolute;
    top: 50px; /* Orijinal değer */
    right: 10px; /* Orijinal değer */
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #333; /* Beyaz arkaplanda görünürlük için #fff'den değiştirildi */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    z-index: 9980; /* Diğer elementlerin üzerinde kalması için */
}

#section-contact:hover .contact-edit-tooltip {
    opacity: 1; /* Hover durumunda görünür yap */
}

/* ==========================================================================
   FAQs Two Component Styles (.faqs-two-component-wrapper)
   ========================================================================== */

.faqs-two-component-wrapper .gradient-red-yellow,
.faqs-two-component-wrapper .h-gradient-red-yellow:hover {
    background-image: -webkit-linear-gradient(
        110.78deg,
        rgb(118, 230, 80) -1.13%,
        rgb(249, 214, 73) 15.22%,
        rgb(240, 142, 53) 32.09%,
        rgb(236, 81, 87) 48.96%,
        rgb(255, 24, 189) 67.94%,
        rgb(26, 75, 255) 85.34%
    ) !important;
    background-image: linear-gradient(
        110.78deg,
        rgb(118, 230, 80) -1.13%,
        rgb(249, 214, 73) 15.22%,
        rgb(240, 142, 53) 32.09%,
        rgb(236, 81, 87) 48.96%,
        rgb(255, 24, 189) 67.94%,
        rgb(26, 75, 255) 85.34%
    ) !important;
}

/* #content p genel bir seçici, eğer sadece bu component içinse .faqs-two-component-wrapper eklenmeli */
/* Şimdilik genel bırakıyorum, gerekirse daraltılabilir */
/*
   .faqs-two-component-wrapper #content p {
       line-height: 1.5;
   }
   */

.faqs-two-component-wrapper .accordion-header {
    padding: 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    border-top: 1px dotted #d5d5d5 !important;
    color: #aaa;
}

.faqs-two-component-wrapper .accordion-content {
    padding-bottom: 2rem;
    padding-left: 30px;
}

.faqs-two-component-wrapper .accordion-header.accordion-active {
    color: #222;
}

/* Border Form Design - Bu stiller genel olabilir, emin değilseniz kapsam dışı bırakın */
/* Şimdilik kapsam içine alıyorum */
.faqs-two-component-wrapper form label {
    text-transform: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
}

.faqs-two-component-wrapper .form-control.border-form-control {
    --cnvs-input-btn-padding-y: 5px;
    --cnvs-input-btn-padding-x: 0px;
    --cnvs-input-btn-font-size: 1.25rem;
    --cnvs-input-btn-border-width: 2px;
    --cnvs-input-btn-border-color: rgba(0, 0, 0, 0.07);
}

/* Keyframes geneldir, tekrar tanımlamaya gerek yok, ancak kullanıldığı yerler kapsam içine alınabilir */

/* Düzenleme tooltip stilleri */
.faqs-two-component-wrapper .faqs-two-edit-tooltip {
    position: absolute;
    top: 15px;
    /* Shape divider'a göre ayarlanabilir */
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    /* Arkaplana göre değiştirilebilir */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}

/* Hover efekti için ana kapsayıcıya referans */
.faqs-two-component-wrapper:hover .faqs-two-edit-tooltip {
    opacity: 1;
}

/* Modal içindeki resim önizleme - Modal ID'si ile daha spesifik hale getirilebilir */
#editFaqsTwoModal .faqs-two-image-preview {
    max-width: 250px;
    max-height: 200px;
    display: none;
    /* Başlangıçta gizli */
}

#editFaqsTwoModal .faqs-two-image-preview[src]:not([src=""]) {
    /* src boş değilse göster */
    display: inline-block;
    /* src varsa göster */
}

/* ==========================================================================
      End FAQs Two Component Styles
      ========================================================================== */

/* ==========================================================================
   FAQs Component Styles (.faqs-wrapper)
   ========================================================================== */

.faqs-wrapper {
    /* position: relative; zaten inline olarak ekli */
    position: relative;
}

/* Düzenleme tooltip stilleri */
.faqs-wrapper .faqs-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #fff; /* Orijinal renk - Arkaplana göre görünürlüğünü kontrol edin */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    z-index: 9988; /* Diğerlerinden farklı olabilir */
}

.faqs-wrapper:hover .faqs-edit-tooltip {
    opacity: 1; /* Hover durumunda görünür yap */
}

/* Bu sınıflar genel olabilir, ancak component içinde kullanıldığı için kapsama alıyorum */
.faqs-wrapper .rounded-xxl {
    border-radius: 20px !important;
}

.faqs-wrapper .gradient-text.gradient-color {
    background: -webkit-linear-gradient(0deg, #ff9d00 0%, #d6048d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   End FAQs Component Styles
   ========================================================================== */

/* ==========================================================================
   Footer Third Component Styles (.footer-third-component-wrapper)
   ========================================================================== */

.footer-third-component-wrapper {
    /* position: relative; zaten inline olarak ekli */
    position: relative;
}

/* Footer'ın kendi içindeki widget alanı için medya sorgusu */
@media (min-width: 992px) {
    .footer-third-component-wrapper #section-footer-third .footer-widgets-wrap {
        margin: 100px 0;
        padding: 100px 0;
    }
}

/* Footer içindeki form etiketleri için stil */
.footer-third-component-wrapper form label {
    text-transform: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
}

/* Footer içindeki form kontrol elemanları için stil */
.footer-third-component-wrapper .form-control.border-form-control {
    --cnvs-input-btn-padding-y: 5px;
    --cnvs-input-btn-padding-x: 0px;
    --cnvs-input-btn-font-size: 1.25rem;
    --cnvs-input-btn-border-width: 2px;
    --cnvs-input-btn-border-color: rgba(0, 0, 0, 0.07);
}

/* Düzenleme tooltip stilleri (Bu bileşene özel) */
.footer-third-component-wrapper .footer-third-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    /* Arkaplana göre değiştirilebilir */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}

/* Hover efekti için ana kapsayıcıya referans (Bu bileşene özel) */
.footer-third-component-wrapper:hover .footer-third-edit-tooltip {
    opacity: 1;
}

/* ==========================================================================
   End Footer Third Component Styles
   ========================================================================== */

/* ==========================================================================
   Footer Two Component Styles (.footer-two-wrapper)
   ========================================================================== */

.footer-two-wrapper {
    /* position: relative; zaten inline olarak ekli */
    position: relative;
}

/* Düzenleme tooltip stilleri */
.footer-two-wrapper .footer-two-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #333; /* Açık zemin için renk */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    z-index: 9989; /* Diğerlerinden farklı olabilir */
}

.footer-two-wrapper:hover .footer-two-edit-tooltip {
    opacity: 1; /* Hover durumunda görünür yap */
}

/* ==========================================================================
   End Footer Two Component Styles
   ========================================================================== */

/* ==========================================================================
   Footer Component Styles (#section-footer)
   ========================================================================== */

#section-footer {
    /* position: relative; zaten .page-section'dan gelebilir, ama garantiye alalım */
    position: relative;
}

/* Düzenleme tooltip stilleri */
#section-footer .footer-edit-tooltip {
    position: absolute;
    top: 10px; /* Orijinal değer */
    right: 10px; /* Orijinal değer */
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #fff; /* Koyu arkaplan için uygun */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    z-index: 100; /* Orijinal değer */
}

#section-footer:hover .footer-edit-tooltip {
    opacity: 1; /* Hover durumunda görünür yap */
}

/* ==========================================================================
   End Footer Component Styles
   ========================================================================== */

/* ==========================================================================
   Header Third Component Styles (.header-wrapper)
   ========================================================================== */

/* header-two.blade.php'den kopyalanan stiller */
.header-wrapper .header-edit-tooltip {
    /* Daha spesifik seçici */
    position: absolute;
    top: 10px; /* Veya header tasarımınıza uygun bir değer */
    /* right: 10px; veya left: 10px; */
    left: 10px; /* header-two gibi sola yaslayalım */
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #fff; /* Koyu header için beyaz renk uygun olabilir */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease-in-out;
    width: 50px;
    z-index: 9999; /* Diğer elementlerin üzerinde olmalı */
}

.header-wrapper:hover .header-edit-tooltip {
    opacity: 1; /* Hover durumunda görünür yap */
}

/* ==========================================================================
   Hero Fifth Component Styles (.hero-fifth-component-wrapper)
   ========================================================================== */

.hero-fifth-component-wrapper {
    /* position: relative; zaten inline olarak ekli */
    position: relative;
    margin-bottom: 40px;
}

/* Sayaçlar için stiller */
.hero-fifth-component-wrapper .counter.counter-xlarge {
    font-size: 4.5rem;
    letter-spacing: -2px;
}

.hero-fifth-component-wrapper .counter + span {
    font-size: 1.125rem;
    line-height: 1.3;
    margin: 0 0 0 12px;
    text-transform: lowercase; /* Bu bileşende kullanılıyor */
}

/* Ana section div'i için */
.hero-fifth-component-wrapper .overflow-visible {
    overflow: visible !important;
}

/* Düzenleme tooltip stilleri (Bu bileşene özel) */
.hero-fifth-component-wrapper .hero-fifth-edit-tooltip {
    position: absolute;
    top: 15px;
    /* Shape divider'ın altına gelmemesi için ayarlanabilir */
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    /* Arkaplana göre değiştirilebilir */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
    /* Diğer elementlerin üzerinde olmalı */
}

/* Hover efekti için ana kapsayıcıya referans (Bu bileşene özel) */
.hero-fifth-component-wrapper:hover .hero-fifth-edit-tooltip {
    opacity: 1;
}

/* ==========================================================================
   End Hero Fifth Component Styles
   ========================================================================== */

/* ==========================================================================
   Hero Fourth Component Styles (.hero-fourth-wrapper)
   ========================================================================== */

.hero-fourth-wrapper .hero-fourth-edit-tooltip {
    /* Daha spesifik seçici */
    position: absolute;
    top: 15px; /* Konumu ayarlayın */
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #333; /* Açık arkaplan için rengi değiştir */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990; /* Diğer elementlerin üzerinde olmalı */
}
.hero-fourth-wrapper:hover .hero-fourth-edit-tooltip {
    opacity: 1;
}
/* Yeni section için ek stiller (gerekirse) */
/* #section-hero-fourth stilleri blade içinde inline olarak ayarlandığı için buraya eklenmedi */

/* ==========================================================================
   End Hero Fourth Component Styles
   ========================================================================== */

/* ==========================================================================
   Hero Third Component Styles (.hero-third-wrapper)
   ========================================================================== */

.hero-third-wrapper .hero-third-edit-tooltip {
    /* Daha spesifik seçici */
    position: absolute;
    top: 15px; /* Konumu ayarlayın */
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff; /* Koyu arkaplan için uygun olabilir, açık arkaplan için #333 */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990; /* Diğer elementlerin üzerinde olmalı */
}
.hero-third-wrapper:hover .hero-third-edit-tooltip {
    opacity: 1;
}

/* ==========================================================================
   End Hero Third Component Styles
   ========================================================================== */

/* ==========================================================================
   Hero Two Component Styles (.hero-two-wrapper)
   ========================================================================== */

.hero-two-wrapper .hero-two-edit-tooltip {
    /* Daha spesifik seçici */
    position: absolute;
    top: 80px; /* Header yüksekliğini hesaba katarak ayarlayın */
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990; /* Diğer elementlerin üzerinde olmalı */
}

.hero-two-wrapper:hover .hero-two-edit-tooltip {
    opacity: 1;
}

/* ==========================================================================
   End Hero Two Component Styles
   ========================================================================== */

/* ==========================================================================
   Hero Component Styles (#section-hero) - Stil 1
   ========================================================================== */

#section-hero {
    /* position: relative; zaten .page-section'dan gelebilir, ama garantiye alalım */
    position: relative;
}

/* Düzenleme tooltip stilleri */
#section-hero .works-edit-tooltip {
    /* .works-edit-tooltip yerine daha genel bir isim olabilir, şimdilik bu kaldı */
    position: absolute;
    top: 50px; /* Orijinal değer */
    right: 10px; /* Orijinal değer */
    background-color: rgba(0, 0, 0, 0); /* Şeffaf arkaplan */
    color: #fff; /* Koyu arkaplan için uygun */
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0; /* Orijinal: Tooltip her zaman görünür (giriş yapıldığında) */
    transition: opacity 0.3s ease-in-out;
    z-index: 9990; /* Orijinal değer */
}

#section-hero:hover .works-edit-tooltip {
    opacity: 1;
}

/* ==========================================================================
   End Hero Component Styles - Stil 1
   ========================================================================== */

/* Portfolio Component Styles (#section-portfolio) */
#section-portfolio .portfolio-edit-tooltip {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0); /* Orijinal stil korundu */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9980;
}

/* Ana section hover olduğunda tooltip'i göster */
#section-portfolio:hover .portfolio-edit-tooltip {
    opacity: 1;
}
/* Portfolio Component Styles End */

/* Pricing Component Styles (.pricing-wrapper) */
.pricing-wrapper .pricing-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9987;
}

.pricing-wrapper:hover .pricing-edit-tooltip {
    opacity: 1;
}

/* .rounded-xxl utility class scoped to pricing component */
.pricing-wrapper .rounded-xxl {
    border-radius: 20px !important;
}

/* .gradient-text utility class scoped to pricing component */
.pricing-wrapper .gradient-text.gradient-color {
    background: -webkit-linear-gradient(0deg, #ff9d00 0%, #d6048d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ensure background image covers the box within pricing component */
.pricing-wrapper .pricing-box .pricing-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%; /* Adjust as needed */
    height: auto;
    opacity: 0.1; /* Adjust as needed */
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above background within pricing component */
.pricing-wrapper .pricing-box > * {
    position: relative;
    z-index: 1;
}
/* Pricing Component Styles End */

/* Services Fourth Component Styles (.services-fourth-wrapper) */
.services-fourth-wrapper .services-fourth-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0); /* Orijinal stil korundu */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9986;
}

.services-fourth-wrapper:hover .services-fourth-edit-tooltip {
    opacity: 1;
}

/* .rounded-xxl utility class scoped to services-fourth component */
.services-fourth-wrapper .rounded-xxl {
    border-radius: 20px !important;
}

/* .gradient-text utility class scoped to services-fourth component */
.services-fourth-wrapper .gradient-text.gradient-color {
    background: -webkit-linear-gradient(0deg, #ff9d00 0%, #d6048d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Services Fourth Component Styles End */

/* Services Sixth Component Styles (.services-sixth-wrapper) */
.services-sixth-wrapper .services-sixth-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}

/* Hover efekti için ana kapsayıcıya referans */
.services-sixth-wrapper:hover > .services-sixth-edit-tooltip {
    opacity: 1;
}
/* Services Sixth Component Styles End */

/* Services Sixth Modal Styles (#editServicesSixthModal) */
#editServicesSixthModal form label {
    text-transform: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
}

#editServicesSixthModal .service-icon-preview {
    max-width: 100px;
    max-height: 50px;
    display: none;
}

#editServicesSixthModal .service-icon-preview[src] {
    display: inline-block;
}

#editServicesSixthModal .client-logo-preview {
    max-width: 100px;
    max-height: 50px;
    display: none;
}

#editServicesSixthModal .client-logo-preview[src] {
    display: inline-block;
}
/* Services Sixth Modal Styles End */

/* Services Third Component Styles (.services-third-wrapper & #section-services-third) */

/* Tooltip Styles */
.services-third-wrapper .services-third-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9980;
}
.services-third-wrapper:hover .services-third-edit-tooltip {
    opacity: 1;
}

/* Tab Styles scoped to #section-services-third */
#section-services-third .block-tab-1.nav-pills .nav-link {
    margin-bottom: 10px;
    border-radius: 4px;
}
#section-services-third .block-tab-1.nav-pills .nav-link.active {
    background-color: rgba(53, 150, 220, 0.08); /* Orijinal stil korundu */
    margin-bottom: 20px;
    padding: 25px;
}
#section-services-third .block-tab-1.nav-pills .nav-link h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
}
#section-services-third .block-tab-1.nav-pills .nav-link p {
    display: none;
    visibility: hidden;
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
}
#section-services-third .block-tab-1.nav-pills .nav-link.active p {
    display: block;
    visibility: visible;
}
@media (max-width: 767.98px) {
    #section-services-third .block-tab-1.nav-pills .nav-link p {
        display: block;
        visibility: visible;
    }
    #section-services-third .block-tab-1.nav-pills .nav-link,
    #section-services-third .block-tab-1.nav-pills .nav-link.active {
        padding: 20px;
        margin-bottom: 8px;
    }
}
/* Services Third Component Styles End */

/* Services Two Component Styles (.services-two-wrapper & #section-services-two) */

/* Tooltip Styles */
.services-two-wrapper .services-two-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9985;
}

.services-two-wrapper:hover .services-two-edit-tooltip {
    opacity: 1;
}

/* .rounded-xxl utility class scoped to services-two component */
#section-services-two .rounded-xxl {
    border-radius: 8px !important; /* Gerekirse diğer stilleri ezmek için !important */
}

/* Swiper Tabs Styles scoped to #section-services-two */
#section-services-two .swiper-pagination-progress {
    --cnvs-swiper-bar-size: 2px;
    --cnvs-swiper-bar-color: var(--cnvs-contrast-200);
    --cnvs-swiper-bar-active-color: var(--cnvs-contrast-1000);
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: auto;
    border-radius: 0;
    opacity: 1;
    margin: 0px;
    background-color: transparent;
}

#section-services-two .swiper-pagination-progress .swiper-pagination-bar,
#section-services-two
    .swiper-pagination-progress
    .swiper-pagination-bar-active {
    position: absolute;
    bottom: 0;
    border-radius: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: var(--cnvs-swiper-bar-size);
    margin: 0px;
    background-color: var(--cnvs-swiper-bar-color);
}

#section-services-two
    .swiper-pagination-progress
    .swiper-pagination-bar-active {
    z-index: 2;
    width: 0%;
    background-color: var(--cnvs-swiper-bar-active-color);
}

/* Animasyonun component içindeki aktif duruma hedeflenmesi */
#section-services-two
    .swiper-tab-link.active
    .swiper-pagination-progress
    .swiper-pagination-bar-active {
    animation-name: swiperbarAnimServicesTwo; /* Benzersiz animasyon adı */
    animation-duration: 5s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

/* Benzersiz keyframes tanımı */
@keyframes swiperbarAnimServicesTwo {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

#section-services-two .swiper-tab-link {
    --swiper-tab-title: #aaa;
    /* --swiper-tab-content: ; */ /* Bu değişken kullanılmıyor veya eksik görünüyor */
    counter-increment: step-counter;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    padding: 20px 0;
    cursor: pointer;
}

#section-services-two .swiper-tab-link::before {
    content: "0" counter(step-counter) ".";
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    min-width: 50px;
    margin-right: 5px;
    color: var(--swiper-tab-title);
    font-family: monospace;
    line-height: 1;
}

#section-services-two .swiper-tab-link .swiper-tab-title {
    display: inline-block;
    color: var(--swiper-tab-title);
    margin-bottom: 0;
    font-size: calc(1.275rem + 0.3vw);
}

#section-services-two .swiper-tab-link .swiper-tab-content {
    margin-bottom: 0;
    padding-top: 10px;
    margin-left: 5px;
    line-height: 0;
    opacity: 0;
    vertical-align: middle;
    font-size: 1rem;
    transition: line-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.1s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    #section-services-two .swiper-tab-link .swiper-tab-content {
        margin-left: 60px;
    }
}

#section-services-two .swiper-tab-link.active .swiper-tab-content {
    opacity: 0.8;
    line-height: var(--cnvs-line-height-content);
    transition: line-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.15s 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

#section-services-two .swiper-tab-link.active {
    --swiper-tab-title: #000;
}
/* Services Two Component Styles End */

/* Services Component Styles (#section-services) */
#section-services {
    /* .page-section yerine */
    position: relative;
}

#section-services .services-edit-tooltip {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9980;
}

#section-services:hover .services-edit-tooltip {
    /* .page-section:hover yerine */
    opacity: 1;
}
/* Services Component Styles End */

/* Side Panel Component Styles (#side-panel) */
#side-panel .side-panel-edit-tooltip {
    /* #side-panel ile kapsamlandırıldı */
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}

#side-panel:hover .side-panel-edit-tooltip {
    opacity: 1;
}
/* Side Panel Component Styles End */

/* Slider Fade Component Styles (#section-slider-fade) */
#section-slider-fade {
    /* .slider-element yerine */
    position: relative;
}

#section-slider-fade .slider-edit-tooltip {
    position: absolute;
    top: 75px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}

#section-slider-fade:hover .slider-edit-tooltip {
    /* .slider-element:hover yerine */
    opacity: 1;
}
/* Slider Fade Component Styles End */

/* Slider Info Component Styles (#section-slider-info) */
#section-slider-info {
    position: relative;
    --swiper-height: 80vh;
    --swiper-thumbs-height: 70px;
    --swiper-thumbs-gap: 10px;
    min-height: var(--swiper-height);
    overflow: hidden; /* noice-effect taşmasını engellemek için */
}

#section-slider-info .slider-info-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
#section-slider-info:hover .slider-info-edit-tooltip {
    opacity: 1;
}

#section-slider-info .button[class*="bg-opacity-"]:hover {
    --bs-bg-opacity: 1;
    color: #fff !important;
}

#section-slider-info .dotted-bg {
    --cnvs-dotted-opacity: 0.7;
    --cnvs-dotted-top: 0;
    --cnvs-dotted-right: 0;
    --cnvs-dotted-left: auto;
    --cnvs-dotted-size: 190px;
    position: relative;
    z-index: 0;
}
#section-slider-info .dotted-bg.pos-left {
    --cnvs-dotted-right: auto;
    --cnvs-dotted-left: 0;
}
#section-slider-info .dotted-bg:before {
    content: "";
    position: absolute;
    display: block;
    top: var(--cnvs-dotted-top);
    left: var(--cnvs-dotted-left);
    right: var(--cnvs-dotted-right);
    width: var(--cnvs-dotted-size);
    height: var(--cnvs-dotted-size);
    background-size: 20px 20px;
    background-position: center;
    transform: translate(30px, -30px);
    /* --cnvs-themecolor-rgb değişkeninin global olarak tanımlı olduğunu varsayıyoruz */
    background-image: radial-gradient(
        rgba(var(--cnvs-themecolor-rgb, 255, 0, 0), var(--cnvs-dotted-opacity))
            25%,
        transparent 25%
    );
    z-index: -1;
}

#section-slider-info.noice-effect::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    opacity: 0.6;
    /* Göreceli yol ayarlandı */
    background-image: url("../assets/images/speaker/noise-paatern.png");
    background-repeat: repeat;
    background-size: auto;
    /* Animasyon adı değiştirildi */
    animation: noiceAnimSliderInfo 8s steps(10) infinite;
    z-index: 0;
}

#section-slider-info .swiper-slide-bg {
    position: relative;
    min-height: calc(
        var(--swiper-height) - var(--swiper-thumbs-height) -
            calc(var(--swiper-thumbs-gap) * 2)
    );
    background-size: cover;
    background-position: center center;
}

#section-slider-info .swiper-thumb {
    height: auto;
    padding: var(--swiper-thumbs-gap) 0;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

#section-slider-info .swiper-thumb .swiper-slide,
#section-slider-info .swiper-thumb .swiper-slide img {
    width: auto !important;
    height: var(--swiper-thumbs-height);
    object-fit: cover;
}

#section-slider-info .swiper-thumb .swiper-slide {
    filter: grayscale(1);
    opacity: 0.4;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

#section-slider-info .swiper-thumb .swiper-slide-thumb-active {
    filter: grayscale(0);
    opacity: 1;
}

#section-slider-info .swiper-slide-info {
    color: #fff;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    #section-slider-info {
        --swiper-height: 100vh;
    }
    #section-slider-info .swiper-slide-info {
        margin-top: var(--swiper-thumbs-height);
    }
    #section-slider-info .swiper-slide-bg {
        min-height: calc(
            var(--swiper-height) - var(--swiper-thumbs-height) -
                calc(var(--swiper-thumbs-gap) * 2)
        );
    }

    #section-slider-info {
        min-height: 900px !important;
    }
}
/* tablet ve telefon için ayar yapmak için @media ekle */
@media (max-width: 767.98px) {
    #section-slider-info {
        min-height: 900px !important;
    }
    .pozi {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

/* Keyframes adı değiştirildi */
@keyframes noiceAnimSliderInfo {
    0%,
    to {
        transform: translate(0);
    }
    10% {
        transform: translate(-5%, -10%);
    }
    20% {
        transform: translate(-15%, 5%);
    }
    30% {
        transform: translate(7%, -25%);
    }
    40% {
        transform: translate(-5%, 25%);
    }
    50% {
        transform: translate(-15%, 10%);
    }
    60% {
        transform: translate(15%);
    }
    70% {
        transform: translateY(15%);
    }
    80% {
        transform: translate(3%, 35%);
    }
    90% {
        transform: translate(-10%, 10%);
    }
}
/* Slider Info Component Styles End */

/* Slider Two Component Styles (.slider-two-wrapper) */
.slider-two-wrapper .slider-two-edit-tooltip {
    position: absolute;
    top: 75px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}

/* Hover efekti için ana kapsayıcıya referans */
.slider-two-wrapper:hover > .slider-two-edit-tooltip {
    opacity: 1;
}

/* Owl Carousel için ek stiller (gerekirse) */
/* ID'yi kaldırdık, sadece wrapper ve oc-item ile hedefliyoruz */
.slider-two-wrapper .owl-carousel .oc-item {
    /* #oc-images-{{ $theme }} kaldırıldı */
    /* Gerekirse stil ekleyin */
    /* Örneğin: */
    /* margin: 10px; */
}
/* Slider Two Component Styles End */

/* Slider Component Styles (#section-slider) */
#section-slider {
    /* .slider-element yerine */
    position: relative;
}

#section-slider .slider-edit-tooltip {
    /* #section-slider ile kapsamlandırıldı */
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}

#section-slider:hover .slider-edit-tooltip {
    /* .slider-element:hover yerine */
    opacity: 1;
}
/* Slider Component Styles End */

/* Testimonials Component Styles (.testimonials-wrapper & #section-testimonials) */

/* Tooltip Styles (Scoped with .testimonials-wrapper) */
.testimonials-wrapper .testimonials-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
.testimonials-wrapper:hover > .testimonials-edit-tooltip {
    opacity: 1;
}

/* Core Testimonial Styles (Scoped with #section-testimonials) */
#section-testimonials .testi-content p,
#section-testimonials .team-title span, /* Eğer bu component içinde kullanılıyorsa */
#section-testimonials .before-heading, /* Eğer bu component içinde kullanılıyorsa */
#section-testimonials .font-secondary {
    font-family: "PT Serif", serif !important;
}

#section-testimonials .testi-content p {
    position: relative;
    font-style: normal;
    font-size: 1.25rem;
    margin-bottom: 25px;
}

#section-testimonials .testimonials-carousel::before {
    content: "\e7ad";
    font-family: font-icons;
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5rem;
    color: #eee;
    z-index: 0;
}

#section-testimonials .testi-meta img {
    width: 40px !important;
    margin-right: 10px;
}

#section-testimonials .testi-meta::before {
    display: none;
}

/* Targeting owl dots using class within the section */
#section-testimonials .testimonials-carousel.owl-carousel .owl-dots {
    text-align: left;
    margin-left: 20px;
}

/* Utility classes scoped to #section-testimonials (Temporary) */
#section-testimonials .overflow-visible {
    overflow: visible !important;
}
#section-testimonials .rounded-10 {
    border-radius: 10px !important;
}
#section-testimonials .button-hero {
    padding: 23px 48px !important;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0px 13px 18px -14px rgba(0, 0, 0, 0.35);
}
#section-testimonials .translatey-3,
#section-testimonials .h-translatey-3:hover {
    transform: translateY(-3px) !important;
}
#section-testimonials .tf-ts {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
/* Testimonials Component Styles End */

/* Testimonials Modal Styles (#editTestimonialsModal) */
#editTestimonialsModal .testimonial-author-preview {
    max-width: 50px;
    max-height: 50px;
    display: none; /* Başlangıçta gizli */
}

#editTestimonialsModal .testimonial-author-preview[src] {
    display: inline-block; /* src varsa göster */
}
/* Testimonials Modal Styles End */

/* Works Two Component Styles (#section-works) */

/* Utility classes scoped to #section-works */
#section-works .translatey-3,
#section-works .h-translatey-3:hover {
    transform: translateY(-3px) !important;
}
#section-works .tf-ts {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

/* Tooltip Styles */
#section-works-two .works-two-edit-tooltip {
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9990;
}
/* Hover effect scoped to the main container */
#section-works-two:hover > .works-two-edit-tooltip {
    opacity: 1;
}
/* Works Two Component Styles End */

/* Works Two Modal Styles (#editWorksTwoModal) */
#editWorksTwoModal .works-two-item-preview {
    max-width: 150px;
    max-height: 100px;
    display: none;
}
#editWorksTwoModal .works-two-item-preview[src] {
    display: inline-block;
}
/* Works Two Modal Styles End */

/* Works Component Styles (#section-works) */
#section-works {
    /* .page-section yerine */
    position: relative;
}

#section-works .works-edit-tooltip {
    /* #section-works ile kapsamlandırıldı */
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9980;
}

#section-works:hover .works-edit-tooltip {
    /* .page-section:hover yerine */
    opacity: 1;
}
/* Works Component Styles End */
