
        /* Genel Stiller */
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2px 15px;
        }
        
        /* Full width component style for header widget */
        .full-width-component {
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            width: 100vw;
            margin-bottom: 30px;
            position: relative;
        }
        
        /* Header widget'tan sonra margin ekle */
        .with-header-widget {
            margin-top: 30px;
        }
        
        /* Header Widget Stillemesi - Daha kompakt görünüm */
        .header-widget {
            padding: 15px 0; /* Padding'i daha da azalttık */
            margin-bottom: 0;
        }
        
        .header-widget .container {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        
        .header-widget h1 {
            font-size: 24px; /* Başlık boyutunu daha da azalttık */
            margin-bottom: 6px;
            line-height: 1.2;
        }
        
        .header-widget p {
            font-size: 14px; /* Alt başlık boyutunu daha da azalttık */
            margin-bottom: 10px;
            line-height: 1.3;
            max-width: 80%;
        }
        
        .feature-badges {
            margin: 12px 0; /* Rozet alanı margin'ini daha da azalttık */
            display: flex;
            flex-wrap: wrap;
            gap: 8px; /* Rozetler arası boşluğu azalttık */
        }
        
        .feature-badge {
            padding: 4px 10px; /* Rozet iç padding'ini daha da azalttık */
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            margin-right: 8px;
            font-size: 13px; /* Rozet yazı boyutunu daha da azalttık */
        }
        
        .feature-badge i {
            margin-right: 4px;
            font-size: 12px; /* İkon boyutunu daha da azalttık */
        }
        
        .widget-button {
            margin-top: 12px;
            padding: 6px 14px; /* Buton padding'ini daha da azalttık */
            font-size: 13px; /* Buton yazı boyutunu daha da azalttık */
            display: inline-block;
        }
        
        /* Slider Stillemesi */
        .page-slider {
            margin-bottom: 30px;
            margin-top: 30px;
        }
        
        /* Slider yüksekliğini azaltan yeni stiller */
        .carousel-item {
            max-height: 400px; /* Slider yüksekliğini 300px'e düşürdük */
            overflow: hidden;
            border-radius: 10px;
        }
        
        .carousel-inner {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-item img {
            width: 100%;
            height: 400px; /* Görsel yüksekliğini de 300px olarak güncelledik */
            object-fit: cover; /* Görseli kırpmadan sığdırıyoruz */
            object-position: center; /* Görselin orta noktasını gösteriyoruz */
        }
        
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 15px;
            border-radius: 5px;
            bottom: 20px;
        }
        
        /* Slider kontrol oklarını özelleştirme */
        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
        }
        
        .carousel-control-prev {
            left: 15px;
        }
        
        .carousel-control-next {
            right: 15px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        /* Slider göstergelerini özelleştirme */
        .carousel-indicators {
            bottom: 10px;
        }
        
        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .carousel-indicators button.active {
            background-color: white;
        }
        
        /* Breadcrumb Stillemesi */
        .breadcrumb-section {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
        }
        
        .breadcrumb {
            padding: 0;
            margin: 0;
            background: transparent;
        }
        
        .breadcrumb-item a {
            color: #0e4194;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb-item a:hover {
            color: #e3072a;
            text-decoration: underline;
        }
        
        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: #6c757d;
        }
        
        /* Özellikler Bölümü */
        .features-section {
            margin: 50px 0;
        }
        
        .feature-item {
            padding: 30px 25px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }
        
        .feature-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background-color: #0e4194;
            transition: height 0.4s ease;
        }
        
        .feature-item:hover:before {
            height: 100%;
        }
        
        .feature-icon {
            margin-bottom: 20px;
            font-size: 40px;
            color: #0e4194;
            transition: all 0.4s ease;
        }
        
        .feature-item:hover .feature-icon {
            transform: translateY(-5px);
            color: #e3072a;
        }
        
        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-title {
            color: #0e4194;
        }
        
        .feature-description {
            color: #6c757d;
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* İletişim Bölümü */
        .contacts-section {
            margin: 50px 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 30px;
            margin-right: 20px;
            color: #0e4194;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(14, 65, 148, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background-color: #0e4194;
            color: white;
        }
        
        .contact-details h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: #6c757d;
            margin-bottom: 5px;
        }
        
        .contact-link {
            display: inline-block;
            color: #0e4194;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: #e3072a;
            text-decoration: underline;
        }
        
        /* Inventory Section */
        .inventory-section {
            background-color: #00214f; /* Dark navy blue background */
            padding: 40px 0;
            color: white;
            width: 100%;
            position: relative;
            overflow: hidden;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            width: 100vw;
            max-width: 100vw;
        }
        .inventory-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
            gap: 30px; /* Specific gap between items */
        }
        .inventory-item {
            text-align: center;
            flex: 0 0 auto;
            min-width: 200px;
            max-width: 220px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        .inventory-item:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }
        .inventory-icon {
            font-size: 34px;
            color: white;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .inventory-item:hover .inventory-icon {
            background-color: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }
        
        .inventory-value {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }
        .inventory-title {
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @media (max-width: 1200px) {
            .inventory-container {
                gap: 20px;
                padding: 0 20px;
            }
        }
        
        @media (max-width: 992px) {
            .inventory-item {
                min-width: 180px;
                max-width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .inventory-section {
                padding: 40px 0;
            }
            .inventory-container {
                gap: 15px;
                padding: 0 15px;
            }
            .inventory-item {
                min-width: 160px;
                max-width: 180px;
                padding: 15px;
            }
            .inventory-icon {
                width: 80px;
                height: 80px;
                font-size: 30px;
                margin-bottom: 15px;
            }
            .inventory-value {
                font-size: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .inventory-container {
                gap: 10px;
                padding: 0 10px;
            }
            .inventory-item {
                min-width: 140px;
                max-width: 100%;
                flex: 0 0 calc(50% - 10px);
                padding: 12px;
            }
            .inventory-icon {
                width: 70px;
                height: 70px;
                font-size: 26px;
            }
            .inventory-value {
                font-size: 36px;
            }
            .inventory-title {
                font-size: 12px;
            }
        }

        .dropdown-toggle::after {
    display: none!important;
   
}
  