@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&family=Public+Sans:ital,wght@0,500;1,500&display=swap');

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2'),
         url('fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Üst Bilgi (Top Bar) */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.top-bar a {
    font-weight: 600;
    align-items: center;
    text-decoration: none;
    color: #364354;
    margin-right: 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.top-bar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #0787e8;
    transition: width 0.3s ease-in-out;
}

.top-bar a:hover {
    color: #0787e8;
}

.top-bar a:hover::after {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    flex-wrap: nowrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    color: #0787e8;
    white-space: nowrap; /* Logonun satır atlamasını önler */
}

/* Arama Kutusu */
.search-container {
    display: flex;
    border: 2px solid #0787e8;
    border-radius: 3px;
    align-items: center;
    overflow: hidden;
    flex: 1;
    max-width: 600px;
}

.search-container input {
    border: none;
    padding: 8px;
    width: 100%;
    outline: none;
}

.search-btn {
    border: none;
    background-color: #0787e8;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
}

/* Navbar İkonları */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-icons a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nav-icons svg {
    width: 38px;
    height: 38px;
    fill: #0073e6;
    background-color: #e6f3fc;
    padding: 9px;
    border-radius: 3px;
}

.nav-icons a:hover svg {
    background-color: #0786e7;
    fill: white;
}

/* Mobil Menü Butonu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Tablet ve Daha Küçük Ekranlar */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .search-container {
        max-width: 500px;
    }

    .top-bar {
        font-size: 12px;
    }
}

/* Mobil Ekranlar */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* .top-bar'ı mobilde gizler */
    }

    .navbar {
        flex-wrap: nowrap; /* Logoyu ve arama kutusunu yan yana tut */
        justify-content: space-between;
    }

    .search-container {
        max-width: 400px;
    }

    .nav-icons {
        display: none; /* Mobilde ikonları gizle */
    }

    .menu-toggle {
        display: block;
    }
}

/* Küçük Mobil Ekranlar */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .search-container {
        max-width: 300px;
    }

    .search-btn {
        padding: 6px 10px;
    }

    .nav-icons {
        gap: 10px;
    }

    .navbar {
        gap: 10px;
    }

    .logo {
        font-size: 20px; /* Küçük ekranlarda logonun fazla büyük olmaması için */
    }
}



.slider-container {
    position: relative;
    width: 100%;
    max-width: 1164px;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 auto; /* Siteye ortalamak için */
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
}
.slide img {
    width: 100%;
    height: auto; /* Oran bozulmadan ayarlanabilir yükseklik */
    object-fit: cover;
}
.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.slider-container:hover .controls {
    opacity: 1;
}
.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.dots {
    text-align: center;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}
.dot {
    width: 8px;
    height: 8px;
    background-color: lightgray;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.active {
    background-color: #0073e6;
}

/* Tablet ve daha küçük ekranlar */
@media (max-width: 1024px) {
    .slider-container {
        width: 90%; /* Daha dar ekranlar için genişlik */
        max-width: 800px;
    }
    .prev, .next {
        padding: 8px;
    }
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .slider-container {
        width: 95%;
        max-width: 600px;
        border-radius: 5px;
    }
    .slide img {
        height: auto;
    }
    .prev, .next {
        padding: 5px;
    }
}

/* Küçük mobil ekranlar için */
@media (max-width: 480px) {
    .slider-container {
        width: 100%;
        max-width: 400px;
    }
    .prev, .next {
        padding: 4px;
        font-size: 12px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}

.announcement-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #cce5ff, #f3e6ff);
    padding: 15px 20px;
    margin: 25px auto 0 auto; /* Yalnızca üst tarafa boşluk ekledik */
    font-family: Arial, sans-serif;
    justify-content: center;

}

.announcement-bar p {
    margin: 0px;
    margin-bottom: 0;
    align-items: center;
    margin-right: 240px;
    font-size: 16px;
    color: #364354;
    font-weight: 600;
}

.cta-button {
    background-color: #007bff;
    color: white;
    height: 48px;
    font-style: normal;
    line-height: 20px;
    text-decoration: none;
    padding: 10px 15px;
    align-items: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}


.cta-button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .announcement-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .cta-button {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}


.download-button {
    display: flex;
    align-items: center; /* Dikey olarak ortalar */
    justify-content: center; /* Yatay olarak ortalar */
}


.footer {
    background-color: #1f2937;
    padding: 40px 20px;
}

.container1 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.right-section {
    margin: 0;
    box-sizing: inherit;
}
.logofooter {
    font-size: 32px;
    color: white;
    font-weight: bold;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.follow-us {
    font-size: 14px;
    color: #ccd0d4;
    font-weight: bold;
    margin-bottom: 15px;
    padding-top: 10px;
}


.follow-us1 {
    font-size: 14px;
    color: #ccd0d4;
    font-weight: bold;
    margin-bottom: 20px; /* Boşluk miktarını ihtiyacınıza göre ayarlayabilirsiniz */
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    background-color: #374151;
    display: flex;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #9aa1a9;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;  /* Link altındaki çizgiyi kaldırır */
}

.social-icons a:hover {
    background-color: #aaaaaa;
    color: rgb(41, 41, 41);
}

.download-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.download {
    margin-right: 0;
    background-color: #364354;
    padding: 16px 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.download img {
width: 64px;
margin: 5px 0; /* Adds vertical spacing between the images */
}
.download .applogo {
width: 80%;}



.copyright {
font-size: 12px;
text-align: center;
color: #9ca3af;
margin-top: 50px;
padding-bottom: 0;
border-top: 1px solid #747474; /* Adds a line above the text */
padding-top: 50px; /* Adds space between the line and text */
}

.copyright a {
color: #4a90e2;
text-decoration: none;
}

@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .download-section {
        flex-direction: column;
        align-items: center;
    }
}

.brands {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brands-header h2 {
    font-size: 22px;
}

.brands-header a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.brands-container {
    flex-wrap: nowrap;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.brand {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    flex: 0 0 auto;
    text-align: center;
    padding: 10px;
    overflow: hidden; /* Taşmayı engelle */
}




.brand:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölge eklemek için */
}

.brand img {
    width: 90%;
    height: auto;
    margin-bottom: 5px;
}

.brand span {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    max-width: 90%;  /* Metni daraltmak için */
    white-space: nowrap; /* Taşmayı önler */
    overflow: hidden;
    text-overflow: ellipsis; /* Uzun metinleri keser */
}

/* Sadece mobilde yatay kaydırma ve dokunmatik desteği */
@media (max-width: 768px) {
    .brands-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .brand {
        width: 90px;
        height: 90px;
        flex: 0 0 auto;
    }

    .brand img {
        width: 70%;
    }

    .brand span {
        font-size: 12px;
    }

    /* Kaydırma çubuğunu gizle */
    .brands-container::-webkit-scrollbar {
        display: none;
    }
    .brands-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}


