a{text-decoration: none; color: inherit;}

h3{
  font-size:1.5rem;
  font-weight: normal;
}

h4{
  font-size: 1rem;
  font-weight: bold;
  margin-bottom:0.1rem;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  ul.nav-scroller{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
  }

  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }

  .lexend-font {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  .card {
    margin: 0 auto;
    padding: 1rem;
    border-top: 5px solid hsl(202.01deg 100% 60.98%);
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
  }

  .shadow {
    padding:0 !important;
    border-top: 5px solid hsl(202.01deg 100% 60.98%);
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
  }

  .card-map {
    margin: 0 auto;
    padding: 0;
    border-top: 5px solid hsl(0, 0%, 67%);
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
  }

  .zoom-in-out-element {
    animation: zoom-in-zoom-out 30s ease infinite;
  }

  .contact-me {
    display: none;
  }

  .phone {
    flex: 0 1 50%;
    min-height: 100%;
    max-width: 50%;
    background: #008aff;
    color: #fff;
    font-size: 20px;
  }

  .whatsapp {
    flex: 0 1 50%;
    min-height: 100%;
    max-width: 50%;
    background: #00c4ff;
    color: #fff;
    font-size: 20px;
  }

  .phone a,
  .phone a:hover,
  .phone a:visited {
    color: #fff;
    text-decoration: none;
  }

  .whatsapp a,
  .whatsapp a:hover,
  .whatsapp a:visited {
    color: #fff;
    text-decoration: none;
  }

  @keyframes zoom-in-zoom-out {
    0% {
      scale: 100%;
    }

    50% {
      scale: 150%;
    }

    100% {
      scale: 100%;
    }
  }

  .floating {
    animation-name: floating;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

  @keyframes floating {
    from {
      transform: translate(0, 0px);
    }

    65% {
      transform: translate(0, 15px);
    }

    to {
      transform: translate(0, -0px);
    }
  }

  .gradient {
    background: linear-gradient(-45deg, #c8f7ff, #5bd0ff, #206eff, #b2faff);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 32px;
    overflow-x: hidden;
  }

  .track:hover {
    animation-play-state: paused
  }

  .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 60s linear infinite;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media only screen and (max-width: 991px) {
    .contact-me {
      position: fixed;
      z-index: 8000;
      bottom: 0px;
      display: flex;
      width: 100%;
      height: 48px;
      font-size: 24px;
      line-height: 48px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
    }
  }

  .site-footer {
    background-color: #26272b;
    padding: 1rem 0 1rem 0;
    font-size: 16px;
    line-height: 24px;
    color: #737373;
  }

  .site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5
  }

  .site-footer hr.small {
    margin: 20px 0
  }

  .site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
  }

  .site-footer a {
    color: #737373;
  }

  .site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
  }

  .footer-links {
    padding-left: 0;
    list-style: none
  }

  .footer-links li {
    display: block
  }

  .footer-links a {
    color: #737373
  }

  .footer-links a:active,
  .footer-links a:focus,
  .footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
  }

  .footer-links.inline li {
    display: inline-block
  }

  .site-footer .social-icons {
    text-align: right
  }

  .site-footer .social-icons a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d
  }

  .copyright-text {
    margin: 0;
    padding-top: 6px;
  }

  @media (max-width:991px) {
    .site-footer [class^=col-] {
      margin-bottom: 30px
    }
  }

  @media (max-width:767px) {
    .site-footer {
      padding-bottom: 0
    }

    .site-footer .copyright-text,
    .site-footer .social-icons {
      text-align: center
    }
  }

  .social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
  }

  .social-icons li {
    display: inline-block;
    margin-bottom: 4px
  }

  .social-icons li.title {
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 32px
  }

  .social-icons a {
    background-color: #eceeef;
    color: #818a91;
    display: inline-block;
    line-height: 32px;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
  }

  .social-icons a:active,
  .social-icons a:focus,
  .social-icons a:hover {
    color: #fff;
  }

  .social-icons.size-sm a {
    line-height: 32px;
    height: 32px;
    width: 32px;
  }

  .social-icons a.whatsappsocial:hover {
    background-color: #25d366
  }

  .social-icons a.instagramsocial:hover {
    background-color: #fd1d1d
  }

  @media (max-width:767px) {
    .social-icons li.title {
      display: block;
      margin-right: 0;
      font-weight: 600
    }
  }

/*------------------------*/
.nav-link{
  color: #000;
}

.footer-kurumsal {
    background-color: #212529; /* Koyu antrasit zemin */
    color: #adb5bd; /* Okunabilirliği yüksek, yumuşak gri metin */
    font-size: 0.9rem;
}
.footer-kurumsal h5 {
    color: #ffffff; /* Başlıklar beyaz ve belirgin */
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.footer-kurumsal a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-kurumsal a:hover {
    color: #008aff; /* Marka renginizle uyumlu hover efekti */
    text-decoration: underline;
}
.footer-kurumsal .list-unstyled li {
    margin-bottom: 0.75rem;
}
.footer-kurumsal .iletisim-bilgileri svg {
    margin-right: 10px; /* İkon ve metin arası boşluk */
}
.footer-kurumsal .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #343a40;
    color: #ffffff;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}
.footer-kurumsal .social-icons a:hover {
    background-color: #008aff;
}
.footer-alt-bar {
    border-top: 1px solid #343a40; /* Ayırıcı çizgi */
    padding-top: 1.5rem;
}

.blog-card {
        background-color: #2a2a2a; /* Koyu gri arka plan */
        color: #f1f1f1;            /* Açık gri yazı rengi */
        border: 1px solid #444;     /* Arka plandan hafifçe ayrışan kenarlık */
        border-radius: 0.5rem;      /* Kenarları hafif yuvarlak yapalım */
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        /* Koyu tema üzerinde daha iyi duran mavi bir parlama efekti */
        box-shadow: 0 0.5rem 1.5rem rgba(0, 123, 255, 0.20) !important;
        border-color: rgba(0, 123, 255, 0.5); /* Vurgu için kenarlık rengini değiştir */
    }

    .blog-card .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    /* Kart içindeki başlık ve linklerin rengini beyaz yapar */
    .blog-card .card-title,
    .blog-card .card-title a {
        color: #ffffff;
    }

    /* Tarih gibi silik metinlerin rengini ayarlar */
    .blog-card .text-muted {
        color: rgba(255, 255, 255, 0.6) !important;
    }

   .feature-icon {
        width: 4rem;
        height: 4rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }
    .step-number {
        font-size: 3rem;
        font-weight: 700;
        color: #0d6efd; /* Bootstrap'in ana mavi rengi */
        line-height: 1;
    }