 /* --- SAME CSS STYLES (EXACT COPY) --- */
        :root {
            --dark-bg: #0B1120;       
            --primary: #0f172a;       
            --accent: #Eab308;        /* Gold */
            --text-light: #cbd5e1;    
            --white: #ffffff;
            --glass: rgba(15, 23, 42, 0.85);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Manrope', sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            color: var(--white);
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        h3 {font-size: 21px;}
        h4 {font-size: 17px;}

        a { text-decoration: none; transition: 0.3s; color: #000;}
        ul { list-style: none; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        .logo img {
            max-height: 75px;
            width: auto; 
            display: block;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span { color: var(--accent); }
        
        /* --- GELİŞMİŞ ANİMASYON AYARLARI --- */

        /* Öğelerin başlangıç hali (Görünmez ve aşağıda) */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1); /* Çok daha yumuşak bir matematik */
        }
        
        /* Görünür hali (Script ekleyecek) */
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
            color: #e9e9e9;
        }

        .sector-title {color: #0f172a !important;}
        
        /* Lenis Kaydırma Motoru Ayarları */
        html.lenis, html.lenis body {
          height: auto;
        }
        .lenis.lenis-smooth {
          scroll-behavior: auto !important; /* Tarayıcıyı zorla sustur */
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
          overscroll-behavior: contain;
        }
        .lenis.lenis-stopped {
          overflow: hidden;
        }

        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: var(--text-light); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .nav-links a:hover { color: var(--accent); }

        .lang-switch {
            border: 1px solid rgba(255,255,255,0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--white);
        }

        /* --- SLIDER (HERO) --- */
        .hero-slider {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .slide.active { opacity: 1; z-index: 1; }

        /* Overlay */
        .slide::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(11, 17, 32, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding-left: 24px;
            margin: 0 auto;
            width: 100%;
            left: 23%;
            transform: translateX(-50%);
        }

        .hero-content h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: 0.8s ease-out 0.5s;
        }
        
        .slide.active .hero-content h1 { opacity: 1; transform: translateY(0); }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            transition: 0.8s ease-out 0.8s;
        }

        .slide.active .hero-content p { opacity: 1; transform: translateY(0); }

        .tagline {
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 15px;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark-bg);
            padding: 16px 40px;
            font-weight: 700;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            opacity: 0;
            transition: 0.3s;
            animation: none;
        }
        
        .slide.active .btn-primary {
            opacity: 1;
            transition: opacity 0.8s ease-out 1s, transform 0.3s; 
        }
        .btn-primary:hover { background: #fff; transform: translateY(-3px); }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 50px;
            right: 50px;
            z-index: 10;
            display: flex;
            gap: 20px;
        }
        .control-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .control-btn:hover { background: var(--accent); color: var(--dark-bg); border-color: var(--accent); }

        /* --- TRUST BAR --- */
        .trust-bar {
            background: var(--primary);
            padding: 60px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--white); display: block; }
        .stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }

        /* --- SECTORS --- */
        section { padding: 120px 0; }
        .sectors { background: #ffffff; }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        .section-header h2 { font-size: 3rem; margin-bottom: 15px; }
        
        .sector-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .sector-card {
            background: var(--primary);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 40px;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        .sector-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: var(--accent);
            transform: translateY(-10px);
        }

        .sector-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 25px;
        }

        .sector-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .sector-card p { font-size: 0.95rem; opacity: 0.7; margin-bottom: 20px; }
        .link-arrow { color: var(--white); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
        .link-arrow:hover { gap: 10px; color: var(--accent); }

        /* --- COMMON --- */
        .about-grid, .contact-grid { display: grid; gap: 60px; }
        .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
        .contact-grid { grid-template-columns: 1fr 1.5fr; }
        
        .about-img img { width: 100%; border-radius: 4px; filter: grayscale(20%); transition: 0.5s; }
        .about-img:hover img { filter: grayscale(0); }
        
        .contact-info-box { background: var(--accent); color: var(--dark-bg); padding: 50px; border-radius: 4px; }
        .contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; margin-bottom: 20px; }

        /* --- FOOTER --- */
        footer { background: #000; padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: rgba(255,255,255,0.5); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .sector-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hero-content {left: 50%;}
            .sector-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.5rem; }
            .navbar .nav-links { display: none; }
            .about-grid, .stats-grid, .contact-grid { grid-template-columns: 1fr; }
            .slider-controls { bottom: 20px; right: 20px; }
        }

        /* --- WHATSAPP BUTTON --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            left: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #1ebd53;
            transform: scale(1.1);
            color: #fff;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                left: 20px;
                font-size: 28px;
            }
        }


/* Bölüm Genel Ayarları */
.single-catalog-section {
    padding: 80px 0;
    display: flex;
    background-color: var(--dark-bg);
    align-items: center;
    justify-content: center;
}

/* Yan Yana Düzen (Flexbox) */
.catalog-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- Sol Taraf: Görsel --- */
.catalog-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px; /* 3D efekti için derinlik */
}

.image-container img {
    max-width: 100%;
    width: 350px; /* Görsel genişliği */
    border-radius: 10px;
    /* Kitap gibi durması için gölge ve döndürme */
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15), -5px 0 20px rgba(0,0,0,0.05);
    transform: rotateY(-15deg); 
    transition: all 0.5s ease;
    cursor: pointer;
}

/* Mouse üzerine gelince görsel düzleşsin */
.image-container img:hover {
    transform: rotateY(0deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* --- Sağ Taraf: Metin --- */
.catalog-text-area {
    flex: 1;
}

.sub-title {
    color: #2563eb; /* Mavi tonu */
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.catalog-text-area h2 {
    font-size: 2.5rem;
    color: #FFF;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.catalog-text-area p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* PDF Butonu Tasarımı */
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2563eb;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-pdf:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* --- Mobil Uyumluluk (Responsive) --- */
@media (max-width: 768px) {
    .catalog-wrapper {
        flex-direction: column; /* Mobilde alt alta olsun */
        text-align: center;
        gap: 40px;
    }
    
    .image-container img {
        width: 280px;
        transform: rotateY(0deg); /* Mobilde düz dursun */
    }

    .catalog-text-area h2 {
        font-size: 2rem;
    }
}

/* --- CHATBOT GENEL KAPLAYICI --- */
/* Z-index değerini çok yüksek veriyoruz ki her şeyin üstünde kalsın */
.chat-btn, .chat-screen, .chat-tooltip {
    z-index: 9999 !important; 
}

/* 1. YUVARLAK BUTON (SABİT) */
.chat-btn {
    position: fixed; /* Sayfaya kilitler */
    bottom: 25px;    /* Alttan boşluk */
    right: 25px;     /* Sağdan boşluk */
    width: 65px;
    height: 65px;
    background-color: #2563eb; /* Bilgin Mavisi */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-btn:hover {
    transform: scale(1.1); /* Üzerine gelince büyüsün */
    background-color: #1d4ed8;
}

/* 2. SOHBET PENCERESİ (SABİT) */
.chat-screen {
    position: fixed; /* Sayfaya kilitler */
    bottom: 100px;   /* Butonun hemen üzerinde dursun */
    right: 25px;     /* Sağ hizası butonla aynı olsun */
    width: 380px;    /* Pencere genişliği */
    height: 500px;   /* Pencere yüksekliği */
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;   /* Başlangıçta gizli */
    flex-direction: column;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Header Tasarımı */
.chat-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mesaj Alanı */
.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto; /* Mesajlar taşarsa kaydırma çubuğu çıksın */
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mesaj Balonları */
.message {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.bot-message {
    background-color: #ffffff;
    color: #334155;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-message {
    background-color: #2563eb;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
}

/* Input Alanı */
.chat-footer {
    padding: 15px;
    background-color: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-footer input:focus {
    border-color: #2563eb;
}

.chat-footer button {
    background-color: #2563eb;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chat-footer button:hover {
    background-color: #1d4ed8;
}

/* 3. KONUŞMA BALONCUĞU (TOOLTIP) */
.chat-tooltip {
    position: fixed;
    bottom: 100px; /* Butonun üzerinde */
    right: 25px;
    background-color: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none; /* JS ile açılacak */
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    animation: floatMsg 3s ease-in-out infinite; /* Sallanma efekti */
}

.tooltip-text {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    cursor: pointer;
}

.tooltip-close {
    color: #94a3b8;
    cursor: pointer;
    font-weight: bold;
}

/* Sallanma Animasyonu */
@keyframes floatMsg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- MOBİL UYUMLULUK --- */
/* Telefondan girenler için ekranı kaplamasın ama düzgün dursun */
@media (max-width: 480px) {
    .chat-screen {
        width: 90%; /* Ekranın %90'ını kaplasın */
        right: 5%;  /* Ortalamak için */
        bottom: 100px;
        height: 60vh; /* Ekran yüksekliğinin %60'ı */
    }
    
    .chat-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .chat-tooltip {
        right: 15px;
        bottom: 80px;
    }
}

/* --- 1. KAPSAYICI KUTU (Tüm hizalamayı bu yapar) --- */
.chat-widget-wrapper {
    position: fixed; /* Ekrana sabitleyen kısım BURASI */
    bottom: 25px;
    right: 25px;
    display: flex;   /* Yan yana dizilmelerini sağlar */
    align-items: center; /* Dikeyde ortalar */
    gap: 15px;       /* Yazı ile Buton arasındaki boşluk */
    z-index: 9999;   /* En üstte dursun */
}

/* --- 2. YAZI BALONCUĞU --- */
.chat-bubble {
    background-color: white;
    color: #334155;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    transition: transform 0.3s ease;
    /* ÖNEMLİ: Burada position: fixed OLMAMALI */
}

.chat-bubble:hover {
    transform: scale(1.05);
    color: #2563eb;
}

/* --- 3. YUVARLAK BUTON --- */
.chat-btn {
    /* ÖNEMLİ: position: fixed'i BURADAN KALDIRDIK */
    position: relative; 
    width: 65px;
    height: 65px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chat-btn:hover {
    transform: scale(1.1);
    background-color: #1d4ed8;
}

/* --- 4. SOHBET PENCERESİ --- */
.chat-screen {
    position: fixed;
    bottom: 0; /* Buton grubunun biraz üzerinde başlasın */
    right: 25px;
    width: 360px;
    height: 480px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none; /* JS ile açılacak */
    flex-direction: column;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    z-index: 9999;
}

/* --- MOBİL DÜZENLEME --- */
@media (max-width: 480px) {
    /* Mobilde yazı çok yer kaplamasın diye gizleyelim */
    .chat-bubble {
        display: none;
    }
    /* Mobilde pencere ekranı kaplamasın */
    .chat-screen {
        width: 70%;
        right: 5%;
    }
}

/* Animasyon Tanımı */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* MOBİL AYARI */
@media (max-width: 480px) {
    /* Mobilde ekranda çok yer kaplamasın diye yazıyı gizleyebiliriz */
    .chat-bubble {
        display: none;
    }
}

/* --- MOBİL KLAVYE VE TASARIM DÜZELTMESİ --- */
@media (max-width: 480px) {
    .chat-screen {
        width: 95%;       /* Ekranın %95'ini kapla */
        right: 2.5%;      /* Ortala */
        
        /* Sabit yükseklik YERİNE esnek yükseklik kullanıyoruz */
        height: auto;     
        max-height: 80vh; /* Ekranın en fazla %80'i kadar uzasın (Klavye açılınca kısalır) */
        
        bottom: 10px;     /* Alttan biraz boşluk */
        border-radius: 15px;
        display: none;    /* JS ile flex yapılacak */
        flex-direction: column;
    }

    /* İPhone'da inputa tıklayınca ekranın zoom yapmasını engelle */
    .chat-footer input {
        font-size: 16px !important; /* 16px altı olunca iPhone zoom yapar */
    }

    /* Klavye açılınca mesaj alanı sıkışırsa kaydırma çubuğu çıksın */
    .chat-body {
        flex: 1;
        min-height: 0; /* Flexbox taşma sorunu için fix */
    }
}

/* --- MOBİL İÇİN ÖZEL KONUM AYARI --- */
@media (max-width: 480px) {
    
    /* 1. İkonu ve Yazıyı Aşağı İndir */
    .chat-widget-wrapper {
        bottom: 10px !important; /* 25px idi, 10px yaparak aşağı çektik */
        right: 15px;  /* Sağdan da biraz yanaştırdık (İsteğe bağlı) */
    }

    /* 2. Buton Boyutunu Mobilde Biraz Küçült (İstersen) */
    .chat-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}


/* --- Sektörler Bölümü CSS --- */

/* Grid Yapısı (Eğer mevcut değilse) */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Kartın Genel Yapısı */
.sector-card {
    background: var(--primary);
    border-radius: 12px; /* Köşeleri yuvarlat */
    overflow: hidden; /* Görselin köşelerden taşmasını engelle */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Hafif gölge */
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* Hover Durumu: Kart yukarı kalkar */
.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: #0f172a;
    cursor: pointer;
}

/* Görsel Kapsayıcısı */
.card-img-wrapper {
    height: 220px; /* Tüm görseller için sabit yükseklik */
    overflow: hidden; /* Taşmaları gizle */
    position: relative;
}

/* Görselin Kendisi */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli kutuya orantılı sığdır, asla sündürme */
    transition: transform 0.5s ease; /* Yumuşak geçiş */
}

/* Hover Durumu: Görsel zoom yapar */
.sector-card:hover .card-img {
    transform: scale(1.1); /* %10 büyüt */
}

/* İçerik Kapsayıcısı (Yazılar burada) */
.card-content {
    padding: 25px;
    text-align: left; /* Yazıları sola hizala (İsteğe bağlı) */
}

.card-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #d3d3d3; /* Başlık Rengi */
    font-size: 1.4rem;
    border-bottom: 1px solid #Eab308;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link Stili */
.link-arrow {
    color: var(--accent); /* Veya turuncu rengin kodu örn: #e67e22 */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px; /* Ok işareti sağa kayar */
}

/* CSS Dosyana Ekle */
.bg-pattern-dots {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
    background-size: 24px 24px; /* Noktaların sıklığını buradan ayarlayabilirsin */
}

/* CSS Dosyana Ekle */
.bg-pattern-grid {
    background-color: #ffffff;
    background-image: 
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 40px 40px; /* Karelerin büyüklüğü */
}

/* CSS Dosyana Ekle */
.bg-pattern-diagonal {
    background-color: #ffffff;
    background-image: repeating-linear-gradient(
        45deg,
        #f9f9f9,
        #f9f9f9 10px,
        #ffffff 10px,
        #ffffff 20px
    );
}