/* 2025-09-24 11:57 */

/*NavBar Başlangıç*/
.navbar-brand img {
    height: 55px;
    width: auto;
    max-height: 100%;
}

/* Navbar genel ayarları */
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #fff;
    /* Yazı rengi beyaz */
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: black;
    /* Hover durumunda yazı rengi mavi */
}

/* NavBar içerik merkezleme */
.navbar-nav.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Auth butonları (Giriş Yap, Kayıt Ol) */
.auth-buttons {
    margin-left: auto;
}

.auth-buttons .btn-light {
    color: #ffffff;
    /* Başlangıçta yazı rengi beyaz */
    border: 1px solid #ffffff;
    /* Kenarlık beyaz */
}

.auth-buttons .btn-light:hover {
    background-color: #ffffff;
    /* Hoverda arka plan beyaz */
    color: black;
    /* Hoverda yazı rengi mavi */
}

/* Giriş Yap butonunun özel durumu */
.auth-buttons .btn-light:focus,
.auth-buttons .btn-light:active {
    background-color: #007bff;
    color: white;
    /* Yazı rengi beyaz */
}

/* Kayıt Ol butonu */
.auth-buttons .btn-warning {
    background-color: #007bff;
    color: white;
    border: 1px solid #ffffff;
}

.auth-buttons .btn-warning:hover {
    background-color: #ffffff;
}

/* Navbar arka plan ve yazı rengi */
.navbar-dark {
    background-color: #004085;
    /* Navbar arka planı mavi */
}

/* Navbar linkleri aktif durumda */
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    font-weight: bold;
    color: #ffcc00;
    /* Aktif link sarı */
}

/* Navbar'ın responsive tasarımı */
@media (max-width: 1024px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav.center-nav {
        position: relative;
        transform: none;
        left: 0;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        padding-left: 0;
    }
    .nav-button {
    margin: 10px;
    }
}

/*NavBar Bitiş*/

/*Hero Başlangıç*/
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.hero-image {
    background: url('biziboto_hero.png') no-repeat center center/cover;
    height: 620px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-image {
        height: 300px;
        background-size: cover;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 200px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

.hero-content {
    text-align: center;
    padding: 50px 20px;
}

/*Hero Bitiş*/

/**Carousel Başlangıç
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.carousel-container {
    position: relative;
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
}

.carousel-slide img {
    width: 40%;
    border-radius: 10px;
    margin-right: 20px;
}

.carousel-text {
    width: 60%;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.carousel-controls button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}**/
/* Genel container */

.carousel-controls button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: auto;
    border-radius: 5px;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    margin: 20px;
}
.howto-container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.howto-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.howto-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.howto-slide img {
  width: 40%;
  max-width: 480px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.howto-text {
  flex: 1;
  text-align: left;
}

.howto-controls {
  text-align: center;
  margin-top: 15px;
}

.howto-controls button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 6px;
  cursor: auto;
  font-size: 1rem;
}


.howto-controls button:hover {
  background: #0056b3;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .howto-slide {
    flex-direction: column;
    text-align: center;
  }

  .howto-slide img {
    width: 85%;
    margin-bottom: 15px;
  }

  .howto-text {
    width: 100%;
  }
}


/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .carousel-slide img {
    width: 85%;
    margin-bottom: 15px;
  }

  .carousel-text {
    width: 100%;
  }

  .carousel-text h2 {
    font-size: 1.5rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }
}


/*Carousel Bitiş*/

/*Project Info Başlangıç*/
.about {
    padding: 60px 0;
    background: #f9f9f9;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about img {
    max-width: 100%;
    /* Resmi esnek yapar */
    height: auto;
    /* Yüksekliğin oranını korur */
    border-radius: 10px;
}

.about h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about ul li i {
    font-size: 24px;
    color: #007bff;
    margin-right: 15px;
}

.about ul li div {
    flex: 1;
}

.about ul li h5 {
    font-size: 18px;
    margin: 0;
    color: #222;
}

.about ul li p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

/* Responsive*/
@media (max-width: 992px) {
    .about .row {
        flex-direction: column;
        text-align: center;
    }

    .about .col-lg-6 {
        align-items: center;
    }

    .about ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about ul li i {
        margin-bottom: 10px;
    }

    .about img {
        max-width: 100%;
        height: auto;
    }
}

/*Project Info Bitiş*/

/*Entegrasyonlar Başlangıç*/
/* Ana container */
.integration-section {
    text-align: center;
    padding: 40px 20px;
}

/* Ana başlık */
.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

/* Entegrasyonlar Başlık ve Açıklama */
.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Banner container */
.banner-container {
    display: flex;
    justify-content: center;
    /* Ortalayarak kartları yerleştiriyoruz */
    flex-wrap: wrap;
    /* Responsive design için taşma yapmaması için */
    gap: 20px;
    /* Yatay boşluk azaltmak için gap ekledik */
}

/* Kart şeklinde banner stil */
.banner-card {
    width: 30%;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 15px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 10px;
    /* Dikey boşluk için bu değeri koruyoruz */
}

/* Kart hover efekti */
.banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Banner görseli */
.banner-img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Banner başlığı */
.banner-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Banner açıklaması */
.banner-description {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Buton stil */
.btn {
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: auto;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: white;
    color: blue;
}

/* Responsive*/
@media (max-width: 1024px) {
    .banner-card {
        width: 45%;
    }

    .banner-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .banner-card {
        width: 100%;
    }

    .banner-img {
        width: 60px;
        height: 60px;
    }
}

/*Entegrasyonlar Bitiş*/

/* Fiyatlandırma Başlangıç */
.pricing-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 20px;
    flex: 1 1 280px;
    max-width: 350px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    color: #007bff;
    font-weight: bold;
    margin: 20px 0;
}

.duration {
    font-size: 18px;
    color: #555;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #555;
}

.features li {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
}

.btn {
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: auto;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: white;
    color: #007bff;
}

/* Responsive*/
@media (max-width: 992px) {
    .pricing-card {
        width: 45%;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        margin: 0 10px;
    }
}


/*Fiyatlandırma Bitiş*/



/*Back to Top*/
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: auto;
    transition: background-color 0.3s ease;
}

#back-to-top:hover {
    background-color: #0056b3;
}

/*Back to Top*/

/*Footer Başlangıç*/
footer {
    background-color: #282828;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer .footer-links {
    margin-bottom: 30px;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #007bff;
}

footer .social-media-icons {
    margin-bottom: 20px;
}

footer .social-media-icons a {
    color: #fff;
    font-size: 25px;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

footer .social-media-icons a:hover {
    transform: translateY(-5px);
}

footer .footer-bottom {
    font-size: 14px;
    opacity: 0.7;
}

/*Footer Bitiş*/