/* slogan */
.header-logo-container {
    width: 250px; /* Kapsayıcı genişliğini ayarla, ihtiyacına göre değiştirebilirsin */
}

.header-slogan {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.2rem; /* Yazı boyutunu ayarla */
    font-weight: 500;
    color: #1c3c58;
    text-align: center;
}
/* banner  */
/* Özel renkler ve stiller */
.custom-overlay-navy {
    background: linear-gradient(135deg, rgba(25, 42, 78, 0.85), rgba(30, 50, 90, 0.8)) !important;
}

.custom-svg-fill-orange {
    fill: #ff6b35;
}

.custom-highlight-orange {
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    color: white !important;
    border-radius: 8px;
    padding: 8px 15px !important;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-custom-orange {
    background: linear-gradient(45deg, #ff6b35, #ff8c42) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-custom-orange:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6) !important;
    color: white !important;
}

.btn-custom-orange:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-custom-orange:hover:before {
    left: 100%;
}

.title-shadow {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
/* banner bitiş  */
/* hakkımızda index css kodları  */
.mbs-hero-section {
    height: 60vh;
background: linear-gradient(45deg, rgba(25, 25, 25, 0.7), rgba(70, 130, 180, 0.6)),
    url('<?= base_url("uploads/title/hakkimizda.jpg") ?>');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mbs-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
                transparent,
                transparent 2px,
                rgba(255, 255, 255, 0.05) 2px,
                rgba(255, 255, 255, 0.05) 4px);
    animation: mbs-steelPattern 20s linear infinite;
}

@keyframes mbs-steelPattern {
    0% {
        transform: translateX(-50px) translateY(-50px);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

.mbs-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.mbs-hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: mbs-pulse 2s infinite;
}

@keyframes mbs-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.mbs-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: mbs-slideInDown 1s ease-out;
}

.mbs-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: mbs-slideInUp 1s ease-out 0.3s both;
}

@keyframes mbs-slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mbs-slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Section */
.mbs-main-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.mbs-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.mbs-content-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    overflow: hidden;
    animation: mbs-fadeInUp 0.8s ease-out;
}

.mbs-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4682b4, #ff6b35, #708090);
}

@keyframes mbs-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mbs-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.mbs-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(45deg, #4682b4, #ff6b35);
    border-radius: 2px;
}

.mbs-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
    text-align: justify;
}

.mbs-content-text p {
    margin-bottom: 20px;
}

.mbs-content-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Features Grid */
.mbs-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.mbs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mbs-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mbs-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mbs-feature-card:hover::before {
    left: 100%;
}

.mbs-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mbs-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: mbs-iconFloat 3s ease-in-out infinite;
}

@keyframes mbs-iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.mbs-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.mbs-feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Stats Section */
.mbs-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mbs-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px);
    animation: mbs-statsPattern 15s linear infinite;
}

@keyframes mbs-statsPattern {
    0% {
        transform: translateX(-40px);
    }
    100% {
        transform: translateX(40px);
    }
}

.mbs-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mbs-stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.mbs-stat-item:hover {
    transform: scale(1.05);
}

.mbs-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.mbs-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.mbs-cta-section {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.mbs-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #1d3c58;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin-top: 30px;
}

.mbs-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .mbs-hero-title {
        font-size: 2.5rem;
    }
    .mbs-hero-subtitle {
        font-size: 1.1rem;
    }
    .mbs-content-card {
        padding: 30px 20px;
    }
    .mbs-section-title {
        font-size: 2rem;
    }
    .mbs-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mbs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .mbs-hero-title {
        font-size: 2rem;
    }
    .mbs-content-card {
        padding: 25px 15px;
    }
    .mbs-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.mbs-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.mbs-animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* hakkımızda index css kodları bitiş  */



/* kullanım alanaları */

   .kullanim-alanlari {
            padding: 60px 20px;
            margin: 40px 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #ff6b35, #f7931e, #ff4757);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            letter-spacing: -1px;
        }

        .section-subtitle {
            color: #666666;
            font-size: 1.2rem;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        .kullanim-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .kullanim-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            height: 350px;
            background: #ffffff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .kullanim-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .image-container {
            position: relative;
            height: 75%;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .image-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 0.5s ease;
            transform: scale(1);
        }

        .kullanim-item:hover .image-bg {
            transform: scale(1.08);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .kullanim-item:hover .image-overlay {
            opacity: 1;
        }

        .icon-container {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .kullanim-item:hover .icon-container {
            transform: scale(1.1);
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .icon-container::before {
            font-size: 22px;
            transition: all 0.4s ease;
        }

        .kullanim-item:hover .icon-container::before {
            color: white;
        }

        .kullanim-item:nth-child(1) .icon-container::before { content: '🚢'; }
        .kullanim-item:nth-child(2) .icon-container::before { content: '☀️'; }
        .kullanim-item:nth-child(3) .icon-container::before { content: '🏗️'; }
        .kullanim-item:nth-child(4) .icon-container::before { content: '⚡'; }

        .content-overlay {
            position: relative;
            padding: 20px 15px;
            height: 25%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .kullanim-item h3 {
            color: #2d3748;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.2;
            transition: all 0.4s ease;
        }

        .kullanim-item:hover h3 {
            color: #ff6b35;
        }

        .kullanim-item p {
            color: #666666;
            font-size: 0.85rem;
            line-height: 1.4;
            transition: all 0.4s ease;
        }

        .kullanim-item:hover p {
            color: #4a5568;
        }

        .glow-effect {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                #ff6b35, #f7931e, #ff4757, #ff6b35);
            border-radius: 17px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
            animation: rotate 3s linear infinite;
        }

        .kullanim-item:hover .glow-effect {
            opacity: 0.7;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Design - Hepsi yan yana kalacak */
        @media (max-width: 1200px) {
            .kullanim-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
            
            .kullanim-item h3 {
                font-size: 1rem;
            }
            
            .kullanim-item p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 900px) {
            .kullanim-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }
            
            .kullanim-item {
                height: 300px;
            }
            
            .kullanim-item h3 {
                font-size: 0.9rem;
            }
            
            .kullanim-item p {
                font-size: 0.75rem;
            }
            
            .content-overlay {
                padding: 15px 10px;
            }
        }

        @media (max-width: 600px) {
            .kullanim-alanlari {
                padding: 40px 10px;
                margin: 30px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .kullanim-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
            
            .kullanim-item {
                height: 250px;
            }
            
            .kullanim-item h3 {
                font-size: 0.8rem;
            }
            
            .kullanim-item p {
                font-size: 0.7rem;
            }
            
            .content-overlay {
                padding: 10px 8px;
            }
            
            .icon-container {
                width: 40px;
                height: 40px;
                top: 10px;
                right: 10px;
            }
            
            .icon-container::before {
                font-size: 18px;
            }
        }

        /* Subtle animations */
        .kullanim-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .kullanim-item:nth-child(1) { animation-delay: 0.1s; }
        .kullanim-item:nth-child(2) { animation-delay: 0.2s; }
        .kullanim-item:nth-child(3) { animation-delay: 0.3s; }
        .kullanim-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* kullanım alanaları */


/* .main-kutu {
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background-color: white;
    border-top: 4px solid #1d3c57;
} */
/* ürünler */
/* Ana tasarım stilleri */
.urun-detay-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.content-wrapper {
  padding: 2rem;
  line-height: 1.7;
  color: #333;
}

/* Ana ürün resmi */
.urun-one-image {
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 8px;
}

/* Galeri resimleri */
.urun-multi-image {
  height: 120px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 6px;
}

/* Hover efektleri */
.img-thumbnail-hover-icon:hover .urun-one-image {
  transform: scale(1.02);
}

.img-thumbnail-hover-icon:hover .urun-multi-image {
  transform: scale(1.05);
}

/* Galeri başlığı */
.galeri-baslik {
  color: #495057;
  font-weight: 600;
  border-bottom: 3px solid #007bff;
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* Galeri öğeleri */
.galeri-item {
  position: relative;
  transition: all 0.3s ease;
}

.galeri-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 123, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 6px;
}

.galeri-item:hover::before {
  opacity: 1;
}

/* BASIT RESPONSIVE TABLO */
.content-wrapper table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 1.5rem 0 !important;
  background: white !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  display: table !important;
  table-layout: auto !important;
}

.content-wrapper table th {
  background: #f57c00 !important;
  color: white !important;
  padding: 8px 4px !important;
  text-align: center !important;
  font-weight: 600 !important;
  border: 1px solid #ddd !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
}

.content-wrapper table td {
  padding: 6px 4px !important;
  text-align: center !important;
  border: 1px solid #ddd !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
}

.content-wrapper table tr:nth-child(even) {
  background-color: #f8f9fa !important;
}

.content-wrapper table tr:hover {
  background-color: #e3f2fd !important;
}

/* İlk sütun özel stil */
.content-wrapper table th:first-child,
.content-wrapper table td:first-child {
  background-color: #f5f5f5 !important;
  font-weight: 600 !important;
  width: 15% !important;
}

.content-wrapper table th:first-child {
  background-color: #1a2c47 !important;
  color: white !important;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 1rem;
  }

  .content-wrapper table {
    font-size: 8px !important;
  }

  .content-wrapper table th {
    padding: 6px 2px !important;
    font-size: 8px !important;
  }

  .content-wrapper table td {
    padding: 4px 2px !important;
    font-size: 7px !important;
  }

  .content-wrapper table th:first-child,
  .content-wrapper table td:first-child {
    width: 20% !important;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 0.5rem;
  }

  .content-wrapper table th {
    padding: 4px 1px !important;
    font-size: 7px !important;
  }

  .content-wrapper table td {
    padding: 3px 1px !important;
    font-size: 6px !important;
  }

  .content-wrapper table th:first-child,
  .content-wrapper table td:first-child {
    width: 25% !important;
  }
}

/* Tablet ve büyük ekranlar */
@media (min-width: 769px) {
  .content-wrapper table th {
    font-size: 12px !important;
    padding: 10px 6px !important;
  }

  .content-wrapper table td {
    font-size: 11px !important;
    padding: 8px 6px !important;
  }
}

@media (min-width: 1200px) {
  .content-wrapper {
    padding: 2.5rem;
  }

  .content-wrapper table th {
    font-size: 13px !important;
    padding: 12px 8px !important;
  }

  .content-wrapper table td {
    font-size: 12px !important;
    padding: 10px 8px !important;
  }

  .urun-one-image {
    height: 320px;
  }
}

/* Loading durumu */
.urun-one-image:not([src]),
.urun-multi-image:not([src]) {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Sayfa Başlığı */
.urunler-detay-header {
    background: url('../../../uploads/title/title-urunler-detay.jpg') center/cover no-repeat;
    padding: 6rem 0;
    position: relative;
    text-align: center;
}

.urunler-detay-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.urunler-detay-title {
    position: relative;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
    z-index: 2;
}

/* İçerik */
.urunler-detay-content {
    background: #fff;
    margin: -3rem auto 3rem;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 3rem;
}

/* Ürünler Grid */
.urunler-detay-products {
    padding: 3rem 0;
    background: #f7f9fb;
}

.urunler-detay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Link wrapper - tam kutu kapsaması için */
.urun_div {
    display: block;
    text-decoration: none !important;
    color: inherit;
    height: 100%;
}

.urun_div:hover {
    text-decoration: none !important;
    color: inherit;
}

/* Kart */
.urunler-detay-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.urunler-detay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* Görsel */
.urunler-detay-img {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.urunler-detay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.urunler-detay-card:hover .urunler-detay-img img {
    transform: scale(1.08);
}

/* İçerik */
.urunler-detay-body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.urunler-detay-body h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0 auto;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: center;
}

.urunler-detay-body h3:hover {
    color: #e67e22;
}

/* Meta alanı */
.urunler-detay-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
    color: #7f8c8d;
    margin-top: 1rem;
    flex-shrink: 0;
}

.urunler-detay-arrow {
    width: 36px;
    height: 36px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease;
    flex-shrink: 0;
}

.urunler-detay-card:hover .urunler-detay-arrow {
    background: #2c3e50;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .urunler-detay-header {
        padding: 4rem 0;
    }
    
    .urunler-detay-title {
        font-size: 2rem;
    }
    
    .urunler-detay-content {
        padding: 2rem 1rem;
        margin: -2rem 1rem 2rem;
    }
    
    .urunler-detay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .urunler-detay-card {
        min-height: 280px;
    }
    
    .urunler-detay-img {
        height: 140px;
    }
    
    .urunler-detay-body {
        padding: 1rem;
        min-height: 140px;
    }
    
    .urunler-detay-body h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .urunler-detay-meta {
        font-size: 0.8rem;
    }
    
    .urunler-detay-arrow {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .urunler-detay-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .urunler-detay-card {
        min-height: 300px;
    }
    
    .urunler-detay-img {
        height: 160px;
    }
    
    .urunler-detay-body {
        padding: 1.2rem;
    }
    
    .urunler-detay-body h3 {
        font-size: 1.1rem;
    }
}
/* ürünler */
/* sss */
.faq-section {
    max-width: 900px;
    margin: 50px auto;
}

.faq-title {
    color: #FF4500;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.faq-section h2 {
    font-weight: 800;
    font-size: 32px;
    color: #0c2944;
    margin-bottom: 15px;
}

.faq-section p {
    color: #444;
    font-size: 16px;
    margin-bottom: 30px;
}

.faq-item {
    background: #fdfdfd;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    background: #1d3d5a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-weight: 600;
    color: #ffffff;
}

.faq-answer {
    display: none;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    background: #fff;
}

.faq-icon {
    font-weight: bold;
    font-size: 20px;
    color: #FF4500;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}
/* sss */
/* title */
.title-section-kalite {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-overlay-kalite {
    background: rgba(0, 0, 0, 0.4); /* karartma efekti */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-text-kalite {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
}

/* title son  */

/* Ürünler */

.product-grid {
    margin: 40px 0;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 350px;
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

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

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

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-icon {
    font-size: 40px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.2);
}

.product-content {
    padding: 25px 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #667eea;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Özel ikon simgeleri */
.icon-esitkenar::before { content: "⬜"; }
.icon-cesitkenar::before { content: "◤"; }
.icon-lama::before { content: "▬"; }
.icon-hollanda::before { content: "⊥"; }
.icon-beam::before { content: "⬡"; }
.icon-sac::before { content: "⊞"; }
.urun-one-image {
    width: 100%;
    height: 600px;
}
.urun-multi-image {
    width: 100%;
    height: 200px;
}
/* anasayfa hakkımızda */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item i {
    color: #0c4e8e;
    font-size: 0.9rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #0c4e8e, #1e5a96);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 78, 142, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 78, 142, 0.4);
    color: white;
    text-decoration: none;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(12, 78, 142, 0.1), rgba(255, 107, 53, 0.1));
    z-index: 1;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: white;
    font-size: 1.1rem;
}

.card-text h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.card-text p {
    font-size: 0.8rem;
    color: #5a6c7d;
    margin: 0;
    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .features-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .floating-card {
        position: static;
        margin-top: 15px;
        align-self: center;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
/* son */

/* anasayfa hizmetler  */

/* .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} */

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

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: fit-content;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8a1c75 0%, #c03a2b98 100%);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.95;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
    border-color: #e74c3c;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #e74c3c;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-title {
    color: white;
}

.feature-description {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.5;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 3;
}

.feature-card:hover .feature-badge {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
}

/* Animation delays for staggered effect */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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


/* anasayfa hizmetler son  */
/* slider */
.clean-slider-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clean-slider-container {
    width: 100%;
    height: 850px; 
    position: relative;
    touch-action: pan-y;
}

.clean-slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
    height: 100%;
}

.clean-slide {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.clean-slide-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Tüm alanı doldur */
    object-position: center;
}

@media screen and (max-width: 768px) {
    .clean-slider-container {
        height: 250px; /* Mobilde daha düşük yükseklik */
    }
    
    .clean-slide-img {
        object-fit: cover;
        height: 100%;
    }
    
    .clean-slider-area {
        padding-bottom: 10px;
    }
}



.a-slide-inner {
    position: relative;
    overflow: hidden;
}

.a-slide-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 1s ease;
}

.a-slide:hover .a-slide-img {
    transform: scale(1.05) rotate(0.5deg);
}

.a-slide-overlay {
    position: absolute;
    bottom: 15%;
    left: 10%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    animation: aFadeIn 1.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.a-slide:hover .a-slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes aSliderAnim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Sonsuz döngü için Owl tarzı slider'a dönüştürülebilir */
}

@media screen and (max-width: 768px) {
    .a-slide-overlay {
        font-size: 14px;
        padding: 15px 20px;
    }
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    color: #444;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(209, 233, 253, 0.877);
    transform: translateY(-50%) scale(1.05);
    color: #000;
}
/* Ürünler Bölümü Stilleri */
.products-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1c3c58 0%, #2a5a7a 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 60, 88, 0.95);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.sections-title {
    color: white;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 25px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.product-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
    rgba(28, 60, 88, 0.8),
    rgba(42, 90, 122, 0.6),
    rgba(28, 60, 88, 0.4));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

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

.product-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #1c3c58;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(28, 60, 88, 0.5);
    z-index: 2;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover .product-icon {
    background: #2a5a7a;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(28, 60, 88, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon svg {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
    position: relative;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    color: #1c3c58;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .product-title {
    color: #2a5a7a;
}

.product-description {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: white;
    color: #1c3c58;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: #f8f9fa;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
}

/* Animasyon için ekstra efektler */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.4s;
}
/* ürünler son */

.slider-arrow.left {
    left: 15px;
}

.slider-arrow.right {
    right: 15px;
}

.slider-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
@media screen and (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}
.clean-slide-overlay {
    position: absolute;
    bottom: 12%;
    left: 8%;
    background: rgba(255, 255, 255, 0.85); /* beyaz transparan arka plan */
    padding: 35px 45px;
    border-radius: 16px;
    max-width: 650px;
    color: #00283C; /* koyu mavi metin */
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    line-height: 1.8; /* yayık metin */
    animation: fadeInUp 1s ease forwards;
    z-index: 2;
}

.clean-slide-overlay h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #FF6B00; /* turuncu başlık */
    font-weight: 800;
}

.clean-slide-overlay p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00283C; /* koyu mavi */
}

.clean-slide-btn {
    display: inline-block;
    background: #00283C; /* koyu mavi buton */
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 40, 60, 0.2);
}

.clean-slide-btn:hover {
    background: #FF6B00; /* turuncu hover */
    color: #fff;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .clean-slide-overlay {
        padding: 20px 25px;
        bottom: 5%;
        left: 5%;
        max-width: 90%;
    }
    
    .clean-slide-overlay h2 {
        font-size: 26px;
    }
    
    .clean-slide-overlay p {
        font-size: 15px;
    }
}


/* slider-son */



p,
a,
b,
strong,
span,
h1,
h2,
h3,
h4,
h5,
h6,
div {
    font-family: "Albert Sans", sans-serif !important;
}
.table-div {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 10px;
}
.border-top-white {
    border-top: 1px solid #fff !important;
}
table {
    width: 100%;
    border: #444 solid 1px;
}
td,
th {
    border: #fff solid 1px;
    padding: 5px;
}
th {
    background-color: #528cd49f;
    color: #444;
}
td {
    background-color: #d8d3d388;
    color: #757070;
}
.d_mobil {
    display: flex !important;
}
@media (max-width:1000px) {
    .d_mobil {
        display: none !important;
    }
}
.footer_logo {
    width: 140px;
    max-width: 100%;
}
.modern-metal-btn {
    background: linear-gradient(145deg, #C4C4C4, #ABABAD, #8F8F8F);
    color: white; /* Yazı rengi beyaz */
    padding: 5px 8px; /* Daha az padding */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px; /* Daha küçük font */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.modern-metal-btn:hover {
    background: linear-gradient(145deg, #D5D5D5, #B5B5B7, #999);
    color: white; /* Yazı rengi beyaz */
    transform: translateY(-2px);
}
.modern-metal-btn:active {
    background: linear-gradient(145deg, #9E9E9E, #7F7F7F);
    color: white; /* Yazı rengi beyaz */
    transform: translateY(1px);
}
/* Beyaz Header ve Menü Ortalama CSS */

/* Header arka planını beyaz yap */
#header.header_bg,
#header .header-body.header_bg {
    /* background-color: #ffffff !important; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e9ecef;
}

/* Header container'ı genişlet ve menüyü ortala */
#header .header-container {
    max-width: 100%;
    padding: 0 20px;
}

#header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Menü bölümünü ortala */
#header .header-column:last-child {
    display: flex;
    justify-content: center;
}

/* Logo yüksekliğini düzenle */
#header .header-logo {
    display: flex;
    align-items: center;
    margin: 0;
}

/* Ana menü stillerini beyaz tema için düzenle */
#header .header-nav-main .nav-pills .dropdown > a {
    /* color: #b4b4b4 !important; */
    font-weight: 500;
    /* padding: 15px 20px; */
    transition: all 0.3s ease;
}

/* Dropdown menü stillerini düzenle */
#header .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
}

#header .dropdown-menu .dropdown-item {
    color: #b4b4b4;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

#header .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

#header .dropdown-menu .dropdown-item.active {
    background-color: #007bff;
    color: #ffffff;
}

/* Sticky header ayarları */
#header.header-effect-shrink.shrink .header-logo img.logo {
    max-height: 45px;
}

#header.header-effect-shrink.shrink .header-nav-main .nav-pills .dropdown > a {
    padding: 10px 15px;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    #header .header-column:last-child {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    #header .header-container {
        padding: 0 15px;
    }
}

/* Ekstra beyazlık için ek stiller */
#header {
    background: #ffffff !important;
}

#header::before,
#header::after {
    display: none;
}

/* Menü hover efektleri */
#header .nav-pills .dropdown {
    margin: 0 5px;
}

#header .nav-pills .dropdown > a {
    border-radius: 25px;
    margin: 0 2px;
}

/* Alt menü ok işaretleri */
#header .dropdown-menu .fas.fa-angle-right {
    color: #41c0ff;
}

/* Gölge efekti */
#header.golge {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

.banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.accordion-button {
    font-weight: bold;
    color: #444;
}
.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #444;
}
.accordion-button:focus {
    box-shadow: none;
}
.main_img {
    border-radius: 10px;
    width: 100%;
}
.kalam-regular {
    font-family: "Kalam", serif !important;
    font-weight: 400;
    font-style: normal;
}
.hr_bg {
    background-color: white;
}
/* universitelerimiz */
.universitelerimiz-div {
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out; /* Geçiş efekti */
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 400px;
    background-color: white;
}
.universitelerimiz-div-2 {
    min-height: 220px; /* shared */
}
.universitelerimiz-div:hover {
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.universitelerimiz-baslik {
    text-align: center;
    color: #444;
    font-weight: bold;
}
.universitelerimiz-baslik-2 {
    min-height: 52px; /* shared */
}
.universitelerimiz-img {
    width: 100%;
    padding: 4px;
}
/* universitelerimiz */
/* ekibimiz */
.ekibimiz-div {
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out; /* Geçiş efekti */
}
.ekibimiz-div:hover {
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.ekibimiz-baslik {
    text-align: center;
    color: #444;
    font-weight: bold;
}
.ekibimiz-img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid #444;
    padding: 4px;
}
/* ekibimiz */
/* blog_box */
.blog_box {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.blog_box:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.blog_box img {
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 260px; /* Görselin yüksekliğini sabitlemek için */
}
.blog_box .new_date {
    font-size: 1rem;
    color: black;
    text-align: center;
}
.blog_box hr {
    border-color: #ddd;
    margin: 10px 0;
}
.blog_box .new_title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    min-height: 52px;
}
/* blog_box */
/* blog */
.blog-images {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
/* blog */
/* galeri */
.galeri-images {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
/* galeri */
/* urun-resim */
.urun-resim {
    width: 100%;
}
/* urun-resim */
/* urun-galeri-resim */
.urun-galeri-resim {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
/* urun-galeri-resim */
/* sayilar sade */
.sayilar-sade {
    background: #41c0ff;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.sayilar-sade i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: white; /* Varsayılan ikon rengi */
    position: relative;
    z-index: 1; /* İkonun parlamadan etkilenmemesi için */
}
.sayilar-sade b,
.sayilar-sade span {
    position: relative;
    z-index: 1; /* Yazılar da parlamanın üstünde kalır */
}
/* sayilar sade */
/* sayilar */
.sayilar {
    position: relative; /* Parlama efektinin doğru çalışması için gerekli */
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(45deg, #41c0ff, #b3000c); /* Gradient arka plan */
    color: white; /* Varsayılan yazı rengi */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    cursor: pointer;
    overflow: hidden; /* Taşmaları gizle */
}
.sayilar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0; /* Arka planda kalır */
}
.sayilar:hover::before {
    opacity: 1;
    animation: shine 1s ease-in-out;
}
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
.sayilar i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: white; /* Varsayılan ikon rengi */
    position: relative;
    z-index: 1; /* İkonun parlamadan etkilenmemesi için */
}
.sayilar b,
.sayilar span {
    position: relative;
    z-index: 1; /* Yazılar da parlamanın üstünde kalır */
}
/* sayilar */
.k_kapsayici {
    position: relative;
    height: 100%;
}
.k_ici {
    position: sticky;
    top: 125px;
}
@media (max-width:1000px) {
    .k_kapsayici {
        position: unset;
        height: unset;
    }
    .k_ici {
        position: unset;
        top: unset;
    }
}
.float-img {
    float: left;
    width: 50%; /* Görsel genişliği */
    object-fit: cover;
    margin-right: 15px; /* Görsel ve metin arası boşluk */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Gölge efekti */
}
@media (max-width:1000px) {
    .float-img {
        width: 100%; /* Görsel genişliği */
    }
}
.pagination_d>strong,
.pagination_d>a {
    padding: 0.5rem;
    margin: 0.5rem;
    border: 1px solid #0f6071;
    background-color: white;
    color: #0f6071;
}
.pagination_d>strong:hover,
.pagination_d>a:hover {
    padding: 0.5rem;
    margin: 0.5rem;
    border: 1px solid #0f6071;
    background-color: #0f6071;
    color: white;
}
.sosyal_media_ikon {
    width: 40px;
    border-radius: 10px;
}
.text_color {
    color: #065f90 !important;
}
.link_1 {
    color: white;
}
.link_1:hover {
    color: white;
}
.header_bg {
    background-color: #d1e2f7 !important; 
}

.kalam-regular {
    font-family: "Kalam", cursive !important;
    font-weight: 400;
    font-style: normal;
}
/* blog */
/* Kapsayıcı ayarları */
.blog_kutu > div {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Resim stil ayarları */
.blog_kutu img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, filter 0.3s ease;
}
/* Başlık */
.blog_baslik {
    position: relative;
    margin-top: -90px;
    margin-bottom: 0px;
    color: white;
    font-size: 16px;
    background-color: #0f6071;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    opacity: 1; /* Normal durumda da görünür */
    transition: background-color 0.3s ease; /* Hover sırasında arka plan geçişi */
    font-weight: bold;
    min-height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Hover efekti */
.blog_kutu:hover > div {
    transform: scale(1.03); /* Hafif büyütme */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Gölgeyi artır */
}
.blog_kutu:hover img {
    transform: scale(1.05); /* Resmi daha belirgin büyüt */
    filter: brightness(0.8); /* Parlaklığı azalt */
}
/* blog */
/* Yüzen buton */
.floating-button-1 {
    background-color: #0f6071;
}
.floating-button-2 {
    background-color: #4dc247;
}
/* Kapsayıcı div stil ayarları */
.floating-button-container {
    position: fixed;
    bottom: 80px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Butonlar arasındaki boşluk */
    z-index: 1000;
}
/* Her bir buton stili */
.floating-button {
    background-color: white;
    color: #41c0ff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Hover efekti */
.floating-button:hover {
    color: #b3000c;
    transform: scale(1.1); /* Butonu biraz büyütür */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4); /* Gölgeyi yoğunlaştırır */
}
/* Yüzen buton */
.yakinlastirma {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #41c0ff;
}
.yakinlastirma img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}
.yakinlastirma:hover img {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.sponsors_bg_ayar {
    min-height: 718px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}
.programme_bg_ayar {
    min-height: 718px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer_buton {
    color: white;
    padding: 0.2rem 0rem;
    font-size: 18px;
}
.footer_buton:hover,
.footer_buton:focus {
    color: white;
    padding: 0.2rem 0rem;
}
.iletisim_buton {
    color: black;
    padding: 0.2rem 0rem;
    font-size: 18px;
}
.iletisim_buton:hover,
.iletisim_buton:focus {
    color: #41c0ff;
    padding: 0.2rem 0rem;
}
::placeholder {
    color: black !important;
}
.duyuru_hover:hover {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    cursor: pointer;
}
.input_hover:hover {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    cursor: pointer;
}
.menu_div {
    padding-top: 120px;
}
.title_border {
    width: 120px;
    border: 2px solid #0088cc;
}
/* wawe */
.w_header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, transparent 0%, transparent 100%);
    color: white;
}
.w_logo {
    width: 0px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}
.w_inner_header {
    height: 20px;
    width: 100%;
}
.w_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.w_waves {
    position: relative;
    width: 100%;
    height: 20px;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}
.w_parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.w_parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.w_parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.w_parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.w_parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
@media (max-width: 768px) {
    .w_waves {
        height: 40px;
        min-height: 40px;
    }
}
/* wawe */
.img_hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.img_hover:hover {
    -webkit-filter: unset;
    filter: unset;
}
/* side_btn */
.side_btn {
    background: white;
    color: black;
    border: 1px solid #41c0ff;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    /* Geçiş efektlerini ayarla */
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.3s ease;
}
.side_btn:hover {
    background: #41c0ff;
    color: white;
    border: 1px solid #41c0ff;
    /* Hover anında butonu hafifçe büyüt */
    transform: scale(1.05);
}
/* side_btn */
/* main_btn */
.main_btn {
    background: white;
    color: black;
    border: 1px solid #41c0ff;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    /* Geçiş efektlerini ayarla */
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.3s ease;
}
.main_btn:hover {
    background: #41c0ff;
    color: white;
    border: 1px solid #41c0ff;
    /* Hover anında butonu hafifçe büyüt */
    transform: scale(1.05);
}
/* main_btn */
.bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
a {
    text-decoration: none !important;
}
.slider_bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 20px;
    background-repeat: repeat-x;
    z-index: 30;
}
.a_k_r_w {
    width: 100px;
    max-width: 100%;
}
.urun_kart:hover .resim_hover_zoom {
    transition: all .5s;
    transform: scale(1.2);
}
.u_r_m_h {
    min-height: 300px;
}
.b_m_t {
    margin-top: -250px;
    background: rgba(33, 37, 41, 0.5);
}
.b_m_h {
    min-height: 250px;
}
.k_m_h {
    min-height: 250px;
}
/* i_b_b */
.i_b_b {
    border: 0.1rem solid white;
    color: white;
}
.i_b_b:hover {
    border: 0.1rem solid #10489c;
    color: white;
}
/* i_b_b */
/* foms */
/* ilt_radio */
.ilt_radio {
    border: 1px solid #1d2631;
    color: black;
    min-height: 30px;
    min-width: 30px;
}
.ilt_radio:hover,
.ilt_radio:focus {
    color: #123E7E;
    min-height: 30px;
    min-width: 30px;
}
/* ilt_radio */
/* ilt_checkbox */
.ilt_checkbox {
    border: 1px solid #1d2631;
    color: black;
    min-height: 30px;
    min-width: 30px;
}
.ilt_checkbox:hover,
.ilt_checkbox:focus {
    color: #123E7E;
    min-height: 30px;
    min-width: 30px;
}
/* ilt_checkbox */
/* ilt_inpt */
.ilt_inpt {
    border: 1px solid #1d2631;
    color: black;
    min-height: 50px;
}
.ilt_inpt:hover,
.ilt_inpt:focus {
    color: #123E7E;
    min-height: 50px;
}
/* ilt_inpt */
/* ilt_btn */
.ilt_btn,
.ilt_btn:visited {
    background-color: white;
    border: 1px solid #1d2631;
    color: #1d2631;
    min-height: 50px;
}
.ilt_btn:hover,
.ilt_btn:focus,
.ilt_btn:active,
.ilt_btn.aktif {
    background-color: #1d2631;
    color: white;
    min-height: 50px;
}
/* ilt_btn */
/* btn_link */
.btn_link:visited,
.btn_link {
    color: #0099e6 !important;
}
.btn_link:hover,
.btn_link:focus,
.btn_link:active {
    color: #123E7E !important;
}
/* btn_link */
input[type="checkbox"] {
    width: 30px;
    height: 30px;
}
/* forms */
/* kutu_3_hover */
.kutu_3_hover {
    border: 1px solid #dee2e6;
}
.kutu_3_hover:hover {
    border: 1px solid #dee2e6;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
/* kutu_3_hover */
.d_d_h {
    min-height: 54px;
}
/* mobil menü tam ekran*/
.alt_menu_btn_div {
    transition: 0.5s;
    /* border-top: 1px solid #41c0ff; */
    border-bottom: 1px solid #41c0ff;
}
.bg_1 {
    background-color: #dedede !important;
}
.bg_2 {
    background-color: #f5f5f5 !important;
}
.mobil_menu_overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #444;
    overflow-x: hidden;
    transition: 0.5s;
}
.mobil_menu_overlay_content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.mobil_menu_overlay a {
    padding: 4px 0px;
    margin: 4px 0px;
    text-decoration: none;
    font-size: 36px;
    color: #41c0ff;
    display: inline;
    transition: 0.3s;
}
.mobil_menu_overlay a.active {
    border-bottom: 2px solid #41c0ff;   
}
.mobil_menu_overlay a:hover, .mobil_menu_overlay a:focus {
    color: #41c0ff;
}
.mobil_menu_overlay .mobil_menu_closebtn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
}
#drop_down_1 {
    overflow-y: hidden;
    transition: 0.5s;
}
/* mobil menü tam ekran */
.bg_gri {
    background-color: #4D4944;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: white;
}
.dropdown-menu {
    min-width: 4rem;
}
.b_b_b_border {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.bg_grey {
    background-color: #dedede;
}
.bg_ayar {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* kutu_2_hover */
.kutu_2_hover {
    /* box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5); */
    /* background-color: rgba(18, 62, 126, 0.3); */
    color: white;
}
.kutu_2_hover:hover {
    /* box-shadow: 0px 0px 10px 0px rgba(29, 38, 49, 0.5); */
    /* background-color: rgba(18, 62, 126, 0.6); */
    color: white;
}
.kutu_2_h {
    min-height: 300px;
}
.kutu_2_m {
    margin-top: -300px;
}
.kutu_2_b {
    border-radius: 10px;
}
.g_u {
    display: none;
}
.kutu_2_hover:hover>.g_u {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(18, 62, 126, 0.6);
}
/* kutu_2_hover */
/* kutu_2_hover */
.kutu_1_hover {
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
.kutu_1_hover:hover {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(29, 38, 49, 0.5);
}
/* kutu_1_hover */
.border_color {
    border-color: #1d2631;
}
.g_r_h {
    height: 420px;
}
/* kartlar */
.kart {
    border: 1px solid #1d2631;
}
.kart>* {
    color: #1d2631;
    border: 1px solid #1d2631;
}
.kart:hover {
    border: 1px solid white;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    background-color: #1d2631;
}
.kart:hover>* {
    border: 1px solid white;
    color: white;
}
/* kartlar */
.e_i_h {
    height: 330px;
}
.a_m_i_w {
    width: 50px;
}
.main {
    min-height: 800px;
}
.o_border {
    border-top: 0.1rem solid rgb(255 255 255 / 50%);
}
.title_ikon {
    width: 30px;
    margin: 0em 1rem;
}
.title_alt_div_y {
    border: 1px solid #1d2631;
    width: 150px;
    max-width: 40%;
}
.title_alt_div_b {
    border: 1px solid #ffffff;
    width: 150px;
    max-width: 40%;
}
.title {
    color: #444;
}
.bg_btn {
    background-color: #0f6071 !important;
}
/* mobil menü buton */
#nav-icon3 {
    width: 46px;
    height: 38px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon3 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #41c0ff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
/* Icon 3 */
#nav-icon3 span:nth-child(1) {
    top: 0px;
}
#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 15px;
}
#nav-icon3 span:nth-child(4) {
    top: 30px;
}
#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* mobil menü buton */
a,
a:visited,
a:active,
a:hover,
a:focus,
a:focus-within,
a:focus-visible {
    text-decoration: none !important;
}
.golge {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 30%);
}
/* secim_rengi */
::-moz-selection {
    background:#1d2631;
    color:#fff;
}
::selection {
    background:#1d2631;
    color:#fff;
}
/* secim_rengi */
/* alt_menu_resimler */
.alt_menu_resimler_yazi {
    min-height: 60px;
}
.alt_menu_resimler_resim {
    max-height: 350px;
}
.mfp-counter {
    display: none;
}
.mfp-close,
.mfp-close-btn-in .mfp-close {
    font-size: 4rem;
}
/* alt_menu_resimler */
.ana_menu {
    display: flex;
}
.mobil_menu {
    display: none;
}
.vvideo {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
}
.logo {
    width: 100px;
    max-width: 100%;  
}
.hlogo {
    width: 200px;
    max-width: 100%;  
}
.f_logo {
    width: 100px;
    max-width: 100%;
}
.mini_logo {
    width: 180px;
}
@media (max-width:1000px) {
    .vvideo {
        width: 100%;
        min-height: 150px;
        object-fit: contain;
    }
    .ana_menu {
        display: none;
    }
    .mobil_menu {
        display: block;
    }
    .logo {
        width: 100px;
        max-width: 100%;
    }
    /* slider */
    #autoplay_video {
        height: auto;
    }
    .s_m_t_eksi {
        margin-top: -60px;
    }
    /* slider */
    .sponsors_bg_ayar {
        min-height: unset;
        background-size: contain;
    }
    
    .footer-link {
        color: #1c3c58 !important;
        transition: color 0.3s ease;
    }
    
    .footer-link:hover {
        color: #f20e06 !important;
    }
    
}               