.ana-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    cursor: default;
    touch-action: pan-y pinch-zoom;
}

.slider-baslik {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    padding: 20px;
    color: #000;
    margin: 0 auto 15px;
    text-shadow: none;
}

.slider-baslik-text {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.slider-baslik p {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .slider-baslik {
        margin-bottom: 1rem;
        text-align: center;
        top: 40%;
    }
}

.ana-slider:active {
    cursor: default;
}

.slider-icerik {
    display: flex;
    transition: transform 0.3s ease-out;
    width: 100%;
    margin-top: 10px;
}

.slayt {
    min-width: 100%;
    position: relative;
    margin-top: 20px;
    cursor: default;
    flex-shrink: 0;
}

.slayt-gorsel {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    pointer-events: none;
    content-visibility: auto;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.thumbnail {
    width: 100px;
    height: 60px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.aktif {
    opacity: 1;
    border: 2px solid #6754E9;
}

@media (max-width: 768px) {
    .thumbnail {
        width: 80px;
        height: 50px;
    }
    
    .slayt-gorsel {
        border-radius: 0;
    }
}

.hero-section {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 5vw, 7%);
    margin-block-start: min(0.8vh, 20px);
    width: 100%;
    box-sizing: border-box;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1rem);
}

.feature-icon {    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-block-end: calc(clamp(0.75rem, 2vw, 1rem) * 0.5);
    color: #333;
}

.feature-content p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.solutions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
    margin-block-start: calc(clamp(0.75rem, 2vw, 1rem) * 2);
}

.section-title p {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #000000B3;
    margin: 0;
}

.solutions-section {
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
    margin-block-start: calc(clamp(0.75rem, 2vw, 1rem) * 1.5);
    display: flex;
    flex-wrap: wrap;
    gap: calc(clamp(0.75rem, 2vw, 1rem) * 2);
}

.solutions-left,
.solutions-right {
    flex: 1 1 min(100%, 300px);
}

.solutions-left-text {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0;
}

.solutions-left-text-2 {
    font-family: 'Kanit', sans-serif;
    font-size: 50px;
    line-height: 1.2;
    margin: 0;
}

.solutions-right {
    padding-inline-start: clamp(0px, 2vw, calc(clamp(0.75rem, 2vw, 1rem) * 2));
}

.solutions-right p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.more-button {
    display: inline-block;
    margin-block-start: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    text-decoration: none;
    color: inherit;
    position: relative;
    font-weight: 700;
}

.more-button::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    inset-block-end: -4px;
    height: 1px;
    background-color: #6B46C1;
    transform: none;
    transition: none;
}

@media (hover: hover) {
    .more-button:hover::after {
        transform: none;
    }
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-block-start: 3rem;
    width: min(100% - 2rem, 1400px);
    margin-inline: auto;
}

.info-box {
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 50px;
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.1));
    border: 1px solid #E2E2E2;
    position: relative;
}

.info-box-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-block-end: 7%;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.info-box-title {
    font-family: 'Kanit', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #F7F7FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset-inline-end: 30px;
}

.info-icon i {
    color: #6754e9;
}

.info-content p {
    margin: 0;
    color: #000000B3;
}

.hero-image-container {
    width: min(100% - 2rem, 1400px);
    margin-block: 3% 5%;
    margin-inline: auto;
    position: relative;
}
    
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50px;
}

@media (prefers-reduced-motion: reduce) {
    .more-button::after {
        transition: none;
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 2vw, 24px);
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
}

.solution-box {
    min-height: 350px;
    padding: clamp(16px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    position: relative;
    border-radius: 34px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-box:hover {
    transform: translateY(-5px);
}

.solution-icon {
    width: clamp(48px, 6vw, 64px);
    height: clamp(48px, 6vw, 64px);
    border-radius: 50%;
    background-color: #F7F7FA;
    color: #6754E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(8px, 1.5vw, 16px);
}

.solution-title {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 500;
    color: #000;
    text-decoration: none;
    margin: 8px 0;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-family: Kanit, sans-serif;
}

.solution-title:hover {
    color: #6754E9;
}

.solution-description {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    line-height: 1.6;
    margin: 8px 0;
    flex-grow: 1;
}

.solution-more {
    color: #000;
    text-decoration: none;
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 600;
    padding: 8px 0;
    margin-top: auto;
    position: relative;
    transition: color 0.3s ease;
}

.solution-more:hover {
    color: #6754E9;
}

.solution-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #6754E9;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.solution-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .solution-box {
        min-height: 300px;
        border-radius: 24px;
    }
}

.cta-container {
    width: min(100% - 2rem, 150px);
    margin-inline: auto;
    padding-block: clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1400px; 
    margin: 0 auto;
    text-align: left;
}

.tab-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12rem;
    justify-content: center;
}

.tab-col-6 {
    flex: 0 0 calc(45% - 2rem);
    max-width: calc(45% - 2rem);
}

.tab-content {
    background-color: #e9e5ff;
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
}

.tab-titles {
    display: flex;
    margin-bottom: -1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-title {
    font-family: 'Kanit', sans-serif;
    padding: 2rem 2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
    background-color: transparent;
}

.tab-title.active {
    background: #e9e5ff;
    color: #000;
}

.tab-panel {
    display: none;
    animation: fadein 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel-title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.tab-panel p {
    text-align: left;
}

.why-veri {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.why-veri-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-veri p {
    line-height: 1.50;
}

.button-wrapper {
    margin-top: 1rem;
    
}

.button-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #6c5ce7;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    gap: 8px;
}

.button-link span {
    position: relative;
    display: inline-block;
}

.button-link span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.button-link:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button-text {
    margin-right: 0.5rem;
    position: relative;
}

.button-text:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.button-link:hover .button-text:after {
    width: 100%;
    right: auto;
    left: 0;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translatey(10px);
    }
    to {
        opacity: 1;
        transform: translatey(0);
    }
}

@media (max-width: 768px) {
    .tab-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tab-row {
        gap: 2rem;
    }

    .tab-titles {
        flex-direction: column;
    }

    .tab-title {
        width: 100%;
    }
}

.button-link {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.button-link:hover {
    background-color: #6754E9;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 80px;
    font-family: 'Kanit', sans-serif;
}

.header span {
    display: block;
    margin-bottom: 20px;
    font-family: 'Kanit', sans-serif;
}

.blog-header-title {
    font-size: clamp(28px, 5vw, 42px);
    color: #333;
    font-family: 'Kanit', sans-serif;
    line-height: 1.2;
}

.featured-blog-image {
    width: 75%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: clamp(16px, 3vw, 32px);
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(103, 84, 233, 0.1);
    will-change: transform;
    contain: paint;
}

.blog-grid-container {
    max-width: 1400px;
    width: 95%;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(20px, 4vw, 32px);
    padding: 0;
    contain: content;
}

.blog-card {
    width: 100%;
    height: auto;
    min-height: 420px;
    background-color: #F7F7FA;
    border-radius: clamp(16px, 3vw, 32px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    contain: content;
    border: 1px solid #E2E2E2;
}

.blog-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    contain: strict;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    border-radius: clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px) 0 0;
    will-change: transform;
    contain: paint;
}

.blog-content {
    padding: clamp(20px, 4vw, 28px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    contain: content;
}

.blog-link {
    text-decoration: none;
    color: inherit;
}

.blog-title-h1 {
    font-size: clamp(26px, 3.2vw, 38px);
    margin-bottom: 8%;
    transition: color 0.3s ease;
    line-height: 1.3;
    font-weight: 700;
}

.blog-title-h1:hover {
    color: #6754E9;
}

.blog-post-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.blog-post-title:hover {
    color: #6754E9;
}

.blog-date-h2 {
    font-size: clamp(13px, 1.2vw, 16px);
    margin-bottom: 0.8rem;
    color: #666;
    font-weight: 500;
}

.blog-read-more-h1 {
    font-size: clamp(14px, 1.3vw, 16px);
    text-decoration: none;
    color: #000;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: auto;
    width: fit-content;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid #6B4EFF;
    will-change: transform;
}

.blog-read-more-h1:hover {
    color: #6754E9;
    transform: translateX(5px);
}

.blog-read-more-h2 {
    font-size: clamp(14px, 1.3vw, 16px);
    text-decoration: none;
    color: #000;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: auto;
    width: fit-content;
    font-weight: 600;
    padding-bottom: 4px;
    will-change: transform;
}

.blog-read-more-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #6B4EFF;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    will-change: transform;
}

.blog-read-more-h2:hover {
    color: #6754E9;
    transform: translateX(5px);
}

.blog-read-more-h2:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 992px) {
    .blog-grid-container {
        margin: 3rem auto;
        gap: 24px;
    }
}

@media (max-width: 768px) {
  
  .featured-blog-image {
        width: 100%;
        max-width: 400px;
    }

    .blog-read-more-h1,
    .blog-read-more-h2 {
        margin: 1.5rem auto 0;
    }

    .blog-title-h1 {
        margin-bottom: 1.5rem;
    }

    .blog-header-title {
        font-size: clamp(24px, 4vw, 32px);
        br {
            display: none;
        }
    }
}

@media (max-width: 480px) {
    .blog-grid-container {
        width: 92%;
        gap: 20px;
    }

    .blog-card {
        min-height: 380px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .blog-header-title {
        font-size: clamp(20px, 3.5vw, 28px);
        padding: 0 15px;
    }
}

.custom-stats-title {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    color: #000;
    margin-bottom: 40px;
    margin-top: 40px;
}

.custom-stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.custom-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    flex: 1;
    min-width: 280px;
}

.custom-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #f7f7fa;
    margin: 0 auto;
    border: 1px solid rgba(115, 133, 159, 0.5);
}

.inner-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #705eea;
}

.custom-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: black;
    z-index: 1;
}

.fa-arrow-up {
    color: #6754e9;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 700;
}

.custom-stat-description {
    margin-top: 10px;
    color: #000000;
    padding: 0 10px;
}

@media screen and (max-width: 768px) {
    .custom-stats-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-stat-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .custom-stat-number {
        font-size: 28px;
    }

    .custom-stat-description {
        font-size: 16px;
    }
}
.custom-stats-section {
    text-align: center;
    padding: 40px 20px;
    padding-bottom: 120px;
    border-radius: 20px 20px 0 0;
    background-color: #f0f0f6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1400px;
    margin-bottom: -75px;
}

@media screen and (max-width: 768px) {
    .custom-stats-section {
        padding: 20px;
    }
}

.custom-testimonial {
    width: 100%;
    max-width: 1400px;
    margin: 0px auto 0;
    padding: 100px;
    background-color: #fbfaff;
    border-radius: 65px;
    position: relative;
    
}
.custom-quote-icon {
    font-size: 48px;
    color: #6754E9;
    margin-bottom: 20px;
    text-align: left;
}
.custom-testimonial-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.custom-testimonial-left {
    flex: 2;
}
.custom-testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    width: 50%;
}
.custom-testimonial-author p {
    margin: 5px 0;
}
.custom-testimonial-right {
    flex: 1;
    display: flex;
    justify-content: right;
}
.custom-testimonial-rating {
    text-align: center;
}
.custom-testimonial-rating span {
    font-size: 24px;
}
.rating-with-arrows {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .custom-testimonial {
        padding: 40px;
        margin-top: 45px;
        border-radius: 25px;
    }
    .custom-testimonial-left {
        text-align: center;
    }
    .custom-testimonial-text {
        font-size: 16px;
        width: 100%;
    }
    .custom-testimonial-right {
        justify-content: center;
    }
    .custom-quote-icon {
        font-size: 36px;
    }
}
.rating-with-arrows {
    position: relative;
}
.rating-with-arrows::before {
    content: '';
    position: absolute;
    top: -380px;
    left: -230px;
    width: 320px;
    height: 320px;
    background-image: url('https://veri.agency/wp-content/uploads/2023/05/Line-arrow-2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(6deg);
}
@media screen and (max-width: 768px) {
    .rating-with-arrows::before {
        display: none;
    }
}
.combined-sections {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-container {
    position: relative;
    padding-top: 10px;
    margin-top: 60px;
}

.blog-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background-color: #E2E2E2;
}

.solutions-cta-wrapper {
    text-align: left;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 0;
}

.solutions-cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.solutions-cta-button:hover {
    background-color: #6754E9;
}

.solutions-cta-button span {
    position: relative;
    display: inline-block;
}

.solutions-cta-button span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.solutions-cta-button:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.custom-testimonial-rating i.fa-star {
    color: #FFD43B;
}

/* Slider yön tuşları için stiller */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6754E9;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background-color: #6754E9;
    color: white;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .ana-slider, .slider-nav, .thumbnail-container {
        display: none !important;
    }
    
    .slider-baslik {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-section, .solutions-section, .info-boxes {
        padding: 0 15px;
    }
    
    .info-boxes {
        flex-direction: column;
    }
    
    .info-box {
        width: 100%;
        margin-bottom: 20px;
    }
}

.fa-solid {
    visibility: hidden;
}

.slayt-gorsel {
    content-visibility: auto;
}

.slider-baslik, .slider-baslik-text, .mobil-banner img, .slayt:first-child img {
    content-visibility: visible;
}

.slayt { 
    width: 100%; 
    flex-shrink: 0; 
}

.slider-icerik {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.ana-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.fa-solid {
    font-family: 'FontAwesome', sans-serif;
}

@media screen and (max-width: 768px) {
    .ana-slider, .slider-nav, .thumbnail-container {
        display: none !important;
    }
    
    .mobil-banner {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}