/* Blog Custom CSS */

/* Ana renk değişkenleri */
:root {
    --accent-color: #010ed0;
}

/* Misyon & Vizyonumuz Sayfası - Section title content text'ini beyaz yap */
.vision-mission .section-title-content p {
    color: white !important;
}

/* Post overlay content ekliyorum */
.post-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
    z-index: 2;
}

.post-overlay-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.post-overlay-content h3 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-overlay-content h3 a:hover {
    color: var(--accent-color);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
}

.post-meta .post-date,
.post-meta .post-category {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
}

.post-meta .post-category a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.post-meta .post-category a:hover {
    color: white;
}

.post-meta i {
    font-size: 11px;
}

/* Post pagination düzeltme - border radius kaldırıyorum */
.pagination .page-link {
    border: 2px solid #010ed0;
    color: #010ed0;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 0; /* border radius kaldırıldı */
    transition: all 0.3s ease;
    background: white;
}

.pagination .page-link:hover {
    background-color: #010ed0;
    border-color: #010ed0;
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: #010ed0;
    border-color: #010ed0;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Blog header styling */
.blog-header {
    background: linear-gradient(135deg, #010ed0 0%, #0c4fb3 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/blog-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white !important;
}

.blog-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-header .breadcrumb-item {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    position: relative;
}

.blog-header .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-header .breadcrumb-item a:hover {
    color: #010ed0;
}

.blog-header .breadcrumb-item.active {
    color: var(--white-color);
    font-weight: 500;
}

.blog-header .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255,255,255,0.7);
    margin: 0 8px;
    font-size: 14px;
}

/* Blog grid layout */
.blog-grid {
    padding: 80px 0;
}

.blog-post-card {
    background: white;
    border-radius: 0; /* border radius kaldırıldı */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-meta {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.meta-date {
    background: #010ed0;
    color: white;
    padding: 5px 12px;
    border-radius: 0; /* border radius kaldırıldı */
    font-size: 12px;
    font-weight: 500;
}

.blog-post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-category {
    color: #010ed0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #010ed0;
}

.blog-post-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-more-btn {
    color: #010ed0;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #0c4fb3;
    transform: translateX(5px);
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Sidebar */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 0; /* border radius kaldırıldı */
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #010ed0;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #010ed0;
}

.sidebar-widget h3:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #010ed0;
    margin-top: 8px;
}

/* Category widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f5f5f5;
    padding: 12px 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #495057;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #010ed0;
}

.category-count {
    background: #f8f9fa;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 0; /* border radius kaldırıldı */
    font-size: 12px;
    font-weight: 500;
}

/* Recent posts */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 0; /* border radius kaldırıldı */
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #010ed0;
}

.recent-post-date {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

/* Tags */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.tag-item {
    background: #f8f9fa;
    color: #495057;
    padding: 5px 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 0; /* border radius kaldırıldı */
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #010ed0;
    color: white;
    text-decoration: none;
}

/* Blog kategorileri ve etiketleri bölümü */
.modern-blog-categories {
    background: white;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 0;
    margin-bottom: 30px;
    height: 100%;
}

.category-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.category-icon {
    background: #010ed0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.category-header h4 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.category-header p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.categories-grid {
    display: grid;
    gap: 15px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    background: #010ed0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 14, 208, 0.2);
}

.category-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: inherit;
}

.category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-info h5 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h5 {
    color: white;
}

.post-count {
    color: #6c757d;
    font-size: 12px;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .post-count {
    color: rgba(255,255,255,0.8);
}

.category-arrow {
    color: #010ed0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    color: white;
    transform: translateX(5px);
}

/* Modern blog tags */
.modern-blog-tags {
    background: white;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 0;
    height: 100%;
}

.tags-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.tags-icon {
    background: #010ed0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.tags-header h4 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.tags-header p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modern-tag {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.modern-tag:hover {
    background: linear-gradient(45deg, #010ed0, #0c4fb3);
    color: white;
    text-decoration: none;
    border-color: #010ed0;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(1, 14, 208, 0.3);
}

.tag-hash {
    color: #010ed0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.modern-tag:hover .tag-hash {
    color: white;
}

.tag-name {
    transition: color 0.3s ease;
}

/* Post meta info stili */
.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.meta-item i {
    color: #010ed0;
    font-size: 16px;
}

.meta-item a {
    color: #010ed0;
    text-decoration: none;
    font-weight: 500;
}

.meta-item a:hover {
    color: #0c4fb3;
}

/* Post excerpt stili */
.post-excerpt {
    font-size: 18px;
    color: #6c757d;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #010ed0;
    border-radius: 0; /* border radius kaldırıldı */
}

/* Post tag links */
.post-tag-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f5f5f5;
}

.post-tags .tag-links {
    font-size: 14px;
    color: #495057;
}

.post-tags .tag-links a {
    color: #010ed0;
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 0; /* border radius kaldırıldı */
    transition: all 0.3s ease;
}

.post-tags .tag-links a:hover {
    background: #010ed0;
    color: white;
}

/* Post social sharing */
.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #495057;
    border-radius: 0; /* border radius kaldırıldı */
    transition: all 0.3s ease;
    text-decoration: none;
}

.post-social-sharing ul li a:hover {
    background: #010ed0;
    color: white;
    transform: translateY(-2px);
}

.post-social-sharing ul li a i {
    font-size: 16px;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .blog-header h1 {
        font-size: 36px;
    }

    .blog-grid {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 80px 0 60px;
    }

    .blog-header h1 {
        font-size: 28px;
    }

    .blog-grid {
        padding: 40px 0;
    }

    .blog-post-content {
        padding: 20px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .post-meta-info {
        flex-direction: column;
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-section {
        padding: 60px 0;
    }
    
    .blog-sidebar-section .section-title h3 {
        font-size: 26px;
    }
    
    .category-header h4,
    .tags-header h4 {
        font-size: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-blog-categories,
    .modern-blog-tags {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .blog-header h1 {
        font-size: 24px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .category-header h4,
    .tags-header h4 {
        font-size: 18px;
    }

    .recent-post-thumb {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    .recent-post-content h4 {
        font-size: 13px;
    }

    .category-info h5 {
        font-size: 15px;
    }
    
    .modern-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Blog Categories & Tags Section */
.blog-sidebar-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.blog-sidebar-section .section-title {
    margin-bottom: 50px;
}

.blog-sidebar-section .section-title h3 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-sidebar-section .section-title p {
    color: #6c757d;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Detail Page Featured Image */
.post-image {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.post-image figure {
    margin: 0;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-image:hover img {
    transform: scale(1.05);
}

/* Blog Content Styling */
.post-content {
    background: white;
    padding: 0;
}

.post-entry {
    padding: 30px 0;
}

/* Blog List Page Enhancements */
.page-blog .post-item {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.page-blog .post-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.page-blog .post-featured-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.page-blog .post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-blog .post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

/* Default image styling for posts without featured image */
.default-post-image {
    background: linear-gradient(135deg, #010ed0, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* Responsive Design for Blog Pages */
@media (max-width: 1199px) {
    .post-image img {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .post-image img {
        height: 300px;
    }
    
    .page-blog .post-featured-image {
        height: 220px;
    }
    
    .post-meta-info {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .post-image {
        margin-bottom: 30px;
    }
    
    .post-image img {
        height: 250px;
    }
    
    .page-blog .post-featured-image {
        height: 200px;
    }
    
    .post-entry {
        padding: 20px 0;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .meta-item {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .post-image img {
        height: 200px;
    }
    
    .page-blog .post-featured-image {
        height: 180px;
    }
    
    .post-overlay-content h3 {
        font-size: 16px;
    }
    
    .post-meta {
        gap: 10px;
    }
}

/* Blog Breadcrumb Responsive Design */
@media (max-width: 991px) {
    .blog-header .breadcrumb-item {
        font-size: 14px;
    }
    
    .blog-header .breadcrumb-item + .breadcrumb-item::before {
        font-size: 12px;
        margin: 0 6px;
    }
}

@media (max-width: 767px) {
    .blog-header .breadcrumb-item {
        font-size: 12px;
    }
    
    .blog-header .breadcrumb-item + .breadcrumb-item::before {
        font-size: 10px;
        margin: 0 4px;
    }
    
    .blog-header .breadcrumb {
        margin-bottom: 10px;
    }
}

/* Üretim Sayfası CSS Stilleri */

/* Production Introduction Section */
.production-intro {
    padding: 100px 0;
    background: #f8f9fa;
}

.production-content .section-title h3 {
    color: #010ed0;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.production-content .section-title p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.production-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.production-features-list ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #010ed0;
    transition: all 0.3s ease;
}

.production-features-list ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(1, 14, 208, 0.1);
}

.production-features-list ul li i {
    color: #010ed0;
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.production-image {
    position: relative;
    height: 100%;
}

.production-image figure {
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.production-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.production-image:hover img {
    transform: scale(1.05);
}

/* Production Process Section */
.production-process {
    padding: 100px 0;
    background: white;
}

.process-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #010ed0, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-item:hover::before {
    transform: scaleX(1);
}

.process-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(1, 14, 208, 0.15);
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #010ed0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.process-icon {
    margin-bottom: 25px;
}

.process-icon i {
    font-size: 48px;
    color: #010ed0;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon i {
    color: #0056b3;
    transform: scale(1.1);
}

.process-content h4 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Quality Control Section */
.quality-control {
    padding: 100px 0;
    background: #f8f9fa;
}

.quality-image figure {
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quality-image:hover img {
    transform: scale(1.05);
}

.quality-content .section-title h3 {
    color: #010ed0;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quality-standards {
    margin-top: 40px;
}

.standard-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #010ed0;
    transition: all 0.3s ease;
}

.standard-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(1, 14, 208, 0.1);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #010ed0, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.standard-icon i {
    color: white;
    font-size: 24px;
}

.standard-item:hover .standard-icon {
    transform: scale(1.1);
}

.standard-content h5 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.standard-content p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}

.quality-stats {
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(1, 14, 208, 0.15);
}

.stat-item h4 {
    font-size: 36px;
    font-weight: 700;
    color: #010ed0;
    margin-bottom: 10px;
}

.stat-item p {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: white;
}

.tech-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.tech-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(1, 14, 208, 0.15);
    transform: translateY(-10px);
    border-top-color: #010ed0;
}

.tech-icon {
    margin-bottom: 25px;
}

.tech-icon i {
    font-size: 48px;
    color: #010ed0;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon i {
    color: #0056b3;
    transform: scale(1.1);
}

.tech-content h4 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Production Capacity Section */
.production-capacity {
    padding: 100px 0;
    background: linear-gradient(135deg, #010ed0, #0056b3);
    color: white;
}

.production-capacity .section-title h3 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.production-capacity .section-title p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
}

.capacity-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}

.capacity-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.capacity-number {
    margin-bottom: 25px;
}

.capacity-number h3 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.capacity-number span {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 500;
}

.capacity-content h5 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.capacity-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Production Page */
@media (max-width: 1199px) {
    .production-content .section-title h3,
    .quality-content .section-title h3,
    .production-capacity .section-title h3 {
        font-size: 36px;
    }
    
    .production-image figure,
    .quality-image figure {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .production-intro,
    .production-process,
    .quality-control,
    .technology-section,
    .production-capacity {
        padding: 60px 0;
    }
    
    .production-content .section-title h3,
    .quality-content .section-title h3,
    .production-capacity .section-title h3 {
        font-size: 32px;
    }
    
    .production-image figure,
    .quality-image figure {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .process-item,
    .tech-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .production-intro,
    .production-process,
    .quality-control,
    .technology-section,
    .production-capacity {
        padding: 40px 0;
    }
    
    .production-content .section-title h3,
    .quality-content .section-title h3,
    .production-capacity .section-title h3 {
        font-size: 28px;
    }
    
    .production-image figure,
    .quality-image figure {
        height: 250px;
        margin-bottom: 30px;
    }
    
    .process-content h4,
    .tech-content h4 {
        font-size: 20px;
    }
    
    .capacity-number h3 {
        font-size: 36px;
    }
    
    .process-icon i,
    .tech-icon i {
        font-size: 36px;
    }
    
    .standard-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .standard-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .production-features-list ul li {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .process-item,
    .tech-item {
        padding: 30px 20px;
    }
    
    .stat-item h4 {
        font-size: 28px;
    }
    
    .capacity-number h3 {
        font-size: 32px;
    }
    
    .capacity-content h5 {
        font-size: 18px;
    }
}

/* Misyon & Vizyonumuz Sayfası Düzenlemeleri */
.mission-vision-page-header .section-title h3,
.mission-vision-page-header .section-title h2 {
    color: white !important;
}

.page-vision-mission .section-title h3,
.page-vision-mission .section-title h2 {
    color: white !important;
}

/* Breadcrumb Sayfa İsimlerini Beyaz Yapma */
.mission-vision-page-header .breadcrumb-item.active,
.hr-page-header .breadcrumb-item.active,
.why-choose-page-header .breadcrumb-item.active {
    color: white !important;
}

/* Genel breadcrumb active öğeleri için beyaz renk */
.page-header .breadcrumb-item.active {
    color: white !important;
}

/* Özel sayfa header'ları için section title düzenlemeleri */
.mission-vision-page-header .page-header-box h1,
.hr-page-header .page-header-box h1,
.why-choose-page-header .page-header-box h1 {
    color: white !important;
}

/* Misyon & Vizyonumuz Sayfası Spesifik Düzenlemeler */

/* Page header içindeki section-title için */
.page-header .section-title h3,
.page-header .section-title h2 {
    color: white !important;
}

/* Misyon vizyonumuz sayfası başlık metinleri */
.mission-vision-page-header h1,
.mission-vision-page-header h2, 
.mission-vision-page-header h3 {
    color: white !important;
}

/* Vision mission section başlıkları */
.vision-mission .section-title h3,
.vision-mission .section-title h2 {
    color: white !important;
}

.page-vision-mission .section-title h3,
.page-vision-mission .section-title h2 {
    color: white !important;
}

/* Section row içindeki başlıklar */
.page-header .section-row .section-title h3,
.page-header .section-row .section-title h2 {
    color: white !important;
}

/* Breadcrumb düzenlemeleri - tüm sayfalar için */
.page-header .breadcrumb-item.active {
    color: white !important;
    font-weight: 500 !important;
}

/* Özel sayfa header'ları breadcrumb */
.mission-vision-page-header .breadcrumb-item.active,
.hr-page-header .breadcrumb-item.active,
.why-choose-page-header .breadcrumb-item.active {
    color: white !important;
    font-weight: 500 !important;
}

/* Page header box içindeki tüm aktif breadcrumb öğeleri */
.page-header-box .breadcrumb-item.active {
    color: white !important;
}

/* Kurumsal sayfalar için genel düzenleme */
.page-header[class*="page-header"] .breadcrumb-item.active {
    color: white !important;
}

