* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
}
/* BEYAZIMSI YARATICI HOW IT WORKS BÖLÜMÜ - Mevcut .how-it-works CSS'inin yerine kullanın */

.how-it-works {
    background: #ffffff; /* Tamamen beyaz arka plan */
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Animated background shapes */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.how-it-works .section-title {
    text-align: center;
    color: #0d47a1; /* Başlığı mavi yaptık */
    font-size: 3.2em;
    font-weight: 700; /* 800'den 700'e düşürdüm */
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    /* Gradient text efektini kaldırdım - normal renk kullanıyorum */
}

.process-flow {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

/* Bağlantı çizgisi - daha yaratıcı */
.timeline-path {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        #3b82f6 0%, 
        #8b5cf6 25%, 
        #06b6d4 50%, 
        #10b981 75%, 
        #f59e0b 100%);
    z-index: 1;
    border-radius: 2px;
    opacity: 0.6;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-bubble {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 25px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

/* Her adım için özel renkler */
.step-wrapper:nth-child(1) .step-bubble {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #3b82f6;
}

.step-wrapper:nth-child(2) .step-bubble {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    border-color: #8b5cf6;
}

.step-wrapper:nth-child(3) .step-bubble {
    background: linear-gradient(135deg, #cffafe, #a7f3d0);
    border-color: #06b6d4;
}

.step-wrapper:nth-child(4) .step-bubble {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
}

.step-bubble:hover {
    transform: translateY(-15px) scale(1.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Floating number badge */
.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #0d47a1; /* Mavi arka plan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4); /* Mavi gölge */
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0, 0, 0); }
    40%, 43% { transform: translate3d(0, -8px, 0); }
    70% { transform: translate3d(0, -4px, 0); }
    90% { transform: translate3d(0, -2px, 0); }
}

.step-icon {
    font-size: 2.8em;
    transition: all 0.4s ease;
}

.step-wrapper:nth-child(1) .step-icon { color: #3b82f6; }
.step-wrapper:nth-child(2) .step-icon { color: #8b5cf6; }
.step-wrapper:nth-child(3) .step-icon { color: #06b6d4; }
.step-wrapper:nth-child(4) .step-icon { color: #f59e0b; }

.step-bubble:hover .step-icon {
    transform: scale(1.2) rotate(360deg);
}

.step-details {
    text-align: center;
    max-width: 250px;
}

.step-title {
    color: #1e293b;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Yeni yaratıcı geçiş elementi */
.transformation-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    position: relative;
}

.magic-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.magic-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite reverse;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

.magic-wand {
    font-size: 3.5em;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(15deg) scale(1.1); }
    75% { transform: rotate(-15deg) scale(1.1); }
}

/* Sonuç paneli */
.results-dashboard {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.results-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981, #f59e0b);
}

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

.results-title {
    color: #1e293b;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    color: #64748b;
    font-size: 1.1em;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6); /* Eski gradient'i geri getirdim */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-icon i {
    color: white;
    font-size: 1.5em;
}

.benefit-title {
    color: #1e293b;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-description {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Responsive tasarım */
@media (max-width: 1200px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .timeline-path {
        display: none;
    }
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet'te 2 sütun */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works .section-title {
        font-size: 2.5em;
        margin-bottom: 60px;
        font-weight: 700; /* Mobilde de aynı font weight */
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-bubble {
        width: 100px;
        height: 100px;
    }

    .step-icon {
        font-size: 2.2em;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .magic-circle {
        width: 120px;
        height: 120px;
    }

    .magic-wand {
        font-size: 2.8em;
    }

    .results-dashboard {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .results-title {
        font-size: 1.8em;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 80px 15px;
    }

    .step-bubble {
        width: 90px;
        height: 90px;
    }

    .step-icon {
        font-size: 2em;
    }

    .benefit-card {
        padding: 25px;
    }
}

.steps-container {
    display: flex;
    justify-content: center; /* Center items when they don't fill the row */
    flex-wrap: nowrap; /* Prevent wrapping by default for horizontal flow */
    gap: 25px; /* Slightly increased space between cards */
    margin: 0 auto; /* Center the container itself */
    max-width: 1500px; /* Increased max width to accommodate wider cards */
    overflow-x: auto; /* Enable horizontal scrolling if cards can't fit */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: 20px; /* Space for scrollbar if present */
}

.step-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 20px; /* Increased padding */
    width: 200px; /* Increased width for all step cards */
    min-height: 220px; /* Ensure consistent height for all step cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Prevent shrinking too much */
}

.step-card:hover {
    transform: translateY(-12px) scale(1.01); /* Adjusted hover effect */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* background: linear-gradient(to right, #007bff, #00c6ff); /* Gradient top border */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    font-size: 3.2em; /* Slightly larger icon */
    color: #007bff; /* Icon color */
    margin-bottom: 18px; /* Adjusted margin */
    transition: color 0.3s ease;
}

.step-card:hover .step-icon {
    color: #0056b3; /* Darker on hover */
}

.step-card h3 {
    color: #34495e; /* Darker text color */
    font-size: 1.5em; /* Slightly larger heading */
    margin-bottom: 10px; /* Adjusted margin */
    font-weight: 600;
}

.step-card h3 span {
    display: block;
    margin-top: 5px;
}

.step-card p {
    color: #7f8c8d; /* Lighter text color */
    font-size: 0.9em; /* Slightly larger paragraph text */
    line-height: 1.6;
}

/* Equals Card Styling */
.equals-card {
    background: #e6f2ff; /* Light blue background for equals card */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #cce0ff;
    padding: 0;
    width: 90px; /* Slightly wider width for equals sign */
    min-height: 140px; /* Slightly taller height for equals sign */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: none; /* No hover effect for equals card */
}

.equals-card::before {
    display: none; /* Hide gradient border for equals card */
}

.equals-icon {
    font-size: 4em; /* Larger equals icon */
    color: #007bff; /* Color of the equals icon */
    font-weight: 300;
    animation: bounceIn 1s ease-out; /* Animation for the icon */
}

/* Keyframe for bounceIn animation */
@keyframes bounceIn {
    0% { transform: scale(0.1); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

/* Results Card Styling - Gradient Lacivert ve Mavi */
.results-card {
    background: linear-gradient(to bottom right, #1C365C, #4A90E2); /* Lacivertten açık maviye gradyan */
    color: #fff; /* White text for contrast */
    text-align: left; /* Left alignment for list items */
    width: 250px; /* Wider width for results card */
    min-height: 270px; /* Ensure it's tall enough for list */
    padding: 30px 25px; /* More padding for list */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Deeper shadow */
    border: none; /* Remove border for a cleaner look */
    position: relative; /* Needed for pseudo-elements */
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0; /* Mavi vurgu çizgisini kaldırır */
    transform: none; /* No initial transform */
    transition: none; /* No hover transition */
    border-radius: 15px 15px 0 0; /* Only top corners rounded */
}

.results-card h3 {
    color: #E0FFFF; /* Açık mavi/gök mavisi tonu başlık için */
    margin-bottom: 20px;
    font-size: 1.8em; /* Larger heading size */
    font-weight: 700;
}

.results-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-card ul li {
    font-size: 1em; /* Adjusted font size for list items */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 10px; /* More space between list items */
    position: relative;
    padding-left: 28px; /* Space for custom bullet */
    opacity: 0.9; /* Slightly transparent for depth */
}

.results-card ul li:last-child {
    margin-bottom: 0;
}

.results-card ul li::before {
    content: '\2713'; /* Checkmark unicode character */
    color: #E0FFFF; /* Onay işareti için açık mavi/gök mavisi */
    font-size: 1.4em; /* Larger checkmark */
    position: absolute;
    left: 0;
    top: 0;
    line-height: inherit;
}


/* Responsive adjustments */
/* For very wide screens, allow them to stay on one line without wrapping */
@media (min-width: 1350px) { /* Adjusted breakpoint for wider cards */
    .steps-container {
        flex-wrap: nowrap; /* Ensure no wrapping */
        overflow-x: hidden; /* Hide scrollbar if not needed */
    }
}

@media (max-width: 1349px) { /* New breakpoint for wrapping */
    .steps-container {
        flex-wrap: wrap; /* Allow wrapping on smaller desktop screens */
        justify-content: center; /* Center cards when they wrap */
    }
    .step-card {
        width: calc(33.33% - 25px); /* 3 cards per row */
        min-height: 220px; /* Adjust height */
    }
    .equals-card {
        width: 100px; /* Slightly wider */
        min-height: 150px;
    }
    .results-card {
        width: calc(100% - 25px); /* Full width for results card if other cards are 1/3 */
        min-height: 250px;
    }
    /* If the equals card ends up on its own row, center it */
    .steps-container > .equals-card {
        margin: 20px auto; /* Center with auto margins if it's a standalone row */
    }
}

@media (max-width: 992px) {
    .step-card {
        width: calc(50% - 25px); /* 2 cards per row on tablets */
        min-height: 200px;
        padding: 25px 15px;
    }
    .equals-card {
        width: 90px; /* Keep equals card smaller */
        min-height: 140px;
        order: unset; /* Reset order if it causes issues, depends on flex-wrap */
    }
    .results-card {
        width: calc(100% - 25px); /* Full width for results card on tablets */
        min-height: unset; /* Allow height to adjust */
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works .section-title {
        font-size: 2.2em; /* Slightly larger title for mobile */
        margin-bottom: 40px;
    }

    .step-card, .equals-card, .results-card {
        width: 90%; /* Single column layout for all cards on mobile */
        min-height: unset; /* Allow height to adjust to content */
        padding: 20px 15px;
    }

    .equals-card {
        width: 80px; /* Still smaller */
        height: 120px; /* Fixed height for equals card on mobile */
        margin-top: 15px; /* Space below if it wraps */
    }

    .equals-icon {
        font-size: 3.5em;
    }

    .step-card h3 {
        font-size: 1.3em;
    }

    .step-card p, .results-card ul li {
        font-size: 0.85em;
    }

    .results-card h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
}
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 110px;
}
.header-right-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Adjust gap as needed */
    position: absolute; /* Position relative to the header */
    right: 2rem; /* Adjust right margin */
    top: 50%; /* Vertically center */
    transform: translateY(-50%); /* Fine-tune vertical centering */
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: flex-start; /* İçerikleri sola dayalı */
    align-items: center; /* Tüm öğeleri dikeyde ortalar */
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%; /* Header'ın tam yüksekliğini kaplar */
}
.logo{
    margin-top: 5px;
    margin-left: 0; /* Changed from -8.5rem to match hero-main-text margin */
    flex-shrink: 0;
}
.logo img {
    height: 100px;
    max-width: 100%;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem; /* Changed from margin-right: 24rem to margin-left: 2rem */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-button .submit-btn {
    background-color: #0056b3;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: relative;
    top: -5px; /* Move up by 5 pixels */
}

.nav-button .submit-btn:hover {
    background-color: #0056b3;
}

.nav-button .cta-btn {
    /* Remove previous positioning that caused issues */
    transform: none; /* Remove translateX */
    position: static; /* Reset to default positioning */
    top: auto;
}
/* Mobile Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}
/* Responsive Language Switcher */
.language-switcher {
    position: static; /* Reset to default positioning within the flex container */
    top: auto;
    right: auto;
}

.language-select {
    position: relative;
    display: inline-block;
    border: none;
}

.language-select select {
    padding: 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: rgb(50, 50, 50);
    text-align: center;
}

.language-select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    color: rgb(82, 81, 81);
    pointer-events: none;
}

select:focus {
    outline: none;
}

body {
    padding-top: 70px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Responsive Header */
.nav-links a:hover {
    color: #1d1f20;
}
.demo-form {
    padding: 60px 20px;
    background: #1a237e;
    color: white;
    text-align: center;
}

.section-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}
.form-group label {
    display: block;      
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 50px;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 480px) {
    .language-switcher {
        margin-top: 0.5rem;
    }
}
.submit-btn:hover {
    background-color: #1976d2;
}

/* Responsive Hero Section */
.hero-main {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    margin-bottom: 0;
    background-image: url('../images/busi-introduce.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 455px; /* Adjust this value as needed */

}

.hero-main-text {
    flex: 1;
    padding-right: 2rem;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: adds a semi-transparent white background to make text more readable */
    margin: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: 2rem;
    margin-top: 1rem;
    color: #333;
    padding: 10px;
    border-radius: 5px;
}

.hero-main-title {
    margin-top: 3.3rem;
    font-size: 2.8rem; /* Made larger */
    line-height: 1.4;
    max-width: 700px;
    margin-left: 2rem;
    word-spacing: 0.1rem;
    color: #032962;
    padding: 10px;
    border-radius: 5px;
}

.hero {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e193b;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 0; 
}

.hero + .hero-main {
    margin-top: 0;
}

.hero-primary {
    background-color: #f8f8f8;
    border-bottom: 1px solid #fcfcfc;
}

.hero-secondary {
    background-color: #f8f8f8;
    border-top: 1px solid #fcfcfc;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 2rem;
    margin-top: 4.5rem;
    margin-bottom: 1rem;
    color: #0d47a1;
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #495057;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Blog Section Responsive */
.blog-section {
    padding: 60px 20px;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* CTA Buttons Responsive */

.cta-btn {
    background-color: #0d47a1;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    color: #fff;
    margin: 0.5rem;
}
.submit-btn {
    background-color: #0d47a1;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    color: #fff;
    margin: 0.5rem;
}

.primary-btn {
    background-color: #0d47a1;
    display: table;
    margin: 20px auto 0 auto;
}

.primary-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}
.nav-button .login-text {
    color: #333; /* Koyu gri renk */
    text-decoration: none; /* Alt çizgi yok */
    font-weight: 500; /* Orta kalınlıkta yazı */
    transition: color 0.3s ease; /* Renk geçiş efekti */
    margin-right: 15px; /* Demo butonuyla arasındaki boşluk */
    font-size: 1.0rem;
    cursor: pointer;
}

.nav-button .login-text:hover {
    color: #0056b3; /* Hover durumunda mavi renk */
    text-decoration: none; /* Hover'da da alt çizgi yok */
}
/* Features Section Responsive */
.features {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.features-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 250px;
    max-width: 300px;
    margin-bottom: 20px;
}

.feature-card i {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Section Titles Responsive */
.section-title {
    font-size: 1.8em;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

#features .section-title {
    color: #0d47a1;
    text-align: center;
    margin-bottom: 15px;
}

#partners .section-title {
    color: #0d47a1;
    text-align: center;
    margin-bottom: 15px;
}

/* Demo Form Responsive */
.demo-form {
    padding: 60px 20px;
    background: #1a237e;
    color: white;
    text-align: center;
}

.demo-form-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

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

.form-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.partners {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.partners .section-title {
    color: #0d47a1;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 700;
}

.partners-grid {
    display: flex;
    align-items: center; /* Logoları dikey olarak ortalar */
    justify-content: center; /* Logoları yatay olarak ortalar */
    gap: 40px; /* Logolar arası boşluk */
    flex-wrap: nowrap; /* Tek satırda kalmasını sağlar */
    overflow-x: auto; /* Yatay kaydırma ekler */
    padding: 20px 0; /* Üst ve alt padding */
    margin: 0 auto;
    max-width: 1200px;
    /* Kaydırma çubuğunu gizle */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Webkit tabanlı tarayıcılar için kaydırma çubuğunu gizle */
.partners-grid::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 auto; /* Kartların boyutunu korur, büzülmesini engeller */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px; /* Minimum genişlik */
    max-width: 200px; /* Maksimum genişlik */
    height: 100px; /* Sabit yükseklik - tüm logolar aynı hizada */
    padding: 0; /* Padding'i kaldır */
    background: transparent; /* Arka planı şeffaf yap */
    border-radius: 0; /* Yuvarlatılmış köşeleri kaldır */
    box-shadow: none; /* Gölgeyi kaldır */
    transition: transform 0.3s ease; /* Sadece transform animasyonu kalsın */
    text-align: center;
    border: none; /* Kenarlığı kaldır */
}

.partner-card:hover {
    transform: translateY(-5px); /* Sadece yukarı hareket */
    box-shadow: none; /* Hover'da da gölge olmasın */
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Oranları koruyarak sığdırır */
    margin: 0; /* Margin'i sıfırla */
}

/* TechIstanbul ve Entertech logoları için özel boyutlandırma */
.partner-card.tech-istanbul img,
.partner-card.entertech img {
    max-width: 120%; /* %20 daha büyük */
    max-height: 120%; /* %20 daha büyük */
}

/* Tablet görünümü - Yatay kaydırılabilir */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .partners-grid {
        gap: 30px;
        padding: 15px 10px;
        justify-content: flex-start; /* Tablet boyutunda sola yaslanmış başlasın */
        overflow-x: auto; /* Yatay kaydırma aktif */
    }

    .partner-card {
        min-width: 140px;
        max-width: 180px;
        height: 90px;
        padding: 0; /* Tablet'te de padding kaldır */
    }

    .partners .section-title {
        font-size: 2em;
        margin-bottom: 35px;
    }
}

.partner-card.tech-istanbul img,
.partner-card.entertech img {
    max-width: 110%;
    max-height: 110%;
}
/* FAQ Section Responsive */
.faq {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.faq-container {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #0d47a1;
}

/* Footer Responsive */
footer {
    background-color: #ffffff;
    color: #110a0a;
    width: 100%;
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    padding: 20px;
}
#success-dialog {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}
#success-dialog p {
    font-size: 18px;
    margin-bottom: 20px;
}
#success-dialog button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
#success-dialog button:hover {
    background-color: #45a049;
}
.info-text {
    margin-top: 20px; /* Yukarıdan boşluk oluşturur */
    font-size: 14px; /* İsteğe bağlı: yazı boyutunu ayarlar */
    text-align: center; /* İsteğe bağlı: yazıyı ortalar */
}
.info-text a {
    color: white;
}
/* Tablet görünümü - Yatay kaydırılabilir */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .partners-grid {
        gap: 30px;
        padding: 15px 10px;
        justify-content: flex-start; /* Tablet boyutunda sola yaslanmış başlasın */
        overflow-x: auto; /* Yatay kaydırma aktif */
    }

    .partner-card {
        min-width: 140px;
        max-width: 180px;
        height: 90px;
        padding: 12px;
    }

    .partners .section-title {
        font-size: 2em;
        margin-bottom: 35px;
    }
}
    /* Mobil görünümü - Alt alta */
@media screen and (max-width: 768px) {
    .partners-grid {
        flex-direction: column; /* Alt alta sıralama */
        align-items: center; /* Ortalama */
        gap: 15px; /* Daha az boşluk */
        padding: 15px 10px;
        overflow-x: visible; /* Yatay kaydırmayı kapat */
    }

    .partner-card {
        width: 120px; /* Çok daha küçük genişlik */
        max-width: 120px; /* Maksimum genişlik */
        min-width: 120px; /* Minimum genişlik */
        height: 60px; /* Daha küçük yükseklik */
        padding: 0; /* Padding sıfır */
    }

    .partner-card.tech-istanbul img,
    .partner-card.entertech img {
        max-width: 100%; /* Mobilde özel büyütme kaldır */
        max-height: 100%; /* Mobilde özel büyütme kaldır */
    }

    .partners .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
}


/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .hero-subtitle {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
        font-size: 1.1rem;
        text-align: center;
    }
    .logo img {
        height: 90px; /* Slightly smaller logo on tablets */
        max-width: 100%;
    }

   .logo {
        margin: 0;
        align-self: flex-start; /* Logo sol tarafta kalacak */
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        height: 90vh;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.5rem;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-menu.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar2 {
        opacity: 0;
    }

    .hamburger-menu.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-container {
        justify-content: space-between;
        flex-direction: row;
        padding: 0.5rem 1rem;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    .nav-button {
        display: none; /* Hide CTA button on tablet and mobile */
    }

    .language-switcher {
        display: none; /* Hide language switcher on tablet and mobile */
    }

    .hero-main-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    .header-right-controls {
        position: absolute;
        right: 1rem; /* Smaller right margin on mobile */
        gap: 0.8rem; /* Smaller gap on mobile */
    }

    .hero-main-title {
        font-size: 1.9rem;
        margin-right: 1.2rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1em;
    }

    .blog-grid,
    .features-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .blog-card,
    .feature-card,
    .partner-card {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 8px;
    }
    .nav-container {
        justify-content: space-between;
        flex-direction: row; /* Yatay düzende kalmasını sağlar */
        padding: 0.5rem 1rem;
    }
    .logo img {
        height: 100px; /* Mobil görünümde daha büyük logo */
        transform: translateY(1px);
    }
    
    .nav-button {
        display: none; /* Hide demo request button on mobile */
    }
    .language-switcher {
        display: none;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        height: 90vh;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.5rem;
    }
    .nav-button .cta-btn {
        padding: 0.4rem 0.8rem; /* Smaller padding for button on mobile */
        font-size: 0.9rem; /* Smaller font size for button on mobile */
    }
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-menu.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar2 {
        opacity: 0;
    }

    .hamburger-menu.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media screen and (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
        margin-left: 0.3rem;
        margin-right: 0.3rem;
        padding: 5px;
    }
    .hero {
        padding: 2rem 1rem;
    }
    .header-right-controls {
        right: 0.5rem; /* Even smaller right margin on very small screens */
        gap: 0.5rem;
    }

    .section-title,
    .demo-form-title {
        font-size: 1.5em;
    }

    .language-select select {
        font-size: 14px;
    }
    .logo img {
        height: 80px; /* Çok küçük ekranlarda biraz daha küçük ama hala görünür */
    }
}

/* Blog Post Styles */
.blog-post-container {
    max-width: 800px;
    margin: 120px auto 40px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.blog-post-title {
    color: #0d47a1;
    font-size: 2.5em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-post-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.blog-post-meta span {
    margin: 0 10px;
}

.blog-post-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1em;
}

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

.blog-post-content h2 {
    color: #0d47a1;
    margin: 30px 0 15px;
    font-size: 1.8em;
}

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

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    color: #0d47a1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-to-home:hover {
    color: #1976d2;
}

.back-to-home i {
    margin-right: 5px;
}

/* Blog Post Responsive Styles */
@media screen and (max-width: 768px) {
    .blog-post-container {
        padding: 15px;
        margin-top: 100px;
    }

    .blog-post-title {
        font-size: 2em;
    }

    .blog-post-content {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    .blog-post-container {
        margin-top: 80px;
    }

    .blog-post-title {
        font-size: 1.8em;
    }

    .blog-post-meta span {
        display: block;
        margin: 5px 0;
    }
}
/* Blog bölümündeki başlık için özel stil */
.blog-section .section-title {
    color: #0d47a1;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 700;
}

/* Responsive ayarlamalar */
@media screen and (max-width: 768px) {
    .blog-section .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .blog-section .section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
}
/* BU KODU CSS DOSYANIZIN EN SONUNA EKLEYİN - Mobil Partners Override */
@media screen and (max-width: 768px) {
    /* Partners bölümü mobil override - tüm diğer stilleri geçersiz kıl */
    .partners-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important; /* Biraz daha fazla boşluk */
        padding: 25px 10px !important;
        overflow-x: visible !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important; /* Grid sistemini kapat */
    }

    .partner-card {
        display: flex !important;
        width: 180px !important; /* Daha büyük genişlik */
        max-width: 180px !important;
        min-width: 180px !important;
        height: 90px !important; /* Daha büyük yükseklik */
        max-height: 90px !important;
        min-height: 90px !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        flex-basis: auto !important;
    }

    /* TechIstanbul ve Entertech mobilde normal boyut */
    .partner-card.tech-istanbul img,
    .partner-card.entertech img {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        gap: 20px !important; /* Daha fazla boşluk */
        padding: 20px 5px !important;
    }

    .partner-card {
        width: 150px !important; /* Daha büyük */
        max-width: 150px !important;
        min-width: 150px !important;
        height: 75px !important; /* Daha büyük yükseklik */
        max-height: 75px !important;
        min-height: 75px !important;
    }
}
/* BU KODU CSS DOSYANIZIN EN SONUNA EKLEYİN - Mobil Partners Override */
@media screen and (max-width: 768px) {
    /* Partners bölümü mobil override - tüm diğer stilleri geçersiz kıl */
    .partners-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important; /* Biraz daha fazla boşluk */
        padding: 25px 10px !important;
        overflow-x: visible !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important; /* Grid sistemini kapat */
    }

    .partner-card {
        display: flex !important;
        width: 200px !important; /* 180px'dan büyüttüm */
        max-width: 200px !important;
        min-width: 200px !important;
        height: 100px !important; /* 90px'dan büyüttüm */
        max-height: 100px !important;
        min-height: 100px !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        flex-basis: auto !important;
    }

    .partners .section-title {
        margin-bottom: 50px !important; /* Mobilde de daha fazla boşluk */
    }

    /* TechIstanbul ve Entertech mobilde normal boyut */
    .partner-card.tech-istanbul img,
    .partner-card.entertech img {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        gap: 20px !important; /* Daha fazla boşluk */
        padding: 20px 5px !important;
    }

    .partner-card {
        width: 170px !important; /* 150px'dan büyüttüm */
        max-width: 170px !important;
        min-width: 170px !important;
        height: 85px !important; /* 75px'dan büyüttüm */
        max-height: 85px !important;
        min-height: 85px !important;
    }

    .partners .section-title {
        margin-bottom: 40px !important; /* Küçük ekranlarda da daha fazla boşluk */
    }
}
/* MOBIL DİL DEĞİŞTİRİCİ - MEVCUT CSS'İNİZİN EN SONUNA EKLEYİN */

/* Mobil dil değiştirici butonu */
.mobile-lang-toggle {
    display: none; /* Varsayılan olarak gizli */
    background: linear-gradient(135deg, #0d47a1, #1976d2); /* Mavi gradient arka plan */
    border: 2px solid #0d47a1;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-lang-toggle:hover {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.4);
}

.mobile-lang-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(13, 71, 161, 0.3);
}

/* Tablet ve mobil görünümü - 1024px ve altı */
@media screen and (max-width: 1024px) {
    /* Desktop öğelerini gizle */
    .language-switcher {
        display: none !important;
    }
    
    .nav-button {
        display: none !important;
    }
    
    /* Mobil dil butonunu göster */
    .mobile-lang-toggle {
        display: block !important;
    }
    
    /* Header sağ kontroller - DÜZELTİLMİŞ */
    .header-right-controls {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important; /* Daha az boşluk */
        position: absolute !important;
        right: 3.5rem !important; /* Hamburger menü için daha fazla yer */
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1000 !important;
        flex-direction: row !important;
    }
    
    /* Hamburger menü konumu - nav-container içindeki */
    .nav-container > .hamburger-menu {
        display: flex !important;
        position: absolute !important;
        right: 1rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }
    
    /* header-right-controls içindeki hamburger'ı gizle */
    .header-right-controls .hamburger-menu {
        display: none !important;
    }
}

/* Mobil görünüm - 768px ve altı */
@media screen and (max-width: 768px) {
    .header-right-controls {
        right: 3rem !important; /* Biraz daha sola */
        gap: 10px !important;
    }
    
    .nav-container > .hamburger-menu {
        right: 0.8rem !important;
    }
    
    .mobile-lang-toggle {
        padding: 5px 10px !important;
        font-size: 12px !important;
        min-width: 40px !important;
    }
}

/* Çok küçük ekranlar - 480px ve altı */
@media screen and (max-width: 480px) {
    .header-right-controls {
        right: 2.5rem !important;
        gap: 8px !important;
    }
    
    .nav-container > .hamburger-menu {
        right: 0.5rem !important;
    }
    
    .mobile-lang-toggle {
        padding: 4px 8px !important;
        font-size: 11px !important;
        min-width: 35px !important;
    }
}