/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #1a1a1a;
    --background-color: #ffffff;
    --text-color: #333333;
    --border-radius: 8px;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0.6rem 0;
    background: rgb(255 255 255);
}



    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.logo-img {
    height: 48px;
    margin-top: 2px;
}

.menu-logo-img {
    height: 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: inline-block;
    position: relative;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #00b74f;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover:after {
        transform: scaleX(1);
    }

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-button {
    font-size: 14px !important;
    font-weight: 400 !important;
}
/* Button styles */
.btn {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
}

.btn-icon {
    background: transparent;
    padding: 0.5rem;
}

.btn-large {
    padding: 1rem 2rem !important;
    font-size: 1.1rem;
}

/* Slider/Video section */
.slider {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #111111;
    overflow: hidden;
}

.main-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide.active {
        opacity: 1;
    }

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video overlay styles */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* Slide content z-index'ini güncelliyoruz */
.slide-content {
    position: absolute;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 680px;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

    .slide-content h1,
    .slide-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
    }

    .slide-content .lead {
        font-size: 1.5rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
    }

/* Pagination Dots */
.slider-pagination {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.pagination-dot {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.inner-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s;
    transform-origin: 50% 50%;
    stroke-dasharray: 50; /* 2 * π * radius */
    stroke-dashoffset: 50;
    opacity: 0.3;
}

.pagination-dot.active .inner-dot {
    transform: translate(-50%, -50%) scale(1.2);
}

.pagination-dot.active .progress-ring__circle {
    opacity: 1;
    animation: progress 7s linear;
}

@keyframes progress {
    from {
        stroke-dashoffset: 50;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.m-vh-76 {
    margin-top: 76vh;
}


.m-vh-84 {
    margin-top: 84vh;
}

.m-vh-100 {
    margin-top: 100vh;
}

.m-vh-50 {
    margin-top: 50vh;
}
/* Main content */
.main-content {
    position: relative;
    z-index: 2;
    background: white;
}

/* Features section styles */
.features {
    padding: 4rem 0;
}

.feature-image {
    margin-bottom: 24px;
}

    .feature-image img {
        height: 58px;
        object-fit: contain;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
}

    .feature-card h2 {
        font-size: 0.986rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .feature-card p {
        color: var(--text-color);
        font-size: .875rem;
        line-height: 1.25rem;
    }

.features-title {
    text-align: center;
    font-size: 2.5rem;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.nav-item {
    position: relative;
}

    .nav-item:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255);
    min-width: 220px;
    border-radius: 8px;
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
}

    .dropdown-menu li {
        padding: 0;
        list-style: none;
    }

        .dropdown-menu li a {
            padding: 0.8rem 1.5rem;
            display: block;
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.95rem;
            transition: background-color 0.2s;
        }

        .dropdown-menu li::before {
            display: none;
        }

        .dropdown-menu li::marker {
            display: none;
        }

        .dropdown-menu li a:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

.dropdown.active .dropdown-menu {
    display: block;
}

/* Language selector styles */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.btn-language {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-color);
}

    .btn-language svg {
        width: 20px;
        height: 20px;
    }

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    padding: 0.5rem 0;
    z-index: 1000;
}

    .lang-dropdown.active {
        display: block;
    }

    .lang-dropdown a {
        display: block;
        padding: 0.5rem 1rem;
        text-decoration: none;
        color: var(--text-color);
        transition: background-color 0.2s;
    }

        .lang-dropdown a:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    z-index: 2;
    background: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
}

/* Footer Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }

        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

            .footer-column ul li a:hover {
                opacity: 1;
            }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .footer-bottom p {
        font-size: 0.9rem;
        color: var(--text-color);
        opacity: 0.8;
    }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .footer-legal a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .footer-legal span {
        opacity: 0.5;
    }

/* Footer Language Selector */
.footer .language-selector {
    position: relative;
    margin-left: auto;
}

.footer .btn-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.footer .lang-dropdown {
    bottom: 100%;
    top: auto;
    margin-bottom: 0.5rem;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-bold {
    font-weight: 800;
}

.logo-regular {
    font-weight: 500;
}

.logo-text:hover {
    opacity: 0.9;
}

/* Font Awesome için CDN linki head kısmına eklenmelidir */

/* Features Section */
.solutions-section {
    position: relative;
    background: #f7f7f7;
    padding: 4rem 0;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

/* Other sections */
.other-section {
    position: relative;
    background: white;
    padding: 4rem 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #111111;
    color: white;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 42px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Büyük tablet ve küçük laptop için */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
        gap: 20px;
    }
}

/* Tablet için */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 16px;
        margin-bottom: 32px;
    }
}

/* Mobil için */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 16px;
        margin-bottom: 24px;
        padding: 0 15px; /* Kenarlarda boşluk */
    }
}

/* Service Cards */
.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

    .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

    .card-content h3 {
        font-size: 24px;
        font-weight: 500;
        color: white;
    }

/* Card Hover Effects */
.service-card:hover img {
    transform: scale(1.05);
}

.service-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

/* View All Button */
.view-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    margin: 40px auto 0;
    transition: all 0.3s ease;
}

    .view-all-btn svg {
        transition: transform 0.3s ease;
    }

    .view-all-btn:hover {
        background: rgba(255,255,255,0.1);
    }

    .view-all-btn.active svg {
        transform: rotate(180deg);
    }

/* Hidden Services */
.hidden-services {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

/* Büyük tablet ve küçük laptop için */
@media (max-width: 1200px) {
    .hidden-services {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
        gap: 20px;
    }
}

/* Tablet için */
@media (max-width: 992px) {
    .hidden-services {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 16px;
        margin-bottom: 32px;
    }
}

/* Mobil için */
@media (max-width: 576px) {
    .hidden-services {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 16px;
        margin-bottom: 24px;
        padding: 0 15px; /* Kenarlarda boşluk */
    }
}

.hidden-services.active {
    display: grid;
}

/* Project Steps Section */
.project-steps {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.step-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .step-btn:hover {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .step-btn.active {
        background: white;
        color: #0a192f;
    }

/* Step Slider */
.step-slider {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    padding: 42px 0;
}

.step-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease-out;
    padding: 0 20px;
}

.step-card {
    flex: 0 0 400px;
    min-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    user-select: none;
}

    .step-card:active {
        cursor: grabbing;
    }

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    position: absolute;
    top: -42px;
}

.step-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.step-tags {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
}


.text-transparent {
    color: #0000;
}


.text-stroke-white {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.section-title-black, .section-title-white {
    color: transparent;
    font-size: clamp(2.1rem, 4vw, 4.5rem);
    line-height: 1.15;
}

.section-title-white {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.partner-logos {
    background: #111111;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.logos-slider {
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 14); /* logo sayısı x logo genişliği */
}

.logo-item {
    flex: 0 0 200px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-item img {
        max-width: 140px;
        max-height: 40px;
        height: auto;
        filter: grayscale(100%) brightness(200%); /* Logoları beyaz yap */
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .logo-item:hover img {
        opacity: 1;
        filter: grayscale(0%) brightness(100%);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 7)); /* (logo sayısı/2) x logo genişliği */
    }
}

/* Kenarları soluklaştırmak için gradient overlay */
.partner-logos::before,
.partner-logos::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
}

.partner-logos::before {
    left: 0;
    background: linear-gradient(to right, #111111, transparent);
}

.partner-logos::after {
    right: 0;
    background: linear-gradient(to left, #111111, transparent);
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background: #fff;
}

    .info-section .section-title {
        font-size: 48px;
        line-height: 1.2;
        color: #0a192f;
        margin-bottom: 80px;
        max-width: 800px;
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-icon {
    margin-bottom: 24px;
}

    .info-icon img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

.info-card h3 {
    font-size: 24px;
    color: #0a192f;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-section .section-title {
        font-size: 36px;
    }
}

.tech-stack {
    padding: 100px 0;
    background: #f8fafc;
}

    .tech-stack .section-tag {
        color: #3b82f6;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 16px;
        display: block;
        text-align: center;
    }

    .tech-stack .section-title {
        font-size: 36px;
        color: #1e293b;
        text-align: center;
        margin-bottom: 60px;
    }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tech-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.tech-name {
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

/* Hover Effects */
.tech-item:hover {
    transform: translateY(-8px);
    background: #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media (max-width: 1280px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-showcase {
    background: #111111;
    padding: 0 0 80px;
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: #1a1a1a;
    margin-bottom: 60px;
    overflow-x: auto;
}

.nav-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .nav-btn:hover {
        color: #fff;
    }

    .nav-btn.active {
        background: #333;
        color: #fff;
        border-radius: 30px;
    }

.showcase-content {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

    .showcase-content.active {
        display: block;
    }

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.content-info {
    color: #fff;
}

    .content-info h2 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .content-info p {
        font-size: 18px;
        line-height: 1.6;
        color: #999;
        margin-bottom: 32px;
    }

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    margin-bottom: 48px;
    transition: all 0.3s ease;
}

    .explore-btn:hover {
        background: #444;
    }

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.stat-text {
    color: #999;
    font-size: 16px;
    line-height: 1.4;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-info {
        text-align: center;
    }

    .stats-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .showcase-nav {
        justify-content: flex-start;
    }

    .content-info h2 {
        font-size: 36px;
    }
}

.feature-detail {
    padding: 120px 0;
    background: #ffffff;
    color: #111111;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.detail-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.detail-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 24px;
}

.detail-description {
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 40px;
}

.feature-list h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #111;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
}

    .feature-list li strong {
        display: block;
        color: #111;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature-list li p {
        color: #999;
        font-size: 16px;
        line-height: 1.6;
    }

.detail-image {
    position: relative;
}

    .detail-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

.solutions-detail-image {
    text-align: center;
}

.solutions-detail-image img {
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 85%;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-content h2 {
        font-size: 36px;
    }

    .detail-content {
        text-align: center;
    }

    .feature-list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .feature-detail {
        padding: 80px 0;
    }

    .detail-content h2 {
        font-size: 32px;
    }
}

.benefits-features {
    padding: 120px 0;
    background: #111111;
    color: #ffffff;
}

.bf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.bf-column h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
}

.bf-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bf-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

.bf-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .bf-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-features {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .bf-column h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .bf-item h3 {
        font-size: 18px;
    }

    .bf-list {
        gap: 32px;
    }
}

.vertical-tabs {
    padding: 80px 0;
    background: #ffffff;
}

.tabs-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    min-height: 600px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
}

.tab-btn {
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .tab-btn:hover {
        background: rgba(255,255,255,0.1);
    }

    .tab-btn.active {
        background: #fff;
        color: #111;
        font-weight: 500;
    }

.tab-contents {
    background: #ffffff;
    position: relative;
    color: #111;
}

.tab-content {
    display: none;
    padding: 40px;
}

    .tab-content.active {
        display: block;
    }

.content-image {
    margin-bottom: 32px;
}

    .content-image img {
        width: 100%;
        /*    height: 300px;
*/ object-fit: cover;
        border-radius: 12px;
    }

.content-text h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        color: #1a1a1a;
        padding: 0px 0;
        padding-left: 24px;
        position: relative;
    }

        .feature-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #666;
        }

/* Responsive */
@media (max-width: 992px) {
    .tabs-container {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: row;
        overflow-x: auto;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 16px 24px;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .tab-content {
        padding: 24px;
    }

    .content-text h3 {
        font-size: 24px;
    }
}

.reference-projects {
    padding: 80px 0;
    background: #ffffff;
}

.project-card {
    margin-bottom: 120px;
}

    .project-card:last-child {
        margin-bottom: 0;
    }

.project-slider {
    position: relative;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.project-swiper {
    width: 100%;
    height: 600px;
}

    .project-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.project-pagination {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    z-index: 10;
}

    .project-pagination .current {
        font-weight: 500;
    }

    .project-pagination .separator {
        margin: 0 4px;
        opacity: 0.7;
    }

    .project-pagination .total {
        opacity: 0.7;
    }

.project-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 0 40px;
}

.project-title h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.project-title h3 {
    font-size: 24px;
    color: #999;
    font-weight: normal;
    line-height: 1.4;
}

.project-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 24px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 8px 16px;
    background: rgb(224 224 224);
    border-radius: 30px;
    color: #000000;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .project-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-swiper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .project-info {
        padding: 0 20px;
    }

    .project-title h2 {
        font-size: 32px;
    }

    .project-title h3 {
        font-size: 20px;
    }
}

/* Hero slider pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.4);
        opacity: 1;
        margin: 0 4px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        background: #ffffff;
    }

/* Proje slider pagination */
.project-pagination {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    z-index: 10;
}

/* ... diğer project-pagination stilleri ... */


.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    transition: all 0.5s ease;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 100%;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}


    .blog-content h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

.read-more {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Hover Efektleri */
.blog-item:hover {
    flex: 1.2;
    z-index: 1;
}

    .blog-item:hover .blog-image img {
        transform: scale(1.1);
    }

    .blog-item:hover .blog-overlay {
        background: rgba(0, 0, 0, 0.7);
        opacity: 1;
    }

    .blog-item:hover .blog-content {
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        height: 300px;
    }
}

.values-section {
    padding: 80px 0;
    background: #ffffff;
}

.values-grid {
    display: flex;
    gap: 20px;
    height: 400px;
}

.value-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-image {
    height: 100%;
    position: relative;
}

    .value-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.value-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 40px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

    .value-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .value-content p {
        font-size: 16px;
        line-height: 1.6;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
    }

/* Hover efektleri */
.value-item:hover {
    flex: 2;
}

    .value-item:hover .value-content {
        opacity: 1;
        visibility: visible;
        transition-delay: 0.3s;
    }

        .value-item:hover .value-content h3 {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.5s;
        }

        .value-item:hover .value-content p {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.6s;
        }

/* Responsive */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        height: auto;
    }

    .value-item {
        height: 300px;
    }

        .value-item:hover {
            flex: 1;
        }
}

.hero-section .swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    cursor: pointer;
}

.hero-section .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Page header */
.page-header {
    position: relative;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
    margin-top: 68px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

    .page-header-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgb(0 183 79 / 53%) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

.page-header-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

.page-header .breadcrumb {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

    .page-header .breadcrumb a {
        color: #fff;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

        .page-header .breadcrumb a:hover {
            opacity: 1;
        }

    .page-header .breadcrumb .separator {
        color: rgba(255,255,255,0.6);
    }

    .page-header .breadcrumb .current {
        color: #fff;
    }

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

        .page-header h1 {
            font-size: 36px;
        }
}

.blog-section {
    padding: 60px 0;
    background: #fff;
    color: #333333;
}

.news-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-header-title {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
}

.view-all {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 400;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.news-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
}

    .news-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    color: #000000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.read-more {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobil menü stilleri */
@media (max-width: 992px) {
    .header .container {
        padding: 10px 20px;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 70px; /* Header yüksekliği */
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 20px;
        overflow-y: auto;
        z-index: 1000;
    }

        .nav-list.active {
            display: block;
        }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown ok işareti */
    .nav-item.dropdown .nav-link:after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.active .nav-link:after {
        transform: rotate(-135deg);
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f5f5f5;
        padding: 0;
        margin: 0;
        border-radius: 0;
    }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-menu li a {
            padding: 12px 20px;
            color: #333;
        }

    /* Mobil menü butonu */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
    }

    .mobile-menu-icon {
        position: relative;
        width: 24px;
        height: 2px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
    }

        .mobile-menu-icon:before,
        .mobile-menu-icon:after {
            content: '';
            position: absolute;
            left: 0;
            width: 24px;
            height: 2px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .mobile-menu-icon:before {
            top: -7px;
        }

        .mobile-menu-icon:after {
            top: 7px;
        }

    /* X dönüşümü */
    .mobile-menu-btn.active .mobile-menu-icon {
        background-color: transparent;
    }

        .mobile-menu-btn.active .mobile-menu-icon:before {
            top: 0;
            transform: rotate(45deg);
        }

        .mobile-menu-btn.active .mobile-menu-icon:after {
            top: 0;
            transform: rotate(-45deg);
        }

    /* Mobil menü öğeleri tasarımı */
    .nav-list {
        padding: 20px 0;
    }

    .nav-item {
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-link {
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Sola yaslama */
        color: var(--text-color);
        font-weight: 500;
        width: 100%;
    }

    /* Ok işareti için */
    .nav-item.dropdown {
        position: relative;
    }

        .nav-item.dropdown .nav-link {
            padding-right: 40px; /* Ok için sağda boşluk bırak */
        }

        /* Ok işareti */
        .nav-item.dropdown::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            width: 8px;
            height: 8px;
            border-right: 2px solid #666;
            border-bottom: 2px solid #666;
            transform: translateY(-50%) rotate(45deg);
            transition: transform 0.3s ease;
        }

        .nav-item.dropdown.active::after {
            transform: translateY(-50%) rotate(-135deg);
        }

    /* Alt menü stilleri */
    .dropdown-menu {
        display: none;
        background-color: #f8f9fa;
        padding: 10px 0;
        width: 100%;
    }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-menu li a {
            padding: 12px 30px;
            display: block;
            color: var(--text-color);
        }
}

/* Desktop menü stilleri korunuyor */
@media (min-width: 993px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Hero section responsive düzenlemeleri */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-section {
        height: 80vh;
    }
}

/* Features section responsive düzenlemeleri */
@media (max-width: 992px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .feature-icon {
        margin: 0 auto 20px;
    }
}

/* Footer responsive düzenlemeleri */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Services section responsive düzenlemeleri */
@media (max-width: 992px) {
    .service-card {
        aspect-ratio: 4/3;
    }

    .card-content h3 {
        font-size: 20px;
    }
}

/* Blog section responsive düzenlemeleri */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        height: 250px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}

/* Values section responsive düzenlemeleri */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        height: auto;
    }

    .value-item {
        height: 250px;
    }
}

/* Container responsive düzenlemesi */
@media (max-width: 1280px) {
    .container {
        padding: 0 15px;
    }
}

/* Genel responsive düzenlemeler */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* Language selector responsive düzenlemesi */
@media (max-width: 992px) {
    .language-selector .lang-dropdown {
        right: 0;
        left: auto;
    }
}

/* Project section responsive düzenlemesi */
@media (max-width: 768px) {
    .project-info {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .project-swiper {
        height: 400px;
    }
}

/* Header ve mobil menü stilleri */
.mobile-menu-btn {
    display: none; /* Varsayılan olarak gizli */
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Desktop düzeni */
@media (min-width: 993px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Tablet ve mobil düzeni */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        order: 3; /* Sağa almak için */
    }

    .header .container {
        padding: 10px 20px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .header-actions .btn-primary {
            display: none; /* İletişime Geç butonunu gizle */
        }

    .language-selector {
        order: 2; /* Dil seçimini hamburger menüden önce göster */
    }

    /* Mobil menü ikonu düzeltmesi */
    .mobile-menu-icon {
        position: relative;
        width: 24px;
        height: 2px;
        background-color: var(--text-color);
    }

        .mobile-menu-icon:before,
        .mobile-menu-icon:after {
            content: '';
            position: absolute;
            left: 0;
            width: 24px;
            height: 2px;
            background-color: var(--text-color);
        }

        .mobile-menu-icon:before {
            top: -7px;
        }

        .mobile-menu-icon:after {
            top: 7px;
        }
}

@media (max-width: 992px) {
    .nav-list {
        padding: 20px 0;
    }

    /* Tüm mavi ikonları ve after/before elementlerini temizle */
    .nav-item::before,
    .nav-item::after,
    .nav-link::before,
    .nav-link::after,
    .nav-item > span,
    .nav-item > i,
    .nav-item > img {
        display: none !important;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--text-color);
        font-weight: 500;
    }

    /* Sadece dropdown menüler için ok ekle */
    .nav-item.dropdown .nav-link {
        position: relative;
    }

        .nav-item.dropdown .nav-link span {
            position: absolute;
            right: 20px;
            width: 8px;
            height: 8px;
            border-right: 2px solid #666;
            border-bottom: 2px solid #666;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
        }

    .nav-item.dropdown.active .nav-link span {
        transform: rotate(-135deg);
    }
}

/* Desktop dropdown ok işareti */
@media (min-width: 993px) {
    .nav-item.dropdown .nav-link span {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-left: 6px;
        border-right: 2px solid #666;
        border-bottom: 2px solid #666;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        vertical-align: 2px; /* Oku metinle hizalamak için */
    }

    .nav-item.dropdown:hover .nav-link span {
        transform: rotate(-135deg);
    }
}

/* Desktop dropdown menü ayarları */
@media (min-width: 993px) {
    .dropdown-menu {
        width: auto;
        min-width: 200px; /* Minimum genişlik */
        white-space: nowrap; /* İçeriğin alt satıra geçmesini engelle */
    }

        .dropdown-menu li a {
            padding: 12px 24px;
            display: block;
            white-space: nowrap; /* Menü öğelerinin alt satıra geçmesini engelle */
        }
}

/* Mobil dropdown menü ayarları değişmeyecek */
@media (max-width: 992px) {
    .dropdown-menu {
        width: 100%; /* Mobilde tam genişlik */
    }
}

/* Özellikler bölümü */
.features-section {
    padding: 60px 80px 80px;
    background-color: #fff;
}

.features-grid-homepage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}


.features-grid-homepage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Tablet için */
@media (max-width: 992px) {
    .features-grid-homepage {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 20px; /* Boşluğu azalt */
        padding: 0 20px; /* Kenarlarda boşluk bırak */
    }
}

/* Mobil için */
@media (max-width: 576px) {
    .features-grid-homepage {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 16px; /* Boşluğu daha da azalt */
    }
}

.feature-item {
    text-align: left;
    padding: 28px;
}

.feature-icon {
    margin-bottom: 20px;
}

    .feature-icon img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

.feature-item h3 {
    color: #000;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-color);
    font-size: .875rem;
    line-height: 1.25rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: #3f74b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

    .feature-link:hover {
        color: var(--primary-color-dark);
    }

    .feature-link .arrow {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .feature-link:hover .arrow {
        transform: translateX(5px);
    }

/* Ok ikonu için SVG */
.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 40px 0;
    }
}



.border-gray-200 {
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
}

.gradient-text {
    background: linear-gradient(90deg, #3597dc 0%, #00b74f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

    .accordion-header .title {
        font-family: var(--font-family);
        flex-grow: 1;
        font-size: 16px;
        color: #333;
        font-weight: 600;
    }

.check-icon {
    color: #02BE83;
    margin-right: 12px;
    font-size: 18px;
}

.title {
    flex-grow: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
    transform: rotate(-135deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

    .accordion-content p {
        font-size: 0.968rem;
        padding-left: 20px;
    }

.accordion-item.active .accordion-content {
    max-height: 500px; /* Yeterince büyük bir değer */
    padding-bottom: 20px;
}

.hero-section {
    padding: 60px 0;
    background: linear-gradient(to right, #fff 50%, #f8f9fa 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 2rem 0;
        height: auto;
        overflow: hidden;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        width: 100%;
    }

    .contact-form-card {
        margin-bottom: 2rem;
    }

    .tech-grid br {
        display: none;
    }
}

.hero-text {
    padding-top: 20px;
}

    .hero-text h1 {
        font-size: 40px;
        line-height: 1.2;
        color: #0A2540;
        margin-bottom: 24px;
        font-weight: 700;
    }

    .hero-text p {
        font-size: 18px;
        line-height: 1.6;
        color: #4A5568;
        margin-bottom: 32px;
    }

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #21242c;
    color: white;
}

    .btn-primary:hover {
        background: #40424a;
    }

.btn-link {
    color: #2B4EFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-link:hover {
        color: #1a3dff;
    }

    .btn-link .arrow-icon {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }

    .btn-link:hover .arrow-icon {
        transform: translateX(4px);
    }

.hero-image {
    position: relative;
}

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

/* Responsive tasarım */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-text {
        padding-top: 0;
    }

        .hero-text h1 {
            font-size: 36px;
        }

    .hero-section {
        background: #fff;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }
}

/* Tablet için ayarlar */
@media (max-width: 992px) {
    .slide-content {
        left: 5%;
        max-width: 500px;
    }
}

/* Mobil için ayarlar */
@media (max-width: 768px) {
    .slide-content {
        left: 20px; /* Mobilde piksel değeri daha güvenli */
        right: 20px; /* Sağdan da boşluk bırakıyoruz */
        max-width: none; /* Mobilde tam genişlik */
        padding: 0; /* Padding'i kaldırıyoruz çünkü left/right ile mesafe veriyoruz */
        text-align: center; /* Mobilde metin ortalı olsun */
    }

        .slide-content h2 {
            font-size: 28px; /* Mobilde başlık boyutunu küçültüyoruz */
        }

        .slide-content p {
            font-size: 16px; /* Mobilde metin boyutunu küçültüyoruz */
        }
}

.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

    .contact-form-card h3 {
        color: #404244;
        font-size: 24px;
        margin-bottom: 24px;
        text-align: center;
        font-weight: 600;
    }

.text-primary {
    color: #dc3545;
}

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #404244;
        font-size: 14px;
    }

.required {
    color: #dc3545;
}

.form-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

    .form-text.error {
        color: #dc3545;
    }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #404244;
        box-shadow: 0 0 0 3px rgba(64, 66, 68, 0.1);
    }

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

.checkbox-text {
    font-size: 12px;
    color: #404244;
    line-height: 1.4;
}

    .checkbox-text a {
        color: #404244;
        text-decoration: underline;
    }

.btn-primary {
    background: #00b74f;
    border: none;
    color: white;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #019340;
    }

/* Responsive tasarım */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 20px;
        margin: 0 auto;
    }

        .contact-form-card h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* About Us Page Styles */
.other-section .detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.detail-content .section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    display: block;
}

.detail-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 24px;
}

.detail-content .detail-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.detail-content .detail-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .detail-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

/* Responsive styles */
@media (max-width: 992px) {
    .other-section .detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .detail-content {
        text-align: center;
    }

        .detail-content h2 {
            font-size: 32px;
        }
}

/* ... existing code ... */

/* About Us Page Styles */
.page-header {
    background: #333;
}

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

.breadcrumb-nav {
    margin-bottom: 10px;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        opacity: 0.7;
    }

    .breadcrumb-nav .separator {
        color: #fff;
        opacity: 0.7;
        margin: 0 10px;
    }

    .breadcrumb-nav .current {
        color: #fff;
        opacity: 0.7;
    }

.page-header h1 {
    color: #fff;
    font-size: 32px;
    margin: 0;
}

.about-section {
    background: #fff;
    padding: 80px 0;
    color: #4A5568;
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

/* Sol Kolon Stilleri */
.about-text {
    padding-right: 20px;
}

    .about-text .section-tag {
        font-size: 14px;
        font-weight: 600;
        color: #00b74f;
        margin-bottom: 16px;
        display: block;
        text-transform: uppercase;
    }

    .about-text h2 {
        font-size: 40px;
        line-height: 1.2;
        color: #0A2540;
        margin-bottom: 24px;
        font-weight: 700;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* Orta Kolon Stilleri */
.about-main-image {
    width: 100%;
    height: 100%;
}

    .about-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 32px 0px 0px 32px;
    }

/* Sağ Kolon Stilleri */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.milestone-card {
    background-color: #00b050;
    padding: 32px;
    border-radius: 0px 32px 0px 0px;
    text-align: center;
}

    .milestone-card h3 {
        font-size: 24px;
        color: #fff;
        margin: 0;
        font-weight: 500;
        line-height: 1.4;
    }

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 0px 0px 32px 0px;
    object-fit: cover;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-right {
        flex-direction: column-reverse;
    }
}

/* Mission Vision Values Section */
.mission-vision-values {
    background-color: #111111;
    padding: 80px 0;
    color: #fff;
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mvv-card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}

.right-column {
    height: 100%;
}

.values-card {
    height: 100%;
}

.mvv-tag {
    font-size: 14px;
    font-weight: 600;
    color: #00b74f;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mvv-card h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.mvv-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-icon {
    color: #00b74f;
    font-size: 14px;
}

.value-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-left: 26px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mvv-card {
        padding: 30px;
    }

        .mvv-card h2 {
            font-size: 28px;
        }

    .value-items {
        gap: 24px;
    }
}


.join-team-section {
    padding: 30px 0;
    background: #f8fafc;
}

.join-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.join-team-content {
    padding-right: 40px;
}

    .join-team-content h2 {
        font-size: 40px;
        color: #333;
        margin-bottom: 24px;
        font-weight: 600;
        line-height: 1.2;
    }

    .join-team-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #333333;
        margin-bottom: 32px;
    }

    .join-team-content .btn-primary {
        background: #00b74f;
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 500;
    }

        .join-team-content .btn-primary:hover {
            background: #019340;
        }

.join-team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .join-team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .join-team-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .join-team-section {
        padding: 60px 0;
    }

    .join-team-content h2 {
        font-size: 32px;
    }

    .join-team-content p {
        font-size: 16px;
    }
}






.carrier-section {
    background: #fff;
    padding: 80px 0;
    color: #4A5568;
    display: flex;
    align-items: center;
}

.carrier-grid {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 24px;
    align-items: start;
}

/* Sol Kolon Stilleri */
.carrier-text {
    padding-right: 20px;
}

    .carrier-text .section-tag {
        font-size: 14px;
        font-weight: 600;
        color: #00b74f;
        margin-bottom: 16px;
        display: block;
        text-transform: uppercase;
    }

    .carrier-text h2 {
        font-size: 40px;
        line-height: 1.2;
        color: #0A2540;
        margin-bottom: 24px;
        font-weight: 700;
    }

    .carrier-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* Orta Kolon Stilleri */
.carrier-main-image {
    width: 100%;
    height: 100%;
}

    .carrier-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 32px 0px 0px 32px;
    }

/* Sağ Kolon Stilleri */
.carrier-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.milestone-card {
    background-color: #00b050;
    padding: 32px;
    border-radius: 0px 32px 0px 0px;
    text-align: center;
}

    .milestone-card h3 {
        font-size: 24px;
        color: #fff;
        margin: 0;
        font-weight: 500;
        line-height: 1.4;
    }

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 0px 0px 32px 0px;
    object-fit: cover;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .carrier-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .carrier-text {
        padding-right: 0;
    }

    .carrier-right {
        flex-direction: column-reverse;
    }
}

/* Büyüme Kültürü Bölümü */
.growth-culture {
    padding: 80px 0;
    background-color: #111111;
}

.culture-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.culture-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .culture-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .culture-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #0A2540;
        margin-bottom: 16px;
    }

    .culture-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #4A5568;
    }

/* Responsive Tasarım */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }

    .culture-title {
        font-size: 32px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .growth-culture {
        padding: 60px 0;
    }

    .culture-card {
        padding: 24px;
    }
}

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

.solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.solution-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.solution-card h3 {
    padding: 24px 24px 16px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.solution-card p {
    padding: 0 24px;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.solution-card .btn-link {
    display: inline-flex;
    align-items: center;
    margin: 0 24px 24px;
    padding: 0;
    color: #00b74f;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .solution-card .btn-link:hover {
        color: #009940;
    }

.benefits-list {
    padding-top: 32px;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-image {
        height: 200px;
    }
}

/* Custom Software Specific Styles */
.software-process {
    padding: 80px 0;
    background: #f8f9fa;
}

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

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #00b74f;
        z-index: 0;
    }

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #00b74f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.methodology-section {
    padding: 80px 0;
}

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

.methodology-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.methodology-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(221 221 221);
    border-radius: 12px;
}

    .methodology-icon i {
        font-size: 28px;
        color: #00b74f;
    }

    .methodology-icon img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

.industries-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.industry-card {
    background: #fff;
    padding-bottom: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3sease;
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.19);
}

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }


    .industry-card img {
        width: 294px;
        border-radius: 12px 12px 0 0;
    }

    .industry-card p {
        padding: 6px 32px;
    }

.industry-icon {
    font-size: 32px;
    color: #00b74f;
    margin-bottom: 16px;
}

.case-studies {
    padding: 80px 0;
}

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

.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.case-content {
    padding: 24px;
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 183, 79, 0.1);
    color: #00b74f;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

        .process-timeline::before {
            display: none;
        }

    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .methodology-grid,
    .industries-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00b74f 0%, #009940 100%);
    color: #fff;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-outline {
    border: 2px solid #00b74f;
    color: #00b74f !important;
    background: transparent;
}

    .btn-outline:hover {
        background: #00b74f;
        color: #fff !important;
    }

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-card {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: #00b74f;
    margin-bottom: 20px;
}

/* Development Process Styles */
.development-process {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.process-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00b74f;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.process-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin: 20px 0 15px;
    position: relative;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9rem;
}


.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.hero-content .stat-item {
    text-align: center;
}

.hero-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2540;
    display: block;
}

.hero-content .stat-text {
    font-size: 1rem;
    color: #6c757d;
}

.benefits-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .benefits-image img {
        max-height: 400px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .benefits-image img {
        max-height: 300px;
    }
}

/* Blog sayfası için ek stiller */
.news-date {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.news-summary {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-empty {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    margin-top: 30px;
}

/* Blog sayfası responsive düzenlemeler */
@media (max-width: 992px) {
    .news-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .news-header .btn-primary {
        align-self: flex-start;
    }
}

/* Blog kartları için özel stiller */
.blog-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

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

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

.blog-content {
    padding: 24px;
    background: #ffffff;
    color: #333333;
}

.blog-content .news-date {
    color: #666666;
    font-size: 14px;
    margin-bottom: 12px;
}

.blog-content .news-title {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content .news-summary {
    color: #666666;
    margin-bottom: 20px;
}

.blog-content .read-more {
    color: #00b74f;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-content .read-more:hover {
    color: #009940;
}

.blog-card .translation-tag {
    right: 16px;
    left: auto;
    background: #ffc107;
    color: #000000;
}

/* Blog sayfası için arka plan rengi */
.blog-section {
    background: #f8f9fa;
}

.blog-section .news-header-title {
    color: #1a1a1a;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-content .news-title {
        font-size: 18px;
    }
}

/* Blog Detay Sayfası Stilleri */
.blog-detail-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.blog-detail-container {
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-detail-header {
    padding: 40px 40px 0;
}

.language-selector {
    display: flex;
    gap: 10px;
/*    margin-bottom: 24px;
*/}

.lang-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #666666;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #e0e0e0;
    color: #333333;
}

.lang-btn.active {
    background: #00b74f;
    color: #ffffff;
}

.blog-detail-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
}

.meta-item i {
    color: #00b74f;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 0 40px 40px;
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.blog-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px;
}

.blog-detail-content ul, 
.blog-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-detail-actions {
    padding: 20px 40px 40px;
    display: flex;
    gap: 16px;
}

.blog-detail-actions .btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-actions .btn-primary {
    background: #00b74f;
    color: #ffffff;
}

.blog-detail-actions .btn-primary:hover {
    background: #009940;
}

.blog-detail-actions .btn-outline {
    border: 1px solid #00b74f;
    color: #00b74f;
    background: transparent;
}

.blog-detail-actions .btn-outline:hover {
    background: #00b74f;
    color: #ffffff;
}

/* Blog detay sayfası responsive düzenlemeler */
@media (max-width: 992px) {


    .blog-detail-header {
        padding: 30px 30px 0;
    }

    .blog-detail-content {
        padding: 0 30px 30px;
    }

    .blog-detail-title {
        font-size: 32px;
    }

    .blog-detail-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-detail-header {
        padding: 20px 20px 0;
    }

    .blog-detail-content {
        padding: 0 20px 20px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 12px;
    }

    .blog-detail-image {
        height: 200px;
    }

    .blog-detail-actions {
        padding: 20px;
        flex-direction: column;
    }

    .blog-detail-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.page-not-found-section {
    padding: 120px 0;
}


.error-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    position: relative;
}

    .error-code::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #3498DB, #2C3E50);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.error-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C3E50;
}

.error-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 600px;
}

.error-image {
    max-width: 280px;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.suggestions {
    margin-top: 40px;
    width: 100%;
}

    .suggestions h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #2C3E50;
    }

.suggestion-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    list-style-type: none;
}

    .suggestion-list li a {
        color: #3498DB;
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 500;
    }

        .suggestion-list li a:hover {
            color: #2980B9;
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-message {
        font-size: 16px;
        padding: 0 15px;
    }

    .error-image {
        max-width: 200px;
    }
}

/* Destek Merkezi Stilleri */
.help-center-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.help-search-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.help-search-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.help-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 16px 60px 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #00b74f;
    box-shadow: 0 0 0 4px rgba(0,183,79,0.1);
    outline: none;
}

.search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #00b74f;
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #009940;
}

.search-results {
    position: relative;
    margin: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-results p {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
}

.search-result-item {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-result-item h4 {
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 4px;
}

.result-category {
    color: #666666;
    font-size: 14px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 20px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #f8f9fa;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 28px;
    color: #00b74f;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.category-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* Soru Detay Sayfası Stilleri */
.question-detail-section {
    padding: 60px 0;
    padding-top: 120px;
    background: #f8f9fa;
}

.question-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 32px;
}

.question-header {
    margin-bottom: 32px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.category-badge i {
    color: #00b74f;
}

.question-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.question-meta {
    display: flex;
    gap: 24px;
    color: #666666;
    font-size: 14px;
}

.question-meta i {
    margin-right: 8px;
}

.question-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.question-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.helpful-section {
    text-align: center;
}

.helpful-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.btn-helpful {
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #ffffff;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-helpful:hover {
    background: #f8f9fa;
    border-color: #00b74f;
    color: #00b74f;
}

.related-questions {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 32px;
}

.related-questions h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: #f8f9fa;
    color: #00b74f;
}

.related-item i {
    color: #00b74f;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .help-search-container h1 {
        font-size: 36px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .question-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .help-search-container h1 {
        font-size: 28px;
    }

    .help-subtitle {
        font-size: 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .question-header h1 {
        font-size: 24px;
    }

    .question-meta {
        flex-direction: column;
        gap: 12px;
    }

    .question-container,
    .related-questions {
        padding: 20px;
    }
}

/* Kategori Detay Sayfası Stilleri */
.category-detail-section {
    padding: 60px 0;
    padding-top: 120px;
    background: #f8f9fa;
}

.category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.category-icon-large {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: #ffffff;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-icon-large i {
    font-size: 40px;
    color: #00b74f;
}

.category-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.category-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

.questions-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.questions-grid {
    display: grid;
    gap: 24px;
}

.question-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.question-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.question-content h3 i {
    color: #00b74f;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.question-preview {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.question-meta {
    display: flex;
    gap: 20px;
    color: #888888;
    font-size: 14px;
    margin-bottom: 20px;
}

.question-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.question-meta i {
    color: #00b74f;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #00b74f;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #009940;
}

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

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

.no-questions {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.no-questions i {
    font-size: 48px;
    color: #cccccc;
    margin-bottom: 16px;
}

.no-questions p {
    color: #666666;
    font-size: 18px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .category-header h1 {
        font-size: 32px;
    }

    .category-description {
        font-size: 16px;
    }

    .question-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .category-header {
        margin-bottom: 40px;
    }

    .category-icon-large {
        width: 80px;
        height: 80px;
    }

    .category-icon-large i {
        font-size: 32px;
    }

    .category-header h1 {
        font-size: 28px;
    }

    .questions-container {
        padding: 0 16px;
    }

    .question-card {
        padding: 20px;
    }

    .question-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-icon i {
    font-size: 24px;
    color: #00b74f;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-card a {
    color: #00b74f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #009940;
}

.contact-main-section {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    padding: 60px 0;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.address-info {
    display: grid;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-item i {
    font-size: 24px;
    color: #00b74f;
    margin-top: 4px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 0;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: #f8f9fa;
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #00b74f;
    box-shadow: 0 0 0 4px rgba(0,183,79,0.1);
    outline: none;
}

.text-danger {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}

.alert {
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-map-section {
    background: #f0f0f0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px;
    }

    .map-container {
        height: 350px;
    }
}

.validation-summary-errors {
    color: #f8f9fa;
    margin-top: 4px;
    font-size: 14px;
    padding: 24px;
    background: #7e8fa1;
    list-style-position: inside;
    margin-bottom: 20px;
}

/* Blog Dil Seçimi Tab Stilleri */
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    padding: 0.75rem 1.25rem;
    color: #6c757d;
    font-weight: 500;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    cursor: pointer;
}

.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    color: #495057;
}

.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.tab-content {
    padding: 1rem 0;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.blog-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.lang-resource-section {
    padding: 60px 0;
    padding-top: 120px;
    background: #f8f9fa;
}

.question-section {
    background: #f8f9fa;
    padding: 60px 0;
}