.about-text * {
    background-color: transparent !important;
    color: #212529 !important;
}

.txt * {
    background-color: transparent !important;
    color: #212529 !important;
}

.gallery_section {
    width: 100%;
    padding: 40px 0;
}

.gallery_grid {
    width: 100%
}

.gallery_item {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.gallery_item .zoom {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #7BC18F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery_item:hover .zoom {
    opacity: 1;
}

@media (min-width: 768px) {
    .gallery_item {
        width: 48%;
    }
}

@media (min-width: 1200px) {
    .gallery_item {
        width: 31%;
    }
}

.gallery_item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.project_progress_bar {
    position: relative;
    height: 10px;
    background-color: #ddd;
}

.project_progress_bar .progress_2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 10px;
    background-color: #0E3654;
    z-index: 2;
    width: 0; /* Başlangıçta genişliği 0 olarak ayarlıyoruz */
    animation: progressAnimation 2s forwards; /* Animasyonu ekliyoruz */
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: var(--target-width); /* JavaScript ile ayarlanmış dinamik değer */
    }
}

.progress_result {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 56px;
    height: 30px;
    background-color: #7BC18F;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.blog-detail-img {
    width: 100%;
    height: 100%;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-title {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    max-width: 80%;
}

.blog-detail-desc {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 400;
}

.blog-detail-desc * {
    background-color: transparent !important;
    color: #212529 !important;
}

.blog-detail .date-time {
    flex-shrink: 0;
}

.form-section .form-group select {
    padding: 0 20px;
    width: 100%;
    outline: none;
    height: 60px;
    border: 1px solid #C0C0C0;
    font-size: 18px;
    color: #212529;
    font-weight: 400;
    line-height: 30px;
}
.form-section .form-group select:focus {
    border-color: #0E3654;
}