/* Global Styles */
:root {
    --primary-color: #384a74;
    --secondary-color: #00b050;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --text-color: #212529;
}

/* FORCE SLIDER HEIGHT - CACHE BYPASS */
.hero-section,
.hero-section .container-fluid,
.hero-slider,
#heroSlider,
.hero-slide {
    height: 650px !important;
    min-height: 650px !important;
    max-height: 650px !important;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.font-afacad {
    font-family: 'Afacad', sans-serif;
}

.font-afacad-semibold {
    font-family: 'Afacad', sans-serif;
    font-weight: 600;
}

.hero-section {
    position: relative;
    color: white;
    height: 650px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-section .container-fluid {
    padding: 0;
    margin: 0;
    height: 650px;
    width: 100%;
}

.hero-slider {
    height: 650px !important;
}

.news-section .owl-carousel .owl-stage-outer,
.news-section .owl-carousel .owl-stage,
.news-section .owl-carousel .owl-item {
    height: 450px !important;
}

.hero-slide {
    position: relative !important;
    width: 100% !important;
    height: 650px !important;
    overflow: hidden !important;
    display: block !important;
}

.video-slide {
    height: 650px !important;
    max-height: 650px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.hero-video {
    height: 650px !important;
    max-height: 650px !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: fill !important;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-moz-media-controls,
.hero-video::-ms-media-controls,
.hero-video::--ms-media-controls-enclosure {
    display: none !important;
}

.video-slide .overlay {
    display: none;
}

/* Owl Navigation - gizli */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    display: none !important;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    background-color: rgba(56, 74, 116, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background-color: var(--secondary-color) !important;
}

.owl-nav button i {
    color: white;
    font-size: 18px;
}

/* Owl Dots - gizli */
.owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background-color: var(--secondary-color);
    width: 15px;
    height: 15px;
}

/* Slider pagination kontrolleri */
.slider-pagination-container {
    position: absolute;
    height: 30px;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 15;
    background-color: transparent;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 12px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.pagination-dot.active::after {
    border-color: rgba(128, 128, 128, 0.5);
}

.pagination-dot:hover {
    background-color: rgba(169, 169, 169, 0.8);
}

.pagination-dot.active:hover {
    background-color: var(--secondary-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pagination-dot.animate-pulse {
    animation: pulse 0.5s ease-in-out;
}

.main-content {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.features-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.feature-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #777;
}

.nav-icons-section {
    background-color: var(--primary-color);
}

.nav-icon-item {
    text-align: center;
    padding: 15px;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-icon-item.active {
    background-color: var(--secondary-color);
}

.nav-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.products-section {
    background-color: white;
    padding: 60px 0;
}

.product-card {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
}

.product-card img {
    max-width: 80%;
    margin-bottom: 20px;
}

.product-card h4 {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    color: #777;
    font-size: 14px;
}

.footer {
    background-color: #263238;
    color: #fff;
    padding: 50px 0 30px;
}

.footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #2a3b55;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #1c2b43;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.text-primary {
    color: var(--primary-color) !important;
}

@media (max-width: 992px) {
    /* Eski hero-content stilleri kaldırıldı */
}

@media (max-width: 768px) {
    .blue-banner {
        background-position: top center;
        min-height: auto;
        padding-bottom: 60px;
    }

    .blue-banner .info-text {
        padding: 60px 15px 30px;
        text-align: center;
        height: auto;
        justify-content: center;
        top: 0;
    }

    .blue-banner h3 {
        font-size: 22px;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .counter-section {
        position: relative;
        bottom: 0;
        margin-top: -60px;
    }

    .counter-box.green,
    .counter-box.blue {
        padding: 25px 0;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .counter-text {
        font-size: 0.6rem;
        margin-top: 5px;
    }

    .footer {
        padding: 30px 0 20px;
        text-align: center;
    }

    .footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .col-md-4 {
        margin-bottom: 30px;
    }

    /* Hero section mobil düzenlemeleri */
    .hero-section {
        height: 500px;
        margin-bottom: 20px;
    }
    
    /* Slider pagination mobilde */
    .slider-pagination-container {
        position: absolute !important;
        bottom: 30px !important;
        z-index: 100 !important;
    }

    .owl-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .machine-intro {
        padding: 40px 0;
        margin-top: 350px;
        position: relative;
        z-index: 5;
    }

    /* Mobilde makina resmi düzenlemeleri */
    .machine-intro .col-lg-7 {
        text-align: right !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .machine-intro .col-lg-7 img {
        max-width: 70% !important;
        height: auto !important;
        object-fit: contain !important;
        margin-right: 0 !important;
        margin-left: auto !important;
    }

    /* Mobilde metin bölümü düzenlemeleri */
    .machine-intro .col-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 20px !important;
    }

    .features {
        padding: 30px 0;
    }

    .feature-box {
        padding: 30px 10px;
        margin-bottom: 5px;
    }

    .feature-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .feature-box .small-title {
        font-size: 14px;
    }

    .feature-box .feature-desc {
        font-size: 12px;
    }

    .category-icon {
        height: 60px;
    }

    .product-categories {
        max-width: 98%;
        margin-top: 0;
    }

    .product-categories-wrapper {
        margin-top: -50px;
        padding-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .products {
        padding: 30px 0;
    }

    .row-mobile {
        row-gap: 15px;
        margin-left: -7px;
        margin-right: -7px;
        display: flex;
        flex-wrap: wrap;
    }

    .row-mobile>.col-6 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .row-mobile>.col-6:nth-child(1),
    .row-mobile>.col-6:nth-child(2) {
        padding-top: 0;
    }

    .row-mobile>.col-6:nth-child(3),
    .row-mobile>.col-6:nth-child(4) {
        padding-top: 0;
    }

    .product-item {
        padding: 15px;
        margin-bottom: 0;
        margin-top: 0;
        border-radius: 4px;
    }

    .product-item .img-container {
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .product-item .img-container a {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .product-item img {
        max-height: 150px !important;
        transform: none !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: contain !important;
        max-width: 80% !important;
    }

    .product-item .text-container {
        width: 100% !important;
        text-align: left !important;
        padding-left: 10px !important;
    }
    
    .product-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        min-height: auto !important;
        text-align: left !important;
    }
    
    .product-desc {
        text-align: left !important;
        font-size: 14px !important;
    }

    .features .container {
        max-width: 98%;
        width: 98%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-categories {
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }

    .products .container {
        max-width: 98%;
        width: 98%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .news-section {
        padding: 40px 0 100px;
        margin-top: 30px;
        overflow: visible;
    }

    .news-section::before,
    .news-section::after {
        width: 5%;
    }

    .news-section .container {
        max-width: 90%;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .news-slider {
        padding: 0 0 30px;
        overflow: visible;
    }

    .news-slider .owl-stage-outer {
        overflow: visible;
        padding: 10px 0;
    }

    .news-slider .owl-item {
        padding: 2px;
    }

    .news-slider .owl-nav {
        width: 100%;
        left: 0;
    }

    .news-slider .owl-nav button {
        width: 30px;
        height: 30px;
        margin: 0;
    }

    .news-slider .owl-nav button i {
        font-size: 14px;
    }

    .news-slider .owl-dots {
        margin-top: 15px;
    }

    .news-slider .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 3px;
    }

    .news-slider .owl-dots .owl-dot.active span {
        width: 10px;
        height: 10px;
    }

    .news-card {
        margin-bottom: 0;
        height: 100%;
        overflow: visible;
        position: relative;
        z-index: 1;
        margin-top: 0px;
        padding-bottom: 0;
        background-color: #fff;
    }

    .news-card:hover {
        transform: translateY(-8px);
        z-index: 10;
    }

    .news-card img {
        height: 140px;
        border-radius: 4px 4px 0 0;
        overflow: hidden;
    }

    .news-card h4 {
        font-size: 14px;
        padding: 10px 10px 5px;
        font-family: "Archivo", sans-serif;
    }

    .news-card p {
        font-size: 12px;
        color: #000;
        padding: 0 10px 10px;
        font-family: "Archivo", sans-serif;
    }

    /* Mobil görünümde ürünleri tek sütun yapma */
    .row-mobile > .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .product-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px !important;
        margin-bottom: 15px !important;
    }
    
    .product-item .img-container {
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .product-item .text-container {
        width: 100% !important;
        text-align: left !important;
    }
    
    .product-item img {
        max-height: 150px !important;
        transform: none !important;
    }
    
    .product-item:hover img {
        transform: scale(1.05) !important;
    }
    
    .product-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        min-height: auto !important;
    }

    .products .product-item .text-container {
        width: 100% !important;
        text-align: left !important;
        padding-left: 10px !important;
    }
    
    .products .product-item .text-container .product-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        min-height: auto !important;
        text-align: left !important;
    }
    
    .products .product-item .text-container .product-desc {
        text-align: left !important;
        font-size: 14px !important;
    }
    
    /* Ekstra güçlü seçiciler */
    [class*="product-"] .text-container,
    [class*="product-"] .product-title,
    [class*="product-"] .product-desc {
        text-align: left !important;
    }
}

.machine-intro {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.machine-intro .row {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.machine-intro h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: 0.5px;
}

.machine-intro p {
    line-height: 1.7;
    font-size: 16px;
}

.machine-intro .fw-bold {
    font-size: 20px;
}

@media (min-width: 992px) {
    .machine-intro .col-lg-5 {
        padding-left: 8%;
        padding-right: 0;
    }

    .machine-intro .col-lg-7 {
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 0 !important;
    }

    .machine-intro .col-lg-7 img {
        max-width: 72%;
        height: auto;
        object-fit: contain;
        margin-right: 0;
    }
}

.features {
    background-color: #f8f9fa;
    padding: 30px 0 30px 0;
    margin-bottom: -30px;
    border-bottom: none;
}

.features .container {
    max-width: 96%;
    width: 96%;
    margin-bottom: 0;
}

.feature-box {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 4px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

.feature-box img {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    object-fit: contain;
}

.feature-box .small-title {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Afacad', sans-serif;
}

.feature-box .feature-desc {
    color: #C7C7C7;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'Afacad', sans-serif;
}

.product-categories {
    background-color: #f8f9fa;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.category-icon {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 0;
    padding: 0;
    background-color: #384a74;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.category-icon:last-child {
    border-right: none;
}

.category-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.category-icon:hover:before {
    transform: translateX(-100%);
}

.category-icon.active {
    background-color: #00b050;
    box-shadow: none;
}

.category-icon:hover {
    opacity: 1;
    box-shadow: none;
}

.category-icon.active:hover {
    box-shadow: none;
}

.category-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.category-icon:hover .category-img {
    transform: scale(1.1);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--secondary-color) !important;
}

.products {
    background-color: #f9f9f9;
    padding: 40px 0;
    margin-top: -5px;
}

.products .container {
    max-width: 96%;
    width: 96%;
}

.product-item {
    transition: all 0.4s ease;
    padding: 30px 25px;
    height: 100%;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 30px;
    margin-top: 5px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

.product-item .img-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.product-item img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item .text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
    line-height: 1.3;
    min-height: 26px;
}

.product-desc {
    color: #9BA4B0;
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    line-height: 1.4;
}

.blue-banner {
    background-image: url('../images/maininfo.png');
    background-size: cover;
    background-position: center;
    padding: 0;
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 665px;
}

.blue-banner::before {
    display: none;
}

.blue-banner::after {
    display: none;
}

.blue-banner .container {
    position: relative;
    z-index: 2;
}

.blue-banner .info-text {
    color: #fff;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
    height: 400px;
    position: relative;
    top: 50px;
}

.blue-banner h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
    font-family: 'Afacad', sans-serif;
    max-width: 80%;
}

.counter-section {
    background-color: transparent;
    margin-top: 0;
    padding: 0;
    position: absolute;
    bottom: -80px;
    width: 100%;
    z-index: 10;
}

.counter-section .row {
    display: flex;
    justify-content: space-between;
}

.counter-box {
    background-color: transparent !important;
    padding: 0;
    position: relative;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-box.green {
    background-color: #3AAD2C !important;
    border-radius: 0;
    padding: 35px 0;
}

.counter-box.blue {
    background-color: #3C4C6D !important;
    border-radius: 0;
    padding: 35px 0;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    color: #fff;
}

.counter-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-top: 5px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
}

#products-container .row {
    animation: fadeIn 0.5s ease-in-out;
}

.row-mobile {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-section {
    position: relative;
    padding: 40px 0 100px;
    background-color: #fff;
    overflow: visible;
    width: 100%;
    z-index: 5;
    margin-top: -10px;
}

.news-section .container {
    position: relative;
    z-index: 5;
    max-width: 100%;
    padding: 0 15px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 32px;
    color: #2b3c62;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #415171;
}

.news-card {
    margin-bottom: 0;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: visible;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    padding-bottom: 0;
    background-color: #fff;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.news-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    padding: 20px;
}

.news-card h4 {
    padding: 20px 20px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2b3c62;
    line-height: 1.4;
}

.news-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.modal-backdrop.show {
    opacity: 0.7;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#productImageModal .modal-dialog {
    max-width: 800px;
}

#productImageModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

#productImageModal .modal-header {
    padding: 20px 25px;
    background-color: #fff;
    color: var(--primary-color);
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#productImageModal .modal-title {
    font-weight: 600;
    font-size: 22px;
    font-family: 'Afacad', sans-serif;
    color: var(--primary-color);
}

#productImageModal .close-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#productImageModal .close-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#productImageModal .close-btn svg {
    color: #666;
    transition: all 0.2s ease;
}

#productImageModal .close-btn:hover svg {
    color: var(--primary-color);
}

#productImageModal .modal-body {
    padding: 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#productModalImage {
    max-height: 450px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-in-out;
    width: auto;
    max-width: 100%;
}

.product-modal-desc {
    color: #666;
    font-size: 18px;
    text-align: center;
    margin: 0;
    font-weight: 400;
    padding: 0 15px;
    font-family: 'Afacad', sans-serif;
}

.product-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0 80px;
        overflow: visible;
        width: 100%;
        z-index: 5;
    }

    .news-section::before,
    .news-section::after {
        display: none;
    }

    .news-section .container {
        padding: 0 15px;
        max-width: 100%;
        z-index: 5;
    }

    .section-heading h2 {
        font-size: 24px;
    }
}

.news-slider {
    position: relative;
    padding: 0 0 30px;
    margin: 0 auto;
    overflow: visible;
    z-index: 5;
}

.news-slider .owl-stage-outer {
    overflow: visible;
    padding: 10px 0;
    z-index: 5;
}

.news-slider .owl-item {
    padding: 2px;
    transition: all 0.3s ease;
}

.news-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 10;
    left: 0;
}

.news-slider .owl-nav button {
    width: 40px;
    height: 40px;
    background-color: rgba(56, 74, 116, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 -20px;
    z-index: 10;
}

.news-slider .owl-nav button:hover {
    background-color: var(--secondary-color) !important;
}

.news-slider .owl-nav button i {
    color: white;
    font-size: 16px;
}

.news-slider .owl-dots {
    position: relative;
    bottom: auto;
    margin-top: 20px;
}

.news-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: rgba(56, 74, 116, 0.3);
    transition: all 0.3s ease;
}

.news-slider .owl-dots .owl-dot.active span {
    background-color: var(--secondary-color);
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .news-slider {
        padding: 0 0 20px;
        overflow: visible;
        z-index: 5;
    }

    .news-slider .owl-stage-outer {
        overflow: visible;
        padding: 10px 0;
    }

    .news-slider .owl-item {
        padding: 7px;
    }

    .news-slider .owl-nav {
        width: 114%;
        left: -7%;
    }

    .news-slider .owl-nav button {
        width: 30px;
        height: 30px;
        margin: 0;
    }

    .news-slider .owl-dots {
        margin-top: 15px;
    }

    .news-slider .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 3px;
    }

    .news-slider .owl-dots .owl-dot.active span {
        width: 10px;
        height: 10px;
    }
}

.world-map-section {
    padding: 100px 0 80px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 3;
    margin-top: 40px;
}

.world-map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.world-map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.map-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

.map-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: rgba(56, 74, 116, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-animation 2s infinite;
}

.map-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-point-label {
    position: absolute;
    font-size: 14px;
    transform: translateX(-50%) translateY(-45px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5d8a 100%);
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    z-index: 100;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    width: max-content;
    left: 50%;
    text-align: center;
}

.map-point-label::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
}

.map-point-country {
    position: absolute;
    font-size: 10px;
    transform: translateX(-50%) translateY(25px);
    padding: 4px 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5d8a 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1px;
    z-index: 100;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    width: max-content;
    left: 50%;
}

.map-point-country::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--primary-color);
}

/* Hover durumunda label ve country görünür olur */
.map-point:hover .map-point-label,
.map-point:hover .map-point-country,
.map-point.touch-active .map-point-label,
.map-point.touch-active .map-point-country {
    opacity: 1;
}

.map-point:hover .map-point-label,
.map-point.touch-active .map-point-label {
    transform: translateX(-50%) translateY(-50px) scale(1.05);
    transition-delay: 0.1s;
}

.map-point:hover .map-point-country,
.map-point.touch-active .map-point-country {
    transform: translateX(-50%) translateY(30px) scale(1.05);
    transition-delay: 0.2s;
}

@keyframes pulse-animation {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: 0;
    }
}

@keyframes point-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    70% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.animate-point {
    animation: point-appear 0.5s forwards;
}

@media (max-width: 768px) {
    .world-map-section {
        padding: 80px 0 40px;
        margin-top: 20px;
    }

    .map-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .map-point {
        width: 16px;
        height: 16px;
    }

    .map-point::before {
        width: 16px;
        height: 16px;
    }

    .map-point::after {
        width: 8px;
        height: 8px;
    }

    .map-point-label {
        font-size: 12px;
        transform: translateY(-20px);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .map-point-country {
        font-size: 10px;
        transform: translateX(-50%) translateY(25px);
        padding: 4px 8px;
        background-color: transparent;
        box-shadow: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    /* Mobilde hover durumunda görünür olur */
    .map-point:hover .map-point-label,
    .map-point:hover .map-point-country {
        opacity: 1;
    }

    @keyframes pulse-animation {
        0% {
            width: 16px;
            height: 16px;
            opacity: 1;
        }

        100% {
            width: 40px;
            height: 40px;
            opacity: 0;
        }
    }
}

.description-section {
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    z-index: 3;
    margin-top: -50px;
}

.description-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 15%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 0.8) 40%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.4) 60%,
            rgba(255, 255, 255, 0.2) 70%,
            rgba(255, 255, 255, 0) 80%);
    z-index: 2;
    pointer-events: none;
}

.description-section .container {
    position: relative;
    z-index: 1;
}

.description-section h2,
.description-section h5,
.description-section p,
.description-section li,
.description-section strong,
.description-section ol,
.description-section ul {
    color: #000;
    font-family: 'Inter', sans-serif;
}

.description-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.description-section h5 {
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 3;
}

.description-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.description-section h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.description-section ol li,
.description-section ul li {
    font-size: 16px;
    line-height: 1.6;
}

.description-section ul {
    list-style-type: none;
    padding-left: 15px;
}

.description-section ul li:before {
    content: '•';
    color: #000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 768px) {
    .description-section {
        padding: 40px 0 60px;
        margin-top: -40px;

    }

    .description-section::before {
        height: 400px;
        background: linear-gradient(to top,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.95) 15%,
                rgba(255, 255, 255, 0.9) 30%,
                rgba(255, 255, 255, 0.7) 45%,
                rgba(255, 255, 255, 0.5) 60%,
                rgba(255, 255, 255, 0.3) 75%,
                rgba(255, 255, 255, 0) 90%);
    }

    .description-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .description-section p {
        font-size: 14px;
        line-height: 1.6;
    }

    .description-section h5 {
        font-size: 18px;
    }

    .description-section h6 {
        font-size: 16px;
    }

    .description-section ol li,
    .description-section ul li {
        font-size: 14px;
        line-height: 1.5;
    }

    .container-fluid p {
        margin-left: -20px;
    }
}

.product-categories-wrapper {
    margin-top: -30px;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-title {
    background-color: #2a3b55;
    color: white;
    padding: 20px 0;
    margin-bottom: 0;
}

.page-title h2 {
    text-align: center;
    font-family: 'Afacad', sans-serif;
    font-weight: 600;
    margin: 0;
}

/* Özel Mobil Pagination Fix */
@media only screen and (max-width: 768px) {
    body .hero-section .slider-pagination-container {
        position: absolute;
        bottom: 200px;
        left: 0;
        right: 0;
        z-index: 999;
    }
}

/* ========================================
   SLIDER MOBİL RESİM KONTROL SİSTEMİ
   ======================================== */

/* Slider resim temel ayarları */
.hero-slide-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
}

/* Desktop resim kontrolleri - 992px ve üzeri */
.desktop-slider-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop için özel object-fit ayarları */
@media (min-width: 992px) {
    .hero-slide-image {
        object-fit: cover !important;
        object-position: center center !important;
        /* Resim tam container'a sığması için */
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        /* Resim keskinliği için */
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
    
    /* Slider container yüksekliği sabit */
    .hero-section {
        height: 650px !important;
        background-color: #f8f9fa !important; /* Açık gri arka plan */
        overflow: hidden !important;
    }
    
    .hero-slider,
    .hero-slider .owl-item,
    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage {
        height: 650px !important;
        overflow: hidden !important;
    }
    
    .hero-slide {
        height: 650px !important;
        background-color: #f8f9fa !important; /* Slide arka planı da açık gri */
        overflow: hidden !important;
        position: relative !important;
    }
    
    /* Desktop resim container optimizasyonu - taşmayı önlemek için kaldırıldı */
    .desktop-slider-image {
        /* transform: scale(1.01) !important; - Bu satır kaldırıldı */
    }
}

.mobile-slider-image {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Mobil resim kontrolleri - 991px ve altı */
@media (max-width: 991px) {
    .desktop-slider-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .mobile-slider-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Owl Carousel özel kontrolleri - Mobil */
    .hero-slider .owl-item .hero-slide .desktop-slider-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        z-index: -1 !important;
    }
    
    .hero-slider .owl-item .hero-slide .mobile-slider-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 1 !important;
    }
    
    /* Mobil slider container'ları da overflow hidden yap */
    .hero-slider,
    .hero-slider .owl-item,
    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage {
        overflow: hidden !important;
    }
}

/* Desktop Owl Carousel kontrolleri - 992px ve üzeri */
@media (min-width: 992px) {
    .hero-slider .owl-item .hero-slide .desktop-slider-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 1 !important;
    }
    
    .hero-slider .owl-item .hero-slide .mobile-slider-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        z-index: -1 !important;
    }
}

/* Extra güçlü kontroller - tüm olası Owl Carousel seçicileri */
.owl-carousel .owl-stage .owl-item .hero-slide .desktop-slider-image,
.owl-carousel .owl-stage-outer .owl-stage .owl-item .hero-slide .desktop-slider-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.owl-carousel .owl-stage .owl-item .hero-slide .mobile-slider-image,
.owl-carousel .owl-stage-outer .owl-stage .owl-item .hero-slide .mobile-slider-image {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

@media (max-width: 991px) {
    .owl-carousel .owl-stage .owl-item .hero-slide .desktop-slider-image,
    .owl-carousel .owl-stage-outer .owl-stage .owl-item .hero-slide .desktop-slider-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .owl-carousel .owl-stage .owl-item .hero-slide .mobile-slider-image,
    .owl-carousel .owl-stage-outer .owl-stage .owl-item .hero-slide .mobile-slider-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }
}

/* Hero content pozisyon düzeltmesi - Sol alt köşe */
.hero-content {
    position: absolute !important;
    bottom: 40px !important;
    left: 40px !important;
    transform: none !important;
    text-align: left !important;
    color: white !important;
    z-index: 10 !important;
    width: auto !important;
    max-width: 60% !important;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* Slider yükseklik kontrolleri */
.hero-slider .owl-item,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage {
    height: 650px !important;
    overflow: hidden !important;
}

.hero-slide {
    position: relative !important;
    width: 100% !important;
    height: 650px !important;
    overflow: hidden !important;
    display: block !important;
}

/* Tüm slider resimlerinin taşmasını önle */
.hero-slide img,
.hero-slider img,
.owl-carousel img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 400px;
        overflow: hidden !important;
    }
    
    .hero-slider .owl-item,
    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage {
        height: 500px !important;
        overflow: hidden !important;
    }
    
    .hero-slide {
        height: 500px !important;
        overflow: hidden !important;
    }
    
    /* Mobilde de tüm slider resimlerinin taşmasını önle */
    .hero-slide img,
    .hero-slider img,
    .owl-carousel img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 1 !important;
        overflow: hidden !important;
    }
    
    /* Mobil hero-content ayarları */
    .hero-content {
        bottom: 30px !important;
        left: 20px !important;
        max-width: 70% !important;
    }
    
    .hero-content h1 {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }
    
    .hero-content p {
        font-size: 16px !important;
        margin-left: 0px !important;
        
    }
}