﻿body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

/* Katman Hiyerarşisi */
.hero-area {
    z-index: 10;
    height: 90vh;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
}

.about-wrap {
    z-index: 20;
    background: #f8fafc;
    padding: 150px 0 200px;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    position: relative;
}

.partner-band {
    z-index: 30;
    background: #fff;
    padding: 60px 0;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    margin: -10vh 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.main-area {
    z-index: 40;
    background: #ffffff;
    margin-top: -5vh;
    padding: 120px 0;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    position: relative;
}

.counter-section {
    z-index: 50;
    background: #2563eb;
    color: white;
    padding: 120px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin-top: -5vh;
    position: relative;
}

.projects-section {
    z-index: 55;
    background: #f8fafc;
    padding: 120px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    position: relative;
}

.erp-special-section {
    z-index: 60;
    background: #fff;
    padding: 100px 0;
    margin-top: -5vh;
    position: relative;
}

.project-cta {
    z-index: 70;
    background: #f1f5f9;
    padding: 150px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin-top: -10vh;
    position: relative;
}

.footer-area {
    z-index: 80;
    background: #0f172a;
    margin-top: -10vh;
    padding: 120px 0 60px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    color: white;
    position: relative;
}

/* Modern Bileşenler */
.nav-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

/* Dropdown Menü Stilleri */
.nav-item {
    position: relative;
    padding: 15px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    padding: 10px 0;
    z-index: 150;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .dropdown-item:hover {
        background: #f8fafc;
        color: #2563eb;
        padding-left: 25px;
    }

    .dropdown-item i {
        margin-right: 12px;
        width: 20px;
        text-align: center;
        color: #2563eb;
        font-size: 14px;
    }

.about-floating-card {
    background: white;
    padding: 60px;
    border-radius: 0 80px 0 80px;
    box-shadow: 40px 40px 80px rgba(15, 23, 42, 0.05);
    border-left: 12px solid #2563eb;
    transition: transform 0.4s ease;
}

    .about-floating-card:hover {
        transform: translateY(-10px);
    }

.experience-badge {
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #e2e8f0;
    position: absolute;
    right: -20px;
    top: -40px;
    z-index: -1;
    opacity: 0.5;
}

.erp-card-logo {
    border-left: 8px solid #ed1c24;
}

.erp-card-netsis {
    border-left: 8px solid #0054a6;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    background: rgba(37, 99, 235, 0.6);
    width: 55px !important;
    height: 55px !important;
    border-radius: 100%;
    z-index: 20;
    transition: 0.3s;
}

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: #1e293b;
    }

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 25s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#mobile-menu {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

    #mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }

    .experience-badge {
        font-size: 80px;
        top: 0;
    }

    .about-floating-card {
        padding: 30px;
        border-radius: 0 40px 0 40px;
    }
}

/**--hakkımızda--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

/* Katman Hiyerarşisi */
.about-hero {
    z-index: 10;
    height: 75vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.story-section {
    z-index: 20;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    position: relative;
}

.values-section {
    z-index: 30;
    background: #2563eb;
    color: white;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    position: relative;
}

.culture-section {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    position: relative;
}

.why-us-section {
    z-index: 50;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    position: relative;
}

.timeline-section {
    z-index: 60;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    position: relative;
}

.footer-area {
    z-index: 70;
    background: #0f172a;
    margin-top: -10vh;
    padding: 120px 0 60px;
    color: white;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

/* UI Elemanları */
.nav-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.value-box {
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.4s;
}

    .value-box:hover {
        background: white;
        color: #2563eb;
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}


/**-- iletisim --**/
body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

/* Katman Hiyerarşisi */
.contact-hero {
    z-index: 10;
    height: 60vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.contact-info-section {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    position: relative;
}

.form-section {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    position: relative;
}

.map-section {
    z-index: 40;
    background: #ffffff;
    height: 60vh;
    margin-top: -5vh;
    position: relative;
}

.footer-area {
    z-index: 50;
    background: #0f172a;
    margin-top: -5vh;
    padding: 100px 0 50px;
    color: white;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

/* UI Elemanları */
.nav-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.contact-card {
    transition: 0.4s;
    border: 1px solid #f1f5f9;
}

    .contact-card:hover {
        transform: translateY(-10px);
        border-color: #2563eb;
        background: #fff;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.05);
    }

.form-input {
    width: 100%;
    background: white;
    border: 2px solid #f1f5f9;
    padding: 20px;
    border-radius: 15px;
    outline: none;
    transition: 0.3s;
    font-weight: 600;
}

    .form-input:focus {
        border-color: #2563eb;
    }

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}
/**--hizmetlerimiz--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

/* Katman Hiyerarşisi */
.services-hero {
    z-index: 10;
    height: 65vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.grid-section {
    z-index: 20;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    position: relative;
}

.sector-section {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    position: relative;
}

.process-section {
    z-index: 40;
    background: #2563eb;
    color: white;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    position: relative;
}

.faq-section {
    z-index: 50;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    position: relative;
}

.cta-section {
    z-index: 60;
    background: #0f172a;
    padding: 120px 0;
    margin-top: -5vh;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    position: relative;
}

.footer-area {
    z-index: 70;
    background: #0f172a;
    padding: 60px 0;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* UI Elemanları */
.nav-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.service-wide-card {
    transition: all 0.5s ease;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
}

    .service-wide-card:hover {
        transform: translateY(-10px);
        background: white;
        box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
        border-color: #2563eb;
    }

.faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 25px 0;
    cursor: pointer;
}

    .faq-item:hover h4 {
        color: #2563eb;
    }

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}

/**--hizmet detay--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.hero-section {
    z-index: 10;
    height: 70vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.intro-section {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.tech-cards-section {
    z-index: 30;
    background: #f1f5f9;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.flow-section {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
}

.footer-cta {
    z-index: 50;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

/* Arka Plan Süsleri */
.bg-grid {
    background-image: radial-gradient(#2563eb 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* Kart Efektleri */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .glass-card:hover {
        transform: scale(1.05);
        background: #fff;
        border-color: #2563eb;
        box-shadow: 0 40px 80px rgba(37, 99, 235, 0.1);
    }

/* Sayı Arkası */
.bg-text {
    -webkit-text-stroke: 2px rgba(37, 99, 235, 0.05);
    color: transparent;
    font-size: 15rem;
    font-weight: 900;
    position: absolute;
    z-index: -1;
    top: -50px;
    left: -20px;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}

/**--hizmet detay--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.hero-section {
    z-index: 10;
    height: 70vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.intro-section {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.tech-cards-section {
    z-index: 30;
    background: #f1f5f9;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.flow-section {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
}

.footer-cta {
    z-index: 50;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

/* Arka Plan Süsleri */
.bg-grid {
    background-image: radial-gradient(#2563eb 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* Kart Efektleri */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .glass-card:hover {
        transform: scale(1.05);
        background: #fff;
        border-color: #2563eb;
        box-shadow: 0 40px 80px rgba(37, 99, 235, 0.1);
    }

/* Sayı Arkası */
.bg-text {
    -webkit-text-stroke: 2px rgba(37, 99, 235, 0.05);
    color: transparent;
    font-size: 15rem;
    font-weight: 900;
    position: absolute;
    z-index: -1;
    top: -50px;
    left: -20px;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}
/**--sistemDestek**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.support-hero {
    z-index: 10;
    height: 60vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    position: relative;
}

.vision-block {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.tech-specs {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.monitoring-section {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
}

.cta-section {
    z-index: 50;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.spec-card {
    background: white;
    padding: 2.5rem;
    border-radius: 40px;
    transition: 0.4s;
    border: 1px solid #f1f5f9;
}

    .spec-card:hover {
        border-color: #2563eb;
        transform: translateY(-10px);
    }

/* Dekoratif Arka Plan Yazısı */
.watermark {
    position: absolute;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    z-index: 0;
    right: -5%;
    top: 20%;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}

/**--eDönüşüm--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.edonusum-hero {
    z-index: 10;
    height: 70vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.intro-section {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.solution-grid {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.process-flow {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
}

.cta-section {
    z-index: 50;
    background: #2563eb;
    color: white;
    padding: 120px 0;
    margin-top: -5vh;
}

.footer-area {
    z-index: 60;
    background: #0f172a;
    padding: 80px 0 40px;
    color: white;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

/* Glassmorphism Kartlar */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .glass-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: #2563eb;
        box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    }

/* Arka Plan Desenleri (CSS İle) */
.bg-pattern {
    background-image: radial-gradient(circle at 10% 20%, rgba(203,212,255,0.4) 0%, rgba(203,212,255,0) 90%), radial-gradient(circle at 90% 80%, rgba(203,212,255,0.4) 0%, rgba(203,212,255,0) 90%);
    background-repeat: no-repeat;
    background-size: 300px 300px;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Timeline / Process Flow */
.process-step {
    position: relative;
    padding-left: 2.5rem;
}

    .process-step::before {
        content: attr(data-step);
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #2563eb;
        color: white;
        display: flex;
        items-center: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 14px;
        top: 30px;
        bottom: -20px;
        width: 2px;
        background: #e2e8f0;
    }

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}

/**--bulutYedekleme--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- SAYFA YAPISI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

.hero-section {
    z-index: 10;
    height: 60vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.backup-logic {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.vds-hosting {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
}

.service-details {
    z-index: 40;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -5vh;
}

.cta-box {
    z-index: 50;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.card-minimal {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 2.5rem;
    border-radius: 30px;
    transition: 0.4s;
}

    .card-minimal:hover {
        border-color: #2563eb;
        transform: translateY(-5px);
    }

/* 3-2-1 Şema Çizgisi */
.rule-line {
    position: relative;
}

    .rule-line::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e2e8f0;
        z-index: 0;
    }

.rule-item {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 20px;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }

    .rule-line::after {
        display: none;
    }
}

/**--dijital çözümler--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

/* Katman Hiyerarşisi */
.solutions-hero {
    z-index: 10;
    height: 60vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.solutions-grid-section {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.process-section {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
    border-radius: 60px 60px 0 0;
}

.industry-section {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
}

.why-us {
    z-index: 50;
    background: #0f172a;
    padding: 150px 0;
    margin-top: -5vh;
    color: white;
}

.cta-solutions {
    z-index: 60;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

/* ESKİ BEĞENİLEN ÇÖZÜM KARTLARI STİLİ */
.solution-card {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 3rem;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .solution-card:hover {
        transform: translateY(-15px);
        border-color: #2563eb;
        box-shadow: 0 40px 80px rgba(15,23,42,0.08);
    }

.card-number {
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    position: absolute;
    top: 10px;
    right: 30px;
    line-height: 1;
    z-index: 0;
    transition: 0.4s;
}

.solution-card:hover .card-number {
    color: #ebf2ff;
    transform: scale(1.1);
}

.btn-detail {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #2563eb;
    transition: 0.3s;
}

    .btn-detail i {
        margin-left: 8px;
        transition: 0.3s;
    }

.solution-card:hover .btn-detail i {
    transform: translateX(5px);
}

/* SÜREÇ ALANI İYİLEŞTİRMELERİ */
.step-item {
    background: white;
    padding: 3rem;
    border-radius: 35px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.8;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        clip-path: none !important;
        margin-top: 0 !important;
    }
}

/**--kayseri netsis**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

/* Katman Hiyerarşisi */
.netsis-hero {
    z-index: 10;
    height: 70vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.netsis-intro {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.production-focus {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
}

.data-flow {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    border-radius: 60px 60px 0 0;
}

.sector-solutions {
    z-index: 50;
    background: #f1f5f9;
    padding: 150px 0;
    margin-top: -5vh;
}

.expert-consultancy {
    z-index: 60;
    background: #0f172a;
    padding: 150px 0;
    margin-top: -5vh;
    color: white;
}

.cta-netsis {
    z-index: 70;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

/* Modül Kartları */
.module-card {
    background: white;
    border: 1px solid #edf2f7;
    padding: 2.5rem;
    border-radius: 35px;
    transition: 0.4s;
    position: relative;
}

    .module-card:hover {
        border-color: #2563eb;
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.04);
    }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        margin-top: 0 !important;
    }
}

/**--kayseri logo--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

.logo-hero {
    z-index: 10;
    height: 70vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.logo-intro {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.logo-products {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
}

.logo-e-solutions {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    border-radius: 60px 60px 0 0;
}

.logo-features {
    z-index: 50;
    background: #0f172a;
    padding: 150px 0;
    margin-top: -5vh;
    color: white;
}

.cta-logo {
    z-index: 60;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.product-card {
    background: white;
    border: 1px solid #edf2f7;
    padding: 3rem;
    border-radius: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

    .product-card:hover {
        border-color: #2563eb;
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    }

.tag-logo {
    background: #fee2e2;
    color: #ef4444;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        margin-top: 0 !important;
    }
}

/**--toya pos--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

.pos-hero {
    z-index: 10;
    height: 70vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.pos-intro {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.pos-features {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
}

.pos-integration {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    border-radius: 60px 60px 0 0;
}

.pos-retail-types {
    z-index: 50;
    background: #0f172a;
    padding: 150px 0;
    margin-top: -5vh;
    color: white;
}

.cta-pos {
    z-index: 60;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.pos-card {
    background: white;
    border: 1px solid #edf2f7;
    padding: 2.5rem;
    border-radius: 35px;
    transition: 0.4s;
    text-align: center;
}

    .pos-card:hover {
        border-color: #2563eb;
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    }

.icon-circle {
    width: 80px;
    h-80px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    transition: 0.3s;
}

.pos-card:hover .icon-circle {
    background: #2563eb;
    color: white;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        margin-top: 0 !important;
    }
}

/**--özel yazilim--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING MANTIĞI --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

.dev-hero {
    z-index: 10;
    height: 70vh;
    background: #0f172a;
    display: flex;
    align-items: center;
}

.dev-intro {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.dev-services {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
}

.tech-stack {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    border-radius: 60px 60px 0 0;
}

.dev-process {
    z-index: 50;
    background: #0f172a;
    padding: 150px 0;
    margin-top: -5vh;
    color: white;
}

.cta-dev {
    z-index: 60;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.dev-card {
    background: white;
    border: 1px solid #edf2f7;
    padding: 3rem;
    border-radius: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .dev-card:hover {
        border-color: #2563eb;
        transform: translateY(-12px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    }

.tech-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 4px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        margin-top: 0 !important;
    }
}

/**-- kayseri erp--**/

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- STACKING ENGINE --- */
header, section, footer {
    position: sticky !important;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
}

.erp-hero {
    z-index: 10;
    height: 75vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=2000') no-repeat center/cover;
    display: flex;
    align-items: center;
}

.erp-intro {
    z-index: 20;
    background: #ffffff;
    padding: 120px 0;
    margin-top: -10vh;
    border-radius: 60px 60px 0 0;
}

.mrp-details {
    z-index: 30;
    background: #f8fafc;
    padding: 150px 0;
    margin-top: -5vh;
}

.factory-sync {
    z-index: 40;
    background: #ffffff;
    padding: 150px 0;
    margin-top: -5vh;
    border-radius: 60px 60px 0 0;
}

.service-depth {
    z-index: 50;
    background: #0f172a;
    padding: 150px 0;
    margin-top: -5vh;
    color: white;
}

.cta-erp {
    z-index: 60;
    background: #2563eb;
    color: white;
    padding: 100px 0;
    margin-top: -5vh;
}

.hero-stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

.feature-box {
    background: white;
    border-left: 5px solid #2563eb;
    padding: 2rem;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}

    .feature-box:hover {
        transform: translateX(10px);
        background: #f1f5f9;
    }

.tech-tag {
    font-size: 10px;
    font-weight: 900;
    color: #2563eb;
    background: #eff6ff;
    padding: 5px 12px;
    rounded: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    header, section, footer {
        position: relative !important;
        margin-top: 0 !important;
    }
}
