 /* Genel Ayarlar */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Arial', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }
	
	 .containerr {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
	
	/* Mobil İçin Genel Konteyner Ayarı */
		@media (max-width: 768px) {
		.container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
}

    /* Header (Üst Kısım) */
    .site-header {
        background: #f8f9fa;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }


/* Logo Alanı */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}

/* Logodaki Link İçin (Alt Çizgiyi Kaldırma) */
.logo a {
    text-decoration: none !important; /* ALT ÇİZGİYİ KALDIR */
    border-bottom: none !important;
    outline: none;
    color: inherit;
}

/* H1 Başlığı İçin (Çizgi Kaldırma) */
.logo h1 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
	color: #333;
    text-decoration: none; /* ALT ÇİZGİYİ KALDIR */
}

/* Slogan */
.slogan {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
    text-align: right;
}

/* Tüm H1 ve A etiketlerinde alt çizgiyi kaldır */
h1, a {
    text-decoration: none !important;
    border-bottom: none !important;
}
/* Logo bitis */


    /* Menü */
    .main-menu ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .main-menu ul li {
        display: inline-block;
    }

    .main-menu ul li a {
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        color: #0078d4;
        padding: 8px 12px;
        transition: color 0.3s ease, background 0.3s ease;
        border-radius: 5px;
    }

    .main-menu ul li a:hover {
        background: #0078d4;
        color: white;
    }

    /* Mobil Uyum */
    @media (max-width: 768px) {
        .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .main-menu ul {
            margin-top: 10px;
            gap: 15px;
        }
    }
	

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: center;
    }

    /* Başlık Stilleri */
    .section-title {
        font-size: 28px;
        font-weight: bold;
        color: #0078d4;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 16px;
        color: #555;
        margin-bottom: 30px;
    }

    /* Özellikler Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .feature-item {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-item h3 {
        font-size: 18px;
        color: #0078d4;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
        color: #444;
        line-height: 1.5;
    }

    /* Hover Efekti */
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    /* Mobil Uyum */
    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }


    /* Özel Bilgi Kutusu */
    .hero-info-box {
        background: rgba(255, 255, 255, 0.15);
        display: inline-block;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-info-box span {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    /* Buton */
    .cta-button {
        display: inline-block;
        background: white;
        color: #0078D4;
        padding: 12px 25px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
        border-radius: 8px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .cta-button:hover {
        background: #ffcc00;
        color: #333;
    }

    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
        .hero-subtitle {
            font-size: 1rem;
        }
        .hero-info-box {
            font-size: 0.9rem;
        }
        .cta-button {
            font-size: 1rem;
        }
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .feature {
      background: white;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .feature h3 {
      color: #0078D4;
    }

    /* Demo Linkleri */
    .demo-section {
      text-align: center;
      margin-top: 40px;
      padding: 30px;
      background: #f4f4f4;
      border-radius: 8px;
    }

    .demo-links a {
      display: inline-block;
      margin: 10px;
      padding: 15px 30px;
      font-size: 1rem;
      color: white;
      background: #0078D4;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .demo-links a:hover {
      background: #005A9E;
    }

    /* İletişim Alanı */
    .contact {
      text-align: center;
      margin-top: 50px;
      padding: 50px;
      background: #003366;
      color: white;
    }

    .contact h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .contact-info {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .contact-info div {
      background: rgba(255, 255, 255, 0.2);
      padding: 20px;
      border-radius: 5px;
      min-width: 250px;
    }

    iframe {
      width: 100%;
      height: 300px;
      border: none;
      margin-top: 30px;
    }

    /* Responsive Tasarım */
    @media (max-width: 768px) {
      .features {
        grid-template-columns: 1fr;
      }

      .contact-info {
        flex-direction: column;
        align-items: center;
      }
    }

    /* Akordiyon (Sıkça Sorulan Sorular) */
    /* SSS Bölümü Genel Ayarlar */
    .faq-section {
        background-color: #f4f7fc;
        padding: 60px 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        margin: 40px auto;
        max-width: 1200px;
    }

    .faq-title {
        font-size: 2rem;
        color: #0078D4;
        font-weight: bold;
        margin-bottom: 30px;
    }

    /* SSS İçerik Alanı */
    .faq-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .faq-column {
        width: 48%;
    }

    .faq-item {
        background: white;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .faq-header {
        background: #0078D4;
        color: white;
        padding: 15px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background 0.3s;
        text-align: left;
    }

    .faq-header:hover {
        background: #005A9E;
    }

    .faq-content {
        display: none;
        padding: 15px;
        font-size: 1rem;
        background: #ffffff;
        text-align: left;
        border-top: 1px solid #ddd;
    }

    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .faq-container {
            flex-direction: column;
        }
        .faq-column {
            width: 100%;
        }
    }
	
	    /* Tanıtım Bölümü */
	.hero-section {
    background: linear-gradient(to right, #0078D4, #005A9E);
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin: 180px auto 40px; /* Üst boşluk ekleyerek aşağı indir */
    max-width: 1200px;
}

    .hero-content {
        max-width: 800px;
        margin: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    /* Özel Bilgi Kartları */
    .info-box-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .info-box {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.2);
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        color: white;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .info-box:hover {
        transform: scale(1.05);
        background: rgba(255, 255, 255, 0.3);
    }

    .info-icon {
        font-size: 1.5rem;
        margin-right: 10px;
    }

    /* Buton */
    .cta-button {
        display: inline-block;
        background: white;
        color: #0078D4;
        padding: 12px 25px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
        border-radius: 8px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .cta-button:hover {
        background: #ffcc00;
        color: #333;
    }

    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
        .hero-subtitle {
            font-size: 1rem;
        }
        .info-box-container {
            flex-direction: column;
            align-items: center;
        }
        .info-box {
            width: 100%;
            text-align: center;
        }
        .cta-button {
            font-size: 1rem;
        }
    }
	
	
	/* WhatsApp Butonu */
/* General Contact Button Styles */
.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking */
    gap: 20px; /* Increased spacing between buttons */
    z-index: 1000;
}

/* Button Styles */
.contact-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px; /* Increased size */
    height: 70px;
    border-radius: 50%;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    animation: pulse 1.2s infinite alternate; /* More eye-catching */
}

/* Icon Size */
.contact-button img {
    width: 40px;
    height: 40px;
}

/* Tooltip Text */
.contact-text {
    position: absolute;
    right: 85px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, right 0.3s ease-in-out;
    white-space: nowrap;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp {
    background-color: #25d366;
}

.whatsapp:hover .contact-text {
    opacity: 1;
    right: 95px;
}

/* Phone Button */
.phone {
    background-color: #007bff;
}

.phone:hover .contact-text {
    opacity: 1;
    right: 95px;
}

/* Hover Effect */
.contact-button:hover {
    transform: scale(1.15); /* More noticeable hover effect */
}

/* Eye-Catching Pulse Effect */
@keyframes pulse {
    0% { box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); }
}

/* Mobile Version */
@media (max-width: 768px) {
    .contact-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: column; /* Ensure stacking */
        gap: 25px; /* Increased spacing on mobile */
    }

    .contact-button {
        width: 60px;
        height: 60px;
    }

    .contact-button img {
        width: 35px;
        height: 35px;
    }

    .contact-text {
        font-size: 14px;
        padding: 8px 12px;
        right: 75px; /* Adjusted for mobile */
    }

    .contact-text::after {
        right: 25px;
    }
}
/* whatsapp buton son */

	
	/* footer baslangic */	
	.site-footer {
    background: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    margin-top: 0; /* İletişim bölümüyle birleşmesini sağlar */
    border-top: 3px solid #0078D4; /* Üst kısmına ince bir mavi çizgi ekleyerek görsel olarak ayrıştırır */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.footer-left p,
.footer-right p {
    margin: 5px 0;
}

.footer-right {
    text-align: right;
}

.footer-left a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

.footer-left a:hover {
    text-decoration: underline;
}

/* Responsive (Mobil Uyumlu) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
        margin-top: 10px;
    }
}

/* footer bitis */

/* KDV renk ayari */
.tax-note {
    font-size: 14px;
    color: #dc3545; /* Kırmızı renk */
    font-weight: bold;
    margin-top: 5px;
}
/* KDV renk ayari bitis */


/* Tooltip Genel Ayarları */
.tooltip {
    position: relative;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}

/* Tooltip Metni */
.tooltip .tooltip-text {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 16px;
    position: absolute;
    z-index: 1000;
    bottom: 150%; /* Yukarıya daha fazla boşluk bırak */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-size: 12px;
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
    max-width: 620px;
    min-width: 255px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    text-align: right;
}

/* Tooltip Ok İşareti */
.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

/* Tooltip Açıldığında Görünür Olur */
.tooltip:hover .tooltip-text,
.tooltip:focus .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tooltip .tooltip-text {
        bottom: 160%; /* Mobilde daha fazla yukarı boşluk */
        font-size: 12px;
        padding: 10px 12px;
        max-width: 290px;
        min-width: 210px;
    }

    .tooltip .tooltip-text::after {
        top: 100%;
        left: 50%;
        margin-left: -6px;
        border-width: 6px;
    }
}
