/* Title Bar */
.title-bar {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    padding: 40px 0; /* Yükseklik artırıldı */
    /*background-image: url('https://cantekgroup.com/Content/images/newsite/dogal-akiskanli.jpg');*/ 
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #00a0dd; /* Alt çizgi eklendi */
}

.title-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgba(0, 160, 221, 0.7), rgba(0, 160, 221, 0.7));*/ /* Mavi gradient */
    z-index: 1;
}

.title-bar h1 {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
    z-index: 2;
}

/* Title Bar */
.title-bar-meattech {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    padding: 40px 0; /* Yükseklik artırıldı */
    background-image: url('https://cantekgroup.com/Content/images/newsite/dogal-akiskanli.jpg'); /* Resim eklendi */
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #e1251b; /* Alt çizgi eklendi */
}

    .title-bar-meattech::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        z-index: 1;
    }

    .title-bar-meattech h1 {
        position: relative;
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
        z-index: 2;
    }

.meat-categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    text-align: center;
    --bs-gutter-x: 0;
}

.meat-category {
    flex: 1;
    padding: 20px;
    margin: 0 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .meat-category a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        text-decoration: none;
        position: relative;
    }

    .meat-category h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .meat-category:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        border-color: #e1251b;
    }

.meat-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Kaymaları önlemek için wrap ekledik */
    margin-bottom: 30px;
    text-align: center;
}

.meat-category {
    flex: 1 1 calc(25% - 20px); /* Web için dört sütun düzenini sağlamak */
    margin: 0px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center;
}

    .meat-category img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .meat-category h3 {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        background-color: #e1251b;
        padding: 10px;
        color: #fff;
        font-size: 1rem;
    }

    .meat-category a {
        text-decoration: none;
        color: inherit;
        width: 100%; /* Bağlantının tam genişliği kaplamasını sağla */
    }

    .meat-category:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        border-color: #e1251b;
    }

/* Responsive Düzen */
@media (max-width: 768px) {
    .meat-category {
        flex: 1 1 100%; /* Mobilde tam genişlik */
        margin: 10px 0;
    }
}

.title-bar-energy {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    padding: 40px 0; /* Yükseklik artırıldı */
    background-image: url('https://cantekgroup.com/Content/images/newsite/dogal-akiskanli.jpg'); /* Resim eklendi */
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #93d500; /* Alt çizgi eklendi */
}

    .title-bar-energy::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: linear-gradient(to bottom, rgba(34, 255, 0, 0.7), rgba(17, 186, 48, 0.7));*/ /* Mavi gradient */
        z-index: 1;
    }

    .title-bar-energy h1 {
        position: relative;
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
        z-index: 2;
    }

/* Soğutma Kategorileri */
.energy-categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    text-align: center;
    --bs-gutter-x: 0;
}

.energy-category {
    flex: 1;
    padding: 20px;
    margin: 0 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .energy-category a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        text-decoration: none;
        position: relative;
    }

    .energy-category h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .energy-category:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        border-color: #93d500;
    }

.energy-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Kaymaları önlemek için wrap ekledik */
    margin-bottom: 30px;
    text-align: center;
}

.energy-category {
    flex: 1 1 calc(25% - 20px); /* Web için dört sütun düzenini sağlamak */
    margin: 0px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center;
}

    .energy-category img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .energy-category h3 {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        background-color: #93d500;
        padding: 10px;
        color: #fff;
        font-size: 1rem;
    }

    .energy-category a {
        text-decoration: none;
        color: inherit;
        width: 100%; /* Bağlantının tam genişliği kaplamasını sağla */
    }

    .energy-category:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        border-color: #93d500;
    }

/* Responsive Düzen */
@media (max-width: 768px) {
    .energy-category {
        flex: 1 1 100%; /* Mobilde tam genişlik */
        margin: 10px 0;
    }
}

.elements-area-energy {
    margin-top: 40px;
    padding: 20px 0;
}

.element-box-energy {
    background-color: #f8f9fa;
    border: 2px solid #93d500; /* Çerçeve rengi güncellendi */
    padding: 20px;
    border-radius: 0; /* Radius kaldırıldı, köşeler keskin */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px; /* Sabit yükseklik ayarlandı */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .element-box-energy:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: #00a0dd;
    }

.element-icon-energy {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    align-self: center;
}

.element-box-energy h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #212529;
}

.element-box-energy p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .element-box-energy {
        margin-bottom: 20px;
        height: auto; /* Mobilde yükseklik esnek olabilir */
    }
}

/* Galeri Alanı */
.gallery-area-energy {
    margin-top: 40px;
    padding: 20px 0;
}

.gallery-item-energy {
    overflow: hidden;
    border: 2px solid #93d500; /* Galeri çerçeve rengi */
    border-radius: 0; /* Radius kaldırıldı */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item-energy img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        object-fit: cover;
    }

    .gallery-item-energy:hover img {
        transform: scale(1.05); /* Hover'da büyüme efekti */
    }

    .gallery-item-energy:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: #00a0dd; /* Hover'da çerçeve rengi değişir */
    }

.button-area-energy {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
}

.btn-partner-energy,
.btn-references-energy {
    width: 100%; /* Full width for each button */
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: #93d500; /* Button background color */
    border: 2px solid #93d500; /* Button border color */
    border-radius: 0; /* Sharp corners */
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 10px; /* Space between buttons */
    text-align: center; /* Center text */
}

    .btn-partner-energy:hover,
    .btn-references-energy:hover {
        background-color: #00a0dd; /* Hover background color */
        border-color: #00a0dd; /* Hover border color */
        transform: translateY(-3px); /* Hover lift effect */
    }

/* If you still want to have them side by side */
@media (min-width: 768px) {
    .button-area-energy {
        flex-direction: row; /* Change back to row for larger screens */
    }

    .btn-partner-energy,
    .btn-references-energy {
        margin: 0 10px; /* Horizontal margin */
        margin-bottom: 0; /* Remove bottom margin for side-by-side buttons */
    }

    .button-area-energy .btn:first-child {
        margin-left: 0; /* No left margin for the first button */
    }

    .button-area-energy .btn:last-child {
        margin-right: 0; /* No right margin for the last button */
    }
}
}
.announcement-box-energy {
    background-color: #323e48;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 0; /* Radius'u kaldır */
}

    .announcement-box-energy video {
        max-width: 100%;
        border: 1px solid #ddd;
        margin-top: 10px;
    }

.cta-bar-energy {
    background-color: #323e48;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0; /* Radius'u kaldır */
    width: 100%;
    margin: 0;
    position: relative;
    box-sizing: border-box;
}

    .cta-bar-energy a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        border-bottom: 2px solid #93d500;
        padding-bottom: 5px;
    }

        .cta-bar-energy a:hover {
            color: #93d500;
        }

.cta-bar-meat {
    background-color: #323e48;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0; /* Radius'u kaldır */
    width: 100%;
    margin: 0;
    position: relative;
    box-sizing: border-box;
}

    .cta-bar-meat a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        border-bottom: 2px solid #e1251b;
        padding-bottom: 5px;
    }

        .cta-bar-meat a:hover {
            color: #e1251b;
        }

/* Soğutma Kategorileri */
.cooling-categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    text-align: center;
    --bs-gutter-x: 0;
}

.cooling-category {
    flex: 1;
    padding: 20px;
    margin: 0 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cooling-category a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.cooling-category h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.cooling-category:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #00a0dd;
}



/* Metin Alanı */
.text-area {
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0; 
   
}

.text-area p {
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
    margin-bottom: 15px;
}

/* Sağlı Sollu Resim ve Metin Alanları */
.text-area img {
    max-width: 48%;
    height: auto;
    margin: 10px;
    border: 1px solid #ddd;
}

.img-left {
    float: left;
    margin-right: 20px;
}

.img-right {
    float: right;
    margin-left: 20px;
}

/* Mobil Çözümler Duyuru Alanı */
.announcement-box {
    background-color: #323e48;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 0; /* Radius'u kaldır */
}

.announcement-box video {
    max-width: 100%;
    border: 1px solid #ddd;
    margin-top: 10px;
}

/* Call to Action Bar */
.cta-bar {
    background-color: #323e48;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0; /* Radius'u kaldır */
    width: 100%;
    margin: 0;
    position: relative;
    box-sizing: border-box;
}

.cta-bar a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #00bfff;
    padding-bottom: 5px;
}

.cta-bar a:hover {
    color: #00bfff;
}

/* Soğutma Kategorileri */
.cooling-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Kaymaları önlemek için wrap ekledik */
    margin-bottom: 30px;
    text-align: center;
}

.cooling-category {
    flex: 1 1 calc(25% - 20px); /* Web için dört sütun düzenini sağlamak */
    margin: 0px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center;
}

.cooling-category img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cooling-category h3 {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    background-color: #00a0dd;
    padding: 10px;
    color: #fff;
    font-size: 1rem;
}

.cooling-category a {
    text-decoration: none;
    color: inherit;
    width: 100%; /* Bağlantının tam genişliği kaplamasını sağla */
}

.cooling-category:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #00a0dd;
}

/* Responsive Düzen */
@media (max-width: 768px) {
    .cooling-category {
        flex: 1 1 100%; /* Mobilde tam genişlik */
        margin: 10px 0;
    }
}


/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 0;
    display: flex; /* Yan yana hizalama */
    justify-content: center; /* Ortaya hizalama */
    z-index: 2;
    position: relative;
    font-size: 1rem;
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #fff;
    padding: 0 8px; /* Aradaki boşluk */
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ddd;
}

/* Video Alanı */
.video-area {
    margin-top: 40px;
    margin-bottom: 40px;
}

.video-wrapper {
    border: 1px solid #00a0dd; /* Yeşil çerçeve */
    border-radius: 0; /* Keskin köşeler */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #ffffff; /* Hover durumunda mavi çerçeve */
}

/* Harita Alanı */
.map-area {
    margin-top: 40px;
    margin-bottom: 40px;
}

.map-wrapper {
    border: 1px solid #00a0dd; /* Yeşil çerçeve */
    border-radius: 0; /* Keskin köşeler */
    overflow: hidden;
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Galeri Alanı */
.gallery-area {
    margin-top: 40px;
    padding: 20px 0;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid #00a0dd; /* Galeri çerçeve rengi */
    border-radius: 0; /* Radius kaldırıldı */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Hover'da büyüme efekti */
}

.gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #00a0dd; /* Hover'da çerçeve rengi değişir */
}

/* Buton Alanı */
.button-area {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between; /* Butonları yan yana yerleştir */
}



/* Yol Haritası */
.roadmap-area {
    margin-top: 40px;
}

.roadmap-year {
    margin-bottom: 40px;
}

.roadmap-year h2 {
    font-size: 2rem;
    color: #00a0dd;
    margin-bottom: 20px;
}

.roadmap-content {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #00a0dd;
    padding: 20px;
    border-radius: 0;
    position: relative;
}

.roadmap-text {
    flex: 1;
    padding-right: 20px;
    color: #212529;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.roadmap-image {
    flex: 1;
    text-align: center;
}

.roadmap-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: 1px solid #00a0dd;
}

.roadmap-connector {
    text-align: center;
    margin: 20px 0;
}

.roadmap-connector hr {
    width: 2px;
    height: 30px;
    background-color: #00a0dd;
    border: none;
    margin: 10px auto;
}

.arrow {
    font-size: 2rem;
    color: #00a0dd;
}

/* Mobil Tasarım */
@media (max-width: 768px) {
    .roadmap-content {
        flex-direction: column;
    }

    .roadmap-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .roadmap-image img {
        width: 100%;
    }

    .roadmap-connector hr, .arrow {
        display: none;
    }
}

/* Blog Kartları */
.blog-cards {
    margin-top: 40px;
}

.blog-card {
    background-color: #fff;
    border: 1px solid #00a0dd;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
    height: 100%; /* Yüksekliği %100 yaparak tüm kartları eşit boyutta tutar */
    display: flex;
    flex-direction: column; /* Kart içeriğinin dikey hizalanması */
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex: 1; /* İçeriğin kalan boşluğu kaplamasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçerik ve buton arasında boşluk */
}

.blog-content h3 {
    font-size: 1rem;
    color: #00a0dd;
    margin-bottom: 15px;
    flex-grow: 1; /* Başlık alanını esnek yapar */
}

.blog-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
    flex-grow: 2; /* Açıklama alanını esnek yapar */
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00a0dd;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
    align-self: flex-end; /* Butonu alta hizalar */
}

.read-more:hover {
    background-color: #009eddb1;
}


/* Blog Detay Sayfası Stil Ayarları */
.blog-detail .blog-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.blog-detail .blog-content {
    padding-left: 15px;
}

    .blog-detail .blog-content h3 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .blog-detail .blog-content p {
        font-size: 1em;
        color: #555;
        margin-bottom: 10px;
        text-align: justify;
    }

    .blog-detail .blog-content span {
        font-size: 0.9em;
        color: #777;
    }

    .blog-detail .blog-content div {
        margin-top: 20px;
    }

.blog-detail .title-bar {
    margin-bottom: 30px;
}

/* Son Yazılar Stil Ayarları */
.recent-blogs {
    margin-top: 50px;
}

    .recent-blogs h3 {
        margin-bottom: 30px;
    }

.recent-blog-card {
    text-align: center;
    background-color: #f5f5f5;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .recent-blog-card img {
        width: 100%;
        height: auto;
    }

    .recent-blog-card h4 {
        font-size: 1.2em;
        color: #333;
        margin-top: 15px;
    }

    .recent-blog-card a {
        text-decoration: none;
        color: inherit;
    }

        .recent-blog-card a:hover {
            text-decoration: underline;
        }

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .blog-detail .blog-image {
        margin-bottom: 20px;
    }

    .blog-detail .blog-content {
        padding-left: 0;
    }
}
/* Blog Kartı Ayarları */
.blog-card {
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Blog Image Ayarları */
.blog-image {
    flex: 1; /* Resim alanının esnekliğini ayarladık */
    display: flex; /* Resmi ortalamak için */
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Blog İçerik Ayarları */
.blog-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

    .blog-content h3 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 10px;
    }

    .blog-content .author-name {
        font-size: 0.9em;
        color: #777;
        margin-bottom: 10px;
    }

    .blog-content p {
        font-size: 1em;
        color: #555;
        margin-bottom: 10px;
        flex-grow: 1;
    }

    .blog-content .keywords {
        font-size: 0.9em;
        color: #999;
        margin-bottom: 10px;
    }

.read-more {
    text-decoration: none;
    color: #00a0dd; /* Metin rengini ayarladık */
    font-weight: bold;
    margin-top: auto;
}

    .read-more:hover {
        text-decoration: underline;
        color: #0078a0; /* Hover durumunda renk değişimi */
    }

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .blog-image {
        height: 150px;
    }
}
/* Genel Box-Sizing Ayarı */
*, *::before, *::after {
    box-sizing: border-box;
}
/* Varsayılan Stil */
.title-bar-meattech,
.title-bar-energy {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    padding: 40px 0;
    background-image: url('background-image-url'); /* Resim URL'sini güncelleyin */
    background-size: cover;
    background-position: center;
   
}

    /* Pseudo-element */
    .title-bar-meattech::before,
    .title-bar-energy::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(...); /* Her sınıf için uygun gradient */
        z-index: 1;
    }

    .title-bar-meattech h1,
    .title-bar-energy h1 {
        position: relative;
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
        z-index: 2;
    }

/* Medya Sorguları */

/* Tablet Ekranlar */
@media (max-width: 1024px) {
    .title-bar-meattech,
    .title-bar-energy {
        padding: 30px 10px; /* Yatay padding ekleyerek taşmayı önleyin */
    }

        .title-bar-meattech h1,
        .title-bar-energy h1 {
            font-size: 2rem; /* Font boyutunu küçültün */
        }
}

/* Mobil Ekranlar */
@media (max-width: 768px) {
    .title-bar-meattech,
    .title-bar-energy {
        padding: 20px 10px; /* Yatay padding'i artırarak taşmayı önleyin */
    }

        .title-bar-meattech h1,
        .title-bar-energy h1 {
            font-size: 1.5rem; /* Font boyutunu daha da küçültün */
            word-wrap: break-word; /* Uzun başlıkların taşmasını engelleyin */
        }
}
.title-bar-meattech,
.title-bar-energy {
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px) {
    .title-bar-meattech,
    .title-bar-energy {
        background-image: none; /* Mobilde arka plan resmini kaldırır */
        background-color: #desired-color; /* İsteğe bağlı arka plan rengi */
    }
}
.title-bar-meattech::before,
.title-bar-energy::before {
    width: 100%;
    height: 100%;
}
.title-bar-meattech,
.title-bar-energy {
    overflow: hidden;
}
/* Metin Alanı */
.text-area {
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0;
    max-width: 1200px; /* İçeriğin genişliğini sınırlamak için */
    width: 100%; /* Tam genişlik */
    box-sizing: border-box; /* Taşmaları önlemek için */
}

.text-area p {
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
    margin-bottom: 15px;
    text-align: justify; /* Metni iki yana yaslamak için */
}

/* Görseller */
.text-area img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border: 1px solid #ddd;
    display: block; /* Taşmaları önlemek için */
}

/* Sağlı Sollu Resim ve Metin Alanları */
.img-left {
    float: left;
    margin-right: 20px;
    width: 50%;
}

.img-right {
    float: right;
    margin-left: 20px;
    width: 50%;
}

/* Clearfix */
.text-area::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobil Cihazlar İçin Düzenlemeler */
@media (max-width: 768px) {
    .text-area {
        padding: 15px;
    }

    .text-area p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .img-left,
    .img-right {
        float: none;
        margin: 10px 0;
        width: 100%;
    }

    .text-area img {
        margin: 10px auto;
    }
}


/* Gallery Item */
.gallery-item-energy img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Elements Area */
.element-box-energy {
    padding: 20px;
    background-color: #f8f9fa;
    border: 2px solid #93d500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .element-box-energy:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: #00a0dd;
    }

.element-icon-energy {
    max-width: 60px;
    margin-bottom: 15px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oranı */
    height: 0;
    overflow: hidden;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Call to Action Bar */
.cta-bar-energy {
    background-color: #323e48;
    color: #fff;
    text-align: center;
    padding: 20px;
}

    .cta-bar-energy a {
        color: #fff;
        font-weight: bold;
        text-decoration: underline;
    }