body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    /*background: linear-gradient(400deg, #f0f2f5, #c70d12);*/
    /*background-color: #727170;*/
    background-color:  #646b6a;
}



.counter-section {
    padding: 80px 20px;
    text-align: center;
    /*background: linear-gradient(135deg, #8b1a1a, #cc3e3e);*/
    background: #b9544f;
}

.counter-title {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 60px;
    font-weight: bold;
    letter-spacing: 1px;
}

.counters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.counter-number {
    display: inline-flex;
    align-items: center; /* dikey ortalar */
  }
  
  .counter-plus {
    font-size: 0.em;
    margin-left: 3px;
  }
.counter-box {
    background-color: rgba(255, 255, 255, 0.08);
    /*background-color:#C70D12;*/
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 40px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.3s;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-box::before {
    content: "";
    width: 5px;
    height: 80%;
    background-color: #ffd700;
    position: absolute;
    left: 15px;
    top: 10%;
    border-radius: 5px;
}

.counter-content {
    margin-left: 40px;
    text-align: left;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    display: inline-block;
}

.counter-unit {
    font-size: 1.4rem;
    margin-left: 8px;
    color: #000000;
    font-weight: 600;
}

.counter-label {
    margin-top: 12px;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .counter-box {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 600px) {
    .counter-box {
        flex: 1 1 100%;
    }

    .counter-title {
        font-size: 2rem;
    }

    .counter-content {
        margin-left: 35px;
    }
}
/*.counter-box {
    padding: 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, opacity 1s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.counter-box:hover {
    transform: scale(1.05);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
}

.label {
    font-size: 1.1rem;
    margin-top: 10px;
}*/

/* Kutulara özel renkler */
/*.bg-blue    { background: linear-gradient(135deg, #007bff, #00c6ff); }
.bg-purple  { background: linear-gradient(135deg, #6f42c1, #b76df2); }
.bg-pink    { background: linear-gradient(135deg, #e83e8c, #ff6eb4); }
.bg-orange  { background: linear-gradient(135deg, #fd7e14, #ffae42); }
.bg-green   { background: linear-gradient(135deg, #28a745, #7ddc91); }
.bg-red     { background: linear-gradient(135deg, #dc3545, #ff7373); }
*/
/* Fade-in animasyonu */
/*@keyframes fadeIn {
    to { opacity: 1; }
}
*/

.logo-banner {
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    padding: 40px 0;
}

.logo-slider {
    display: flex;
    width: calc(200% + 40px);
    animation: slide 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Loader ekranı */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

#loader img {
    max-width: 500px;
    opacity: 0;
    transform: translateY(-30px);
    animation: slideFadeIn 1.2s ease-out forwards;
}

@keyframes slideFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*
body.loaded {
    overflow: auto;
}

.project-card {
    transition: transform 0.3s ease;
    margin: 0 10px;
}
.project-card:hover {
    transform: scale(1.03);
}
.project-img {
    height: 200px;
    object-fit: cover;
}
.container {
    max-width: 1200px;
}*/
/*
.project-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 16px;
}

.project-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #333333;
}

.project-location {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 12px;
}

.project-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #004080;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #0066cc;
}*/
.header-title {
    font-size: 6vw;
    font-weight: 900;
    color: black;
    padding: 60px 0 30px 0;
    /*text-align: center;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #b9544f;
}

.project-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-box {
    background-color: white;
    text-align: center;
    padding-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.project-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 5px;
}

.project-location {
    color: #555;
    font-size: 0.95rem;
}

.container-custom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}
.contact-section{
    background-color: #646b6a;
}
.project-card {
    display: none;
    padding-left: 0.5px;
    padding-right: 0px;
}

.filter-title {
    font-size: 1.2vw;
    font-weight: 500;
    color: #ffd700;
    margin-bottom: 10px;
    /*text-align: center;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #b9544f;

}
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  #imageCarousel {
    width: 100vw;
  }

  #imageCarousel .carousel-item {
    height: 100vh;
  }

  #imageCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Mobil */
  @media (max-width: 768px) {
    #imageCarousel .carousel-item {
      height: 60vh;
    }
  }
  .filter-title{
    font-size: 16px;
    border-radius: 8px;
    display: inline-block;
}

@media (max-width: 768px){
    .filter-title{
        font-size: 18px;
    }
}
