  :root {
        	--topbar-bg-one: #282F3B;
            --topbar-bg: #515151;
            --primary-red: #CD2824;
            --primary-blue: #0F8BCC;
            --footer-bg: #1E2430;
            --font-family: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: #333;
        }

        .topbar {
            background-color: var(--topbar-bg-one);
            height: 69px;
            display: flex;
            align-items: center;
            color: white;
            font-size: 14px;
        }

        .topbar .contact-info {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .topbar .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
        }

        .topbar .contact-item:hover {
            color: #ddd;
        }

        .topbar .contact-item i {
            font-size: 16px;
        }

        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header .logo {
            max-height: 50px;
        }
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 10px 0 !important;
    position: relative;
    font-size: 15px;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}
.navbar-nav .nav-link:active {
    color: var(--primary-red) !important;
    font-weight: bold;
}
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Mərkəzdən başlaması üçün */
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
    font-weight: bold;
}
.navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
    width: 100%;
}
.navbar-nav .dropdown.active > .nav-link {
    color: var(--primary-red) !important;
    font-weight: bold;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    font-weight: 400;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-red);
}

.search-icon {
            background: none;
            border: none;
            font-size: 18px;
            color: #333;
            cursor: pointer;
            padding: 10px;
            margin-left: 15px;
        }

        .search-icon:hover {
            color: var(--primary-red);
        }

.hero-slider {
    position: relative;
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1; /* Karartma katmanı */
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    color: white;
    max-width: 600px;
    z-index: 2; /* Karartmanın üstünde */
    padding: 20px;
    border-radius: 10px;
}

.logo-wrapper {
    position: absolute; /* Slide div'ine göre konumlandırma */
    bottom: 20px; /* Alt kenardan 20px */
    right: 20px; /* Sağ kenardan 20px */
    max-width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2; /* Karartma katmanının üstünde */
}

.logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}



@media (max-width: 768px) {
    .hero-slider {
        min-height: 50vh; 
    }
    .slide-content h1 {
        font-size: 2.5rem; 
    }
    .slide-content p {
        font-size: 1rem; 
    }
    .btn-primary-custom {
        padding: 10px 25px; 
    }
}
@media (max-width: 576px) {
    .logo-wrapper{
        width: 40%;
        height: auto;
    }
    .logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
    .hero-slider {
        min-height: 40vh; 
    }
    .slide-content {
        max-width: 90%;
        padding: 15px;
    }
    .slide-content h1 {
        font-size: 1.8rem; 
    }
    .slide-content p {
        font-size: 0.9rem;
    }
    .btn-primary-custom {
        padding: 8px 20px;
    }
}

        /* === SERVICES SECTION === */
        .services-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
        }

        .service-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* === PARTNERS SECTION === */
        .partners-section {
            padding: 60px 0;
            background: white;
        }

        .partners-slider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .partner-logo {
            max-height: 60px;
            max-width: 150px;
            /*opacity: 0.7;*/
            /*transition: opacity 0.3s ease;*/
            /*filter: grayscale(100%);*/
        }

        .partner-logo:hover {
            /*opacity: 1;*/
            /*filter: grayscale(0%);*/
        }

        /* === FOOTER STYLES === */
        .footer {
            background-color: var(--footer-bg);
            color: white;
            padding: 50px 0 20px;
        }

        .footer h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer p, .footer a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer a:hover {
            color: white;
        }

        .footer-menu li {
            margin-bottom: 8px;
        }

        .footer-menu a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: var(--primary-red);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #999;
        }

     
/* === SEARCH BAR === */
.search-bar {
    position: fixed;
    top: -200px; /* Başlangıçta görünmez */
    left: 0;
    width: 100%;
    background-color: rgba(45, 73, 114, 0.8); /* #2d4972 rengi, %80 opaklık */
    z-index: 2000;
    transition: top 0.5s ease-in-out;
}


.search-bar.active {
    top: 0; /* Açıldığında görünür */
}

.search-box {
    width: 90%;
    padding: 20px 0;
    text-align: center;
}

.search-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 1024px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-red);
}

.search-box .btn-primary {
    background-color: var(--primary-red);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.search-box .btn-primary:hover {
    background-color: var(--primary-blue);
}

.close-search {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar{
        display: none!important;
    }
    .search-box {
        padding: 15px 0;
    }
    .search-form {
        flex-direction: column;
        gap: 15px;
    }
    .search-input {
        width: 90%;
    }
}

        /* === RESPONSIVE STYLES === */
        @media (max-width: 991px) {
            .topbar .contact-info {
                gap: 15px;
            }
            
            .topbar .contact-item span {
                display: none;
            }
            
            .slide-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-slider {
                height: 50vh;
            }
        }

        @media (max-width: 768px) {
            .topbar {
                height: auto;
                padding: 10px 0;
            }
            .topbar .contact-item{
                display: none!important;
            }
            
    .topbar .contact-info a:last-child,
    .topbar .contact-info a:nth-last-child(2),
    .topbar .contact-info a:nth-last-child(3) {
        display: none !important;
    }
.search-icon{
    display: none;
}
 /* Logoyu küçült */
      .navbar-brand img.logo {
        max-height: 40px;
        width: auto;
     }


    
            .topbar .contact-info {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
        }


/* Mobil cihazlarda search-icon'u gizlət */
@media (max-width: 768px) {
    .search-icon {
        display: none !important;
    }
}



        @media (max-width: 576px) {
            .slide-content h1 {
                font-size: 1.5rem;
            }
            
            .partners-slider {
                gap: 20px;
            }
            
            .partner-logo {
                max-width: 120px;
                max-height: 50px;
            }
        }


  .bosluk-h3{
    height: 42px;
    width: 100%;
  }      


  /* === ABOUT SECTION === */
/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.about-section .section-title {
    margin-bottom: 3rem;
}

.about-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.about-section .section-title .lead {
    font-size: 1.25rem;
    color: #555;
}

.about-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 10px;
}

.service-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-section .section-title h2 {
        font-size: 2rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-section .section-title .lead {
        font-size: 1rem;
    }

    .service-item {
        padding: 12px;
    }

    .service-item i {
        font-size: 1.2rem;
    }

    .service-item span {
        font-size: 0.9rem;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.products-section .section-title {
    margin-bottom: 2.5rem;
}

.products-section .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.products-section .section-title p {
    font-size: 1.1rem;
    color: #555;
}

.product-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-content {
    padding: 15px;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 0.8rem;
}

.product-specs li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.4rem;
}

.product-specs li strong {
    color: #333;
}

.product-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* More Card */
.more-card {
    text-decoration: none;
    background-color: var(--primary-blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

.more-card:hover {
    background-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.more-content {
    padding: 15px;
    color: #fff;
}

.more-content i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.more-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.more-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .more-card a{
        text-decoration: none;
    }
    .products-section {
        padding: 40px 0;
    }

    .products-section .section-title h2 {
        font-size: 1.8rem;
    }

    .products-section .section-title p {
        font-size: 0.95rem;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .product-image img {
        height: 140px;
    }
}

@media (max-width: 576px) {
        .more-card a{
        text-decoration: none;
    }
    .product-content {
        padding: 12px;
    }

    .product-specs li {
        font-size: 0.85rem;
    }

    .more-content i {
        font-size: 1.8rem;
    }

    .more-content h3 {
        font-size: 1.2rem;
    }
}

.product-img{
    width:250px;
    height: auto;
}

/*Iletisim*/
  .contact-page {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .contact-info-box {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 25px rgba(0,0,0,0.05);
            height: 100%;
        }

        .contact-info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info-item i {
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 16px;
        }

        .contact-info-content h5 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--topbar-bg);
        }

        .contact-info-content p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }

        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 25px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            height: 50px;
            border: 1px solid #eee;
            border-radius: 5px;
            padding: 0 15px;
            font-size: 14px;
        }

        textarea.form-control {
            height: 150px;
            padding: 15px;
            resize: none;
        }

        .submit-btn {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--primary-blue);
        }

        .map-container {
            margin-top: 50px;
            border-radius: 10px;
            overflow: hidden;
            height: 400px;
        }
        .container {
            max-width: 1200px;
        }
        .breadcrumb {
            background: none;
            padding: 0.75rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: #6c757d;
        }
        .list-group-item {
            border: none;
            border-radius: 8px;
            margin-bottom: 8px;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .list-group-item a {
            color: #333;
            font-weight: 500;
        }
        .subcategory-list {
            margin-bottom: 20px;
        }
        .subcategory-list .btn {
            border-radius: 6px;
            margin: 5px 5px 5px 0;
            font-size: 0.9rem;
            padding: 8px 15px;
            border: 1px solid #ced4da;
            background-color: #fff;
            color: #333;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        .subcategory-list .btn.active,
        .subcategory-list .btn:hover {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
        }
        .product-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 15px;
            transition: transform 0.2s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-image {
            position: relative;
            border-radius: 10px;
            background: #f8f9fa;
            overflow: hidden;
            margin-bottom: 15px;
        }
        .product-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .product-content {
            flex-grow: 1;
        }
        .product-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .product-content p {
            font-size: 0.9rem;
            color: #4a4a4a;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        .product-content .btn {
            font-size: 0.9rem;
            padding: 8px 15px;
            border-radius: 6px;
        }
        .pagination-wrapper {
            margin-top: 40px;
            margin-bottom: 20px;
        }
        .pagination {
            justify-content: center;
        }
        .page-link {
            color: #007bff;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            margin: 0 2px;
            padding: 8px 12px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .page-link:hover {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
            transform: translateY(-1px);
        }
        .page-item.active .page-link {
            background-color: #007bff;
            border-color: #007bff;
        }
        .page-item.disabled .page-link {
            color: #6c757d;
            background-color: #fff;
            border-color: #dee2e6;
        }
        .products-info {
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .products-info h6 {
            margin: 0;
            color: #333;
            font-weight: 500;
        }
        .products-info small {
            color: #666;
        }
        @media (max-width: 992px) {
            .product-content h5 {
                font-size: 1rem;
            }
            .product-content p {
                font-size: 0.85rem;
            }
            .product-image img {
                height: 180px;
            }
        }
        @media (max-width: 768px) {
            .product-content h5 {
                font-size: 0.95rem;
            }
            .product-content p {
                font-size: 0.8rem;
            }
            .product-image img {
                height: 150px;
            }
            .list-group {
                margin-bottom: 30px;
            }
            .subcategory-list .btn {
                font-size: 0.85rem;
                padding: 6px 12px;
            }
            .page-link {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 576px) {
            .product-card {
                padding: 10px;
            }
            .product-content h5 {
                font-size: 0.9rem;
            }
            .product-content p {
                font-size: 0.75rem;
            }
            .product-image img {
                height: 120px;
            }
            .subcategory-list .btn {
                font-size: 0.8rem;
                padding: 5px 10px;
            }
            .page-link {
                padding: 5px 8px;
                font-size: 0.8rem;
            }
            .products-info {
                padding: 10px 15px;
            }
        } 
        .list-group-item {
            border: none;
            border-radius: 8px;
            margin-bottom: 8px;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .list-group-item a {
            color: #333;
            font-weight: 500;
        }

        .project-detail-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
        }
        .project-image {
            position: relative;
            border-radius: 10px;
            background: #f8f9fa;
            overflow: hidden;
        }
        .project-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .zoom-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            cursor: pointer;
        }
        .project-image:hover .zoom-overlay {
            opacity: 1;
        }
        .zoom-overlay i {
            color: #fff;
            font-size: 1.5rem;
        }
        .project-content {
            padding: 20px 0;
        }
        .project-content h1 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
            letter-spacing: -0.5px;
        }
        .project-content p {
            font-size: 1.15rem;
            color: #4a4a4a;
            line-height: 1.9;
            margin-bottom: 30px;
            font-weight: 400;
            background: #f9f9f9;
            padding: 15px 20px;
            border-left: 4px solid #007bff;
            border-radius: 4px;
        }
        .variation-table {
            margin-top: 25px;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .variation-table h5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }
        .variation-table table {
            width: 100%;
            border-collapse: collapse;
        }
        .variation-table th,
        .variation-table td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        .variation-table th {
            font-weight: 500;
            color: #333;
            width: 30%;
        }
        .variation-table td {
            font-size: 1rem;
            color: #4a4a4a;
        }
        @media (max-width: 992px) {
            .project-content h1 {
                font-size: 1.9rem;
            }
            .project-content p {
                font-size: 1.05rem;
            }
            .project-image {
                margin-bottom: 20px;
            }
        }
        @media (max-width: 768px) {
            .project-content h1 {
                font-size: 1.7rem;
            }
            .project-content p {
                font-size: 1rem;
            }
            .list-group {
                margin-bottom: 30px;
            }
            .variation-table th,
            .variation-table td {
                display: block;
                width: 100%;
                text-align: left;
            }
            .variation-table th {
                margin-bottom: 5px;
            }
        }
        @media (max-width: 576px) {
            .project-detail-card {
                padding: 20px;
            }
            .project-content h1 {
                font-size: 1.5rem;
            }
            .project-content p {
                font-size: 0.95rem;
                padding: 10px 15px;
            }
            .variation-table {
                padding: 15px;
            }
            .variation-table h5 {
                font-size: 1.1rem;
            }
        }     
             :root {
            --topbar-bg-one: #282F3B;
            --topbar-bg: #515151;
            --primary-red: #CD2824;
            --primary-blue: #0F8BCC;
            --footer-bg: #1E2430;
            --font-family: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-family);
            background-color: #f8f9fa;
        }

        .page-header {
            background: var(--primary-red);
            padding: 60px 0;
            margin-bottom: 60px;
            position: relative;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(to right bottom, transparent 49%, #f8f9fa 50%);
        }

        .page-header h1 {
            color: white;
            font-weight: 600;
            margin: 0;
            text-align: center;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            position: relative;
            overflow: hidden;
            padding-top: 66.67%; /* 3:2 aspect ratio */
        }

        .project-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .project-content {
            padding: 25px;
        }

        .project-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--topbar-bg);
            margin-bottom: 15px;
        }

        .project-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .project-category {
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 14px;
        }

        .project-date {
            color: #999;
            font-size: 14px;
        }

        .project-link {
            text-decoration: none;
            color: inherit;
        }

        .project-link:hover {
            color: inherit;
        }

        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .page-header {
                padding: 40px 0;
            }
            
            .project-title {
                font-size: 18px;
            }
        }  


  .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .product-image {
            height: 220px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }
        .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #ffffff; /* boşluk varsa arka plan */
    transition: transform 0.4s ease;
}

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        .card-text {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .btn-danger {
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 500;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-danger:hover {
            background-color: #c82333;
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .product-card {
                margin-bottom: 20px;
            }
            .product-image {
                height: 180px;
            }
            .card-title {
                font-size: 1.2rem;
            }
            .card-text {
                font-size: 0.9rem;
            }
        }
        @media (max-width: 576px) {
            .product-image {
                height: 150px;
            }
            .card-title {
                font-size: 1.1rem;
            }
            .card-text {
                font-size: 0.85rem;
            }
            .btn-danger {
                padding: 8px 16px;
            }
        }        

 a.glink .nturl .notranslate{
   margin-left:10px!important;
 }       