@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap&subset=latin-ext');


html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, html {
  font-family: Open Sans, sans-serif !important;
}

:root {
    --primary-color: #333;
    --text-color: #333;
    --menu-bg: #1a1a1a;
    --menu-text: #fff;
    --marquee-color: #768ca2;
    --accent-color: #e0df00;
    --line-color: #1C355E;
    --bg-light: #f8f8f8;
    --secondary-color: #8b8b8b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: static;
    width: 100%;
    background-color: #1C355E;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Logo, Nav Linkler ve Sağ Taraftaki Öğeleri dağıtmak için */
    align-items: center;
    padding: 0 2rem;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    height: 73px;
    overflow: visible;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Arama, Dil Seçici ve Menü Toggle arasında boşluk */
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: 'light', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase; /* Tüm başlıkların büyük harf olmasını sağlar */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.nav-link::after {
    content: '';
    position: absolute;
    height: 1px; /* Alt çizginin kalınlığını ayarlar (1px'e düşürüldü) */
    bottom: 0;
    left: 0;
    background-color: #e0df00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.search-container {
    display: none;
    align-items: center;
}

.search-container #search-input {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.search-container #search-input.active {
    width: 0;
    opacity: 0;
    visibility: hidden;
}

.search-icon {
    cursor: default;
    padding: 5px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Arama sonuçları vurgusu */
.highlight {
    background-color: yellow; /* Vurgu rengi */
    color: black; /* Vurgu metin rengi */
    font-weight: bold;
    transition: background-color 0.3s ease; /* Geçiş efekti */
}

/* Aktif vurgulanan öğe için daha belirgin bir stil */
.highlight.active-highlight {
    background-color: orange; /* Aktif vurgu rengi */
    box-shadow: 0 0 5px 2px rgba(255, 165, 0, 0.7); /* Hafif bir gölge */
    border-radius: 3px;
    padding: 2px 0; /* Hafif iç boşluk */
}


.search-icon svg {
    width: 20px; /* İkon boyutu */
    height: 20px; /* İkon boyutu */
    color: white; /* İkon rengi */
}

.search-input {
    border: none;
    border-bottom: 1px solid #ccc; /* Alt çizgi */
    padding: 5px 0;
    font-size: 0.9rem;
    outline: none; /* Odaklandığında kenarlık olmasın */
    width: 0; /* Başlangıçta gizli */
    opacity: 0; /* Başlangıçta gizli */
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out; /* padding de geçişe eklendi */
    margin-left: 10px; /* İkon ile arasında boşluk */
    box-sizing: border-box; /* padding'in genişliği etkilememesi için */
}

.search-input.active {
    width: 150px; /* Açıldığında genişliği */
    opacity: 1; /* Açıldığında görünür */
    padding: 5px 10px; /* Açıldığında padding */
}
.language-selector {
    position: relative;
    cursor: pointer;
    color: white;
}


.arrow {
    font-size: 0.7rem;
}

.dropdown-menu {
    position: fixed;
    top: 73px;
    background: white;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    transition: opacity 0.3s ease;
    padding-top: 20px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item:first-child .dropdown-menu {
    left: 5%;
    right: 5%;
    width: 90%;
    padding: 2rem;
}

.nav-item:not(:first-child) .dropdown-menu {
    left: auto;
    right: auto;
    width: auto;
    min-width: 200px;
    padding: 1rem;
}

.dropdown-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-item:not(:first-child) .dropdown-inner.single-column {
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: 200px;
    margin: 0;
    gap: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-column h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.dropdown-column a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.dropdown-column a:hover {
    color: var(--primary-color);
}

.nav-item:not(:first-child) .dropdown-inner.single-column a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-item:not(:first-child) .dropdown-inner.single-column a:hover {
    color: var(--primary-color);
    background-color: rgba(0,0,0,0.05);
}

.technology-intro {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
    padding-left: 40px; /* DÜŞÜRÜLDÜ */
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px 0 40px; /* DÜŞÜRÜLDÜ */
}

.tech-item {
    margin-bottom: 20px;
    position: relative;
}

.tech-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.tech-item p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 16px;
}

/* Menu Toggle Styles */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 2rem;
    z-index: 1001;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: flex-end;
}

.line {
    display: block;
    background-color: var(--text-color);
    height: 2px;
    transition: 0.3s;
}

.line-short {
    width: 15px;
}

.line-medium {
    width: 20px;
}

.line-long {
    width: 25px;
}

/* Full Menu Styles */
.full-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--menu-bg);
    z-index: 2000;
    transition: 0.5s ease;
    overflow-y: auto;
    display: block;
}

.full-menu.active {
    right: 0;
}

/* Kapatma İkonu (Yeni Konumlandırma) */
close-menu {
    position: absolute;
    top: 35px; /* Logo ile aynı hizada olması için */
    right: 30px;
    color: var(--menu-text);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1002;
}

/* menu-content: Sol ve Sağ tarafı yönetir */
.menu-content {
    display: flex;
    height: 100%;
    color: var(--menu-text);
    flex-direction: row;
    padding-top: 20px;
}


/* Sol Taraf - Site Bilgileri */
.menu-info {
    width: 40%; /* Masaüstünde sol tarafın genişliği */
    background-color: #1C355E;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-info .logo {
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #8b8b8b;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
}

/* Sağ Taraf - Menü Öğeleri (Ana Navigasyon) */
.menu-navigation {
    width: 60%;
    background: var(--menu-bg);
    padding: 3rem 2rem;
    position: relative;
}

/* menu-navigation içindeki menu-header artık sadeleşiyor */
.menu-header {
    display: none; /* Gereksiz header'ı gizle */
}

/* menu-header içindeki logo artık gereksiz, silinmeli */
.menu-header .logo {
    display: none; /* Bu logo HTML'den silindiği için bu kurala gerek kalmaz */
}
.menu-header .logo img { /* Bu kural da gereksiz */
    display: none;
}


/* Menü Öğeleri Listesi */
.menu-items {
    margin-top: 40px;
    text-transform: uppercase; 
}

.menu-link {
    display: block;
    color: var(--menu-text);
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F6EB61;
    transition: width 0.3s ease;
}

.menu-link:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

/* Alt Menü ve Diğer Öğeler İçin CSS */
.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item h2 {
    border-bottom: none;
}

.menu-item h2.active {
    color: #fff;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.menu-item h2.active .toggle-icon {
    transform: none;
}

.submenu {
    display: none;
    padding: 1rem 0;
    margin-left: 1rem;
}

.submenu.active {
    display: block;
}

.subsection-content {
    display: none;
    padding: 0.5rem 0 0.5rem 1rem;
}

.subsection-content.active {
    display: block;
}

.submenu a, .subsection-content a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.submenu a:hover, .subsection-content a:hover {
    color: #fff;
}

.submenu-section {
    margin-bottom: 1rem;
}

.submenu-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hero Section Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
}

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 60px;
    padding-left: 30px;
    box-sizing: border-box;
}

.banner-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0;
}

.left-content-block {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    padding-right: 20px;
}

.left-content-block h1.main-heading-line {
    position: relative;
    z-index: 2;
}

.main-heading-line {
    font-size: 7.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0 0 5px 0;
    padding: 0;
    white-space: nowrap;
    color: #1C355E;
    opacity: 0;
    transform: translateX(-150%);
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animasyon geçişi */
}

/* Animasyon tetiklenince uygulanacak */
.main-heading-line.animate { /* Bu sınıf JS ile eklenecek */
    animation: slideInFromLeft 1.0s ease-out forwards; /* Animasyon süresini kısaltıyorum */
}

.main-heading-line.animate:nth-child(2) {
    animation-delay: 1.0s;
}

.main-heading-line.animate:nth-child(3) {
    animation-delay: 1.5s;
}

/* Rüzgar gülü wrapper animasyonu */
.windrose-icon-wrapper {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-left: 60px;
    top: 0px;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(-25px) translateX(-150%); /* Başlangıç pozisyonu */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animasyon geçişi */
}

.windrose-icon-wrapper.animate { /* Bu sınıf JS ile eklenecek */
    animation: slideInFromLeft 1s ease-out forwards;
}

/* Rüzgar gülünün sürekli dönmesi */
#rotating-banner-image {
    width: 90px;
    height: 90px;
    animation: wcf_animation_spin 15s linear infinite;
}

/* Alt içerik kısmı */
.bottom-content-area {
    display: grid;
    grid-template-columns: 500px 1fr auto;
    align-items: center;
    gap: 0 40px;
    width: 100%;
    margin-top: 32px;
    padding: 0;
}

.agency-info {
    max-width: 500px;
    width: 100%;
    margin-left: 37vw;
    color: #1C355E;
    justify-self: start;
}

.agency-info h2 {
    opacity: 0;
    transform: translateX(-150%);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.agency-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1C355E;
    margin-top: 13px;
    text-align: justify;
    padding: 0 1px;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0;
    transform: translateX(-150%);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.agency-info.animate-on-scroll h2 {
    animation: slideInFromLeft 1.3s ease-out forwards;
}

.agency-info.animate-on-scroll p {
    animation: slideInFromLeft 1.3s ease-out forwards;
    animation-delay: 1.3s;
}


.line-rozet-group {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-self: end;
}

.horizontal-line {
    width: 250px;
    height: 2px;
    background: #1C355E;
    border: none;
    margin-left: 35vw;
}

.circular-text {
    position: relative;
    color: #1C355E;
    width: 220px;
    height: 220px;
    display: flex;
    margin-left: 2vw;
    justify-content: center;
    align-items: center;
}

.year {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1C355E;
    text-align: center;
    margin-left: -25px;
}

@media (max-width: 1400px) {
    .bottom-content-area {
        /* grid-template-columns: 350px 1fr auto; <-- Bu sabit genişlik sorun yaratıyordu, değiştiriyoruz */
        /* agency-info'yu daha esnek yapıp boşluğu yönetelim */
        grid-template-columns: auto 1fr auto; /* Daha esnek sütunlar */
        gap: 0 24px; /* Boşluğu azalt */
    }
    .agency-info {
        max-width: 400px; /* Daha dar ekranlarda metin bloğunun maksimum genişliğini küçült */
    }
    .horizontal-line { width: 180px; } /* Küçült */
    .circular-text { width: 120px; height: 120px; } /* Küçült */
    .year { font-size: 1.1rem; } /* Yılı da küçült */
}

@media (max-width: 1100px) {
    .bottom-content-area {
        display: flex;
        flex-direction: column; /* Alt alta diz */
        align-items: flex-start; /* Sola hizala */
        gap: 18px;
        /* width: 100%; zaten vardı */
        padding: 0; /* Padding'i sıfırla, main .hero-section padding'i yeterli olmalı */
        margin-left: 0; /* Eğer önceki bir margin varsa kaldır */
    }
    .agency-info {
        max-width: 100%; /* Tam genişlik */
        width: 100%;
        text-align: left;
        margin-left: 0; /* Kaldır */
        padding-right: 0; /* Kaldır */
    }
}

@media (max-width: 1479px) {
    .background-image {
        width: 100%;
        height: 60% !important;
        left: 18vw !important;
    }
    .bottom-content-area {
        gap: 0 15px; /* Sütunlar arası boşluğu daha da azalt */
    }
    .agency-info {
        max-width: 350px; /* Daha da küçült */
        padding-right: 10px; /* Sağdan boşluğu azalt */
    }
    #rotating-banner-image {
        width: 70px;
        height: 70px;
        margin-left: -4vw;
        animation: wcf_animation_spin 15s linear infinite;
    }
    .horizontal-line {
        width: 230px; 
        margin-left: 30vw;
    }
    .circular-text {
        width: 200px; /* Daha da küçült */
        height: 200px;
    }
}

.scroll-down-section {
    display: flex;
    align-items: center;
    position: relative;
}

.social-icons-column-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 20px; /* Üstteki çizgiye olan boşluğunu korumak için gerekli olabilir */
    z-index: 10;
}

.right-side-elements {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* İkonları ve çizgiyi sağa yaslamak için */
    position: absolute; /* Ana container içinde konumlandırmak için */
    top: 52%; /* Dikeyde ortalamak için (gerekirse ayarlanabilir) */
    right: 85%; /* Sağdan boşluk (gerekirse ayarlanabilir) */
    transform: translateY(-50%); /* Dikeyde ortalamayı düzeltmek için */
}

.right-side-elements.animate-on-scroll { /* Bu sınıf JS ile eklenecek */
    opacity: 1;
    transform: translateY(0);
}

.social-icons-container {
    display: flex; /* İkonları yatay sıralamak için */
    align-items: center; /* İkonları dikeyde ortalamak için */
    gap: 15px; /* İkonlar arasındaki boşluk */
}


.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px); /* Başlangıç pozisyonu */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Animasyon geçişi */
}


.right-side-elements.animate-on-scroll .social-icon-link { /* Parent aktif olunca tetiklenecek */
    opacity: 1;
    transform: translateY(0);
}

.social-icon-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon-link img:hover {
    transform: scale(1.1);
}

.right-side-elements.animate-on-scroll .social-icon-link {
    opacity: 1;
    transform: translateY(0);
}

.right-side-elements.animate-on-scroll .social-icon-link:nth-child(1) { transition-delay: 0.2s; }
.right-side-elements.animate-on-scroll .social-icon-link:nth-child(2) { transition-delay: 0.3s; }
.right-side-elements.animate-on-scroll .social-icon-link:nth-child(3) { transition-delay: 0.4s; }
.right-side-elements.animate-on-scroll .social-icon-link:nth-child(4) { transition-delay: 0.5s; }
.right-side-elements.animate-on-scroll .social-icon-link:nth-child(5) { transition-delay: 0.6s; }

.background-image {
    position: absolute;
    top: -2vw;
    left: 45vw !important; /* Daha küçük değer - görseli daha sağa taşır */
    width: 50%;
    height: 50%;
    object-fit: contain;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease-out, left 1.5s ease-out;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
}

.background-image.animate-on-scroll { /* Bu sınıf JS ile eklenecek */
    opacity: 1;
    left: 18.5vw;
}

/* Safari için video optimizasyonları */
@supports (-webkit-appearance: none) {
    .background-image {
        -webkit-transform: translateY(50px);
        -webkit-transition: opacity 2s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 2s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .background-image.animate-on-scroll {
        -webkit-transform: translateY(0);
    }
}

/* Animasyonlar */
@keyframes slideInFromLeft {
    0% { transform: translateX(-150%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes wcf_animation_spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%); /* Aşağıdan başla */
        opacity: 0; /* Görünmez olsun */
    }
    100% {
        transform: translateY(0); /* Kendi pozisyonuna gel */
        opacity: 1; /* Tamamen görünür olsun */
    }
}

@keyframes slideInFromLeftToPosition {
    0% {
        transform: translateX(-100%); /* Başlangıçta soldan dışarıda */
        opacity: 0; /* Görünmez olsun */
    }
    100% {
        transform: translateX(0); /* Kendi orijinal pozisyonuna gelsin */
        opacity: 1; /* Tamamen görünür olsun */
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%); /* Aşağıdan başla */
        opacity: 0; /* Görünmez olsun */
    }
    100% {
        transform: translateY(0); /* Kendi pozisyonuna gel */
        opacity: 1; /* Tamamen görünür olsun */
    }
}


/* Marquee Styles */
.marquee-container {
    background-color: rgb(169, 169, 169);
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    color: rgb(246, 235, 97);
    
}

.marquee-item {
    display: inline-block;
    margin: 0 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Skills Section Styles */
.skill-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: 0; 
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
}

.skills-title {
    font-size: 5rem;
    line-height: 50%;
    margin-bottom: 65px;
    margin-left: 20%;
    font-weight: bolder;
    opacity: 0;
    color: #1C355E;
    transform: translateY(100%); /* Aşağıdan başla */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Yumuşak geçiş */
}

.skills-title.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); /* Kendi orijinal pozisyonuna gel */
}

.skills-title.animate-on-scroll:nth-of-type(2) { 
    transition-delay: 0.2s; 
}

.skills-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.skills-list::before {
    content: '';
    position: absolute;
    left: -25px; /* Gri çizgi ile aynı hizalama */
    top: 0;
    width: 2px;
    height: 100%;
    background: #1C355E; /* Sabit gri çizgi */
    z-index: 0;
}


.skills-list::after {
    content: '';
    position: absolute;
    left: -25px; /* Same left position as the grey line */
    top: 0; /* Initial top position */
    width: 2px;
    height: 0; /* Initial height, will be set by JS */
    background: var(--accent-color); /* Green color */
    z-index: 1; /* Make it appear on top of the grey line */
    transition: top 0.3s ease, height 0.3s ease; /* Smooth transition */
}

.skill-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 950px;
    margin: 0 auto 32px auto;
}

.skill-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.skill-info {
    flex: 1;
    text-align: left;
}

.skill-icon img {
    max-width: 70%; 
    max-height: 70%; 
    object-fit: contain;
    display: block;
}

.skill-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #1C355E;
    transition: color 0.3s ease; /* Mevcut geçişi koru */
    opacity: 0;
    transform: translateX(30px); /* Sağdan biraz dışarıdan başla */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Animasyon geçişi */
}

.skills-section.animate-on-scroll .skill-info h3 {
    opacity: 1;
    transform: translateX(0); /* Kendi orijinal pozisyonuna gel */
}

.skill-item:hover .skill-icon,
.skill-item.active .skill-icon {
    background: var(--accent-color);
}

.skill-info p {
    color: #1C355E;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(30px); /* Sağdan biraz dışarıdan başla */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Animasyon geçişi */
}

.skills-section.animate-on-scroll .skill-info p {
    opacity: 1;
    transform: translateX(0); /* Kendi orijinal pozisyonuna gel */
}

.skills-section.animate-on-scroll .skill-item:nth-child(1) .skill-info h3 { transition-delay: 0.5s; }
.skills-section.animate-on-scroll .skill-item:nth-child(1) .skill-info p { transition-delay: 0.6s; }
.skills-section.animate-on-scroll .skill-item:nth-child(2) .skill-info h3 { transition-delay: 0.7s; }
.skills-section.animate-on-scroll .skill-item:nth-child(2) .skill-info p { transition-delay: 0.8s; }
.skills-section.animate-on-scroll .skill-item:nth-child(3) .skill-info h3 { transition-delay: 0.9s; }
.skills-section.animate-on-scroll .skill-item:nth-child(3) .skill-info p { transition-delay: 1.0s; }
.skills-section.animate-on-scroll .skill-item:nth-child(4) .skill-info h3 { transition-delay: 1.1s; }
.skills-section.animate-on-scroll .skill-item:nth-child(4) .skill-info p { transition-delay: 1.2s; }
.skills-display {
    max-width: 480px !important;
    max-height: 400px !important;
    width: 100% !important;
    height: auto !important;
    margin: 200px 0 0 200px !important;   /* Üstten ve soldan boşluk, sağa ve aşağıya kaydırır */
    display: flex !important;
    align-items: flex-start !important; /* Üstten hizalamak için */
    justify-content: flex-end !important; /* Sağa yaslamak için */
    overflow: hidden !important;
    border-radius: 16px !important;
  }

  .skills-display .skill-image {
    width: 100% !important;
    height: auto !important;
    max-width: 440px !important;      /* Görselin maksimum genişliği */
    max-height: 380px !important;     /* Görselin maksimum yüksekliği */
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
  }

.skills-display.animate-on-scroll {
    opacity: 1;
    transform: translateX(0); /* Kendi orijinal pozisyonuna gel */
}


.skill-image {
    width: 100%; /* Changed from 120% */
    height: 100%; /* Changed from 120% */
    object-fit: cover;
    display: block;
    position: relative;
}


/* Vision Section Styles */
.vision-section {
    background-color: #f8f8f8; /* Arka plan rengi */
    padding: 100px 30px; /* Üst/alt padding ve yan padding */
    display: flex;
    justify-content: center; /* İçeriği yatayda ortala */
    align-items: center; /* İçeriği dikeyde ortala */
    min-height: 80vh; /* Ekran yüksekliğine göre bir minimum yükseklik */
    box-sizing: border-box;
}

.vision-content {
    text-align: center; /* Metinleri ve görseli ortala */
    max-width: 900px; /* İçerik genişliğini sınırlama */
}

.vision-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1C355E;
    opacity: 0;
    transform: translateY(50px); /* Kendi pozisyonunun biraz altından başla */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animasyon geçişi */
}

.vision-title.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); /* Kendi orijinal pozisyonuna gel */
    transition-delay: 0.1s; /* Animasyon gecikmesi */
}

.vision-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1C355E;
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: 0;
    transform: translateY(50px); /* Kendi pozisyonunun biraz altından başla */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animasyon geçişi */
}

.vision-description.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); /* Kendi orijinal pozisyonuna gel */
    transition-delay: 0.3s; /* Başlıktan sonra başlasın */
}

.vision-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    opacity: 0;
    transform: translateY(50px); /* Kendi pozisyonunun biraz altından başla */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animasyon geçişi */
}

.vision-image-container.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); /* Kendi orijinal pozisyonuna gel */
    transition-delay: 0.5s; /* Açıklamadan sonra başlasın */
}

.vision-graphic {
    max-width: 90%;
    height: auto;
    margin-top: -100px;
    display: block;
}

/* Product Team Section Styles */
.product-team-section {
    background-color: #1C355E;
    padding: 200px 40px;
    color: #000;
    opacity: 0; /* Başlangıçta görünmez olsun */
    transition: opacity 1s ease-out; /* Opaklık geçişi */
}

.product-team-section.animate-on-scroll {
    opacity: 1; /* Görünür olsun */
}

.product-team-section.animate-on-scroll .team-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.product-team-section .team-card {
    opacity: 0;
    transform: translateY(50px);
    transition: none; /* İlk yüklemede animasyon olmasın, JS tetiklesin */
}

.product-team-section.animate-on-scroll .team-card:nth-child(1) { transition-delay: 0.3s; }
.product-team-section.animate-on-scroll .team-card:nth-child(2) { transition-delay: 0.5s; }
.product-team-section.animate-on-scroll .team-card:nth-child(3) { transition-delay: 0.7s; }

.product-team-section .product-team-header h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: none;
}

.product-team-section.animate-on-scroll .product-team-header h2 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.1s;
}

.product-team-container {
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.product-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-team-header h2 {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-team-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}


.product-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; 
    padding: 30px 20px;
    border: none;
    background-color: transparent;
    box-sizing: border-box;
}


.team-card-middle::before,
.team-card-middle::after {
    content: '';
    position: absolute;
     display: none;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.team-card-middle::before {
    left: 0;
}

.team-card-middle::after {
    right: 0;
}

.team-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* İkon kapsayıcısının genişliği */
    height: 60px; /* İkon kapsayıcısının yüksekliği */
    border-radius: 50%; /* Yuvarlak bir arka plan için */
    background-color: var(--some-color); /* İkon arka plan rengi */
    margin-bottom: 1rem;
}

.team-icon img {
    max-width: 100%; /* Kapsayıcıya sığmasını sağlar */
    max-height: 100%; /* Kapsayıcıya sığmasını sağlar */
    display: block; /* Gereksiz boşlukları kaldırır */
}


.team-icon svg {
    width: 40px;
    height: 40px;
}

.team-card h3 {
    margin-top: 15px;
    font-size: 2.00rem;
}


.team-card p {
    margin-top: auto;
    font-size: 1.20rem;
    flex-grow: 1; 
    text-align: justify;
    overflow: hidden; 
}

/* Services Section Styles */
.blog-section {
    padding: 100px 40px;
    background: #fff;
    opacity: 0; /* Başlangıçta görünmez olsun */
    transform: translateY(50px); /* Kendi pozisyonunun biraz altından başla */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Genel geçiş */
}

.blog-section.animate-on-scroll {
    opacity: 1; /* Görünür olsun */
    transform: translateY(0); /* Kendi orijinal pozisyonuna gel */
}

.blog-header h2,
.blog-header h3,
.blog-header p,
.blog-header a {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.blog-section.animate-on-scroll .blog-header h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; /* Kapsayıcı animasyonundan sonra başlasın */
}

.blog-section.animate-on-scroll .blog-header h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.blog-section.animate-on-scroll .blog-header p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.blog-section.animate-on-scroll .blog-header a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.blog-flex-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px; 
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.blog-header {
    flex: 1;
    min-width: 250px; 
}

.blog-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #1C355E;
    margin-bottom: 10px;
}

.blog-header h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1C355E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-header p {
    font-size: 1.1rem;
    color: #1C355E;
    margin-bottom: 20px;
}

.blog-header a {
    font-weight: bold;
    color: #1C355E;
    text-decoration: none;
    border-bottom: 2px solid #1C355E;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.blog-header a:hover {
    color: #E0DF00;
    border-color: #E0DF00;
}

.read-more {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .blog-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.blog-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease; /* Mevcut hover geçişini koru */
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(50px); /* Kendi pozisyonunun biraz altından başla */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animasyon geçişi */
}

.blog-section.animate-on-scroll .blog-item {
    opacity: 1;
    transform: translateY(0);
}

.blog-section.animate-on-scroll .blog-item:nth-child(1) { transition-delay: 0.6s; }
.blog-section.animate-on-scroll .blog-item:nth-child(2) { transition-delay: 0.8s; }
.blog-section.animate-on-scroll .blog-item:nth-child(3) { transition-delay: 1.0s; }

.blog-item:hover {
    transform: translateY(-10px);
}
.blog-image {
    height: 300px; 
    overflow: hidden;
    width: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-number {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.blog-content {
    padding: 15px 10px;
    background: #fff;
    flex-grow: 1; /* İçerik kısmının kalan alanı doldurmasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 28px;
}

.blog-content span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1C355E;
    margin: 0;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.service-number {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.8;
    margin-bottom: 15px;
    display: block;
}

.service-text {
    position: relative;
    padding-bottom: 20px;
}

.service-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #fff;
}

/* Testimonial under service items */
.testimonial {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.testimonial-rating {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.testimonial-rating span {
    color: #FFD700;
    margin-left: 5px;
}

.testimonial p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
}


.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    font-size: 0.8rem;
    color: #666;
}

.stats-section {
    padding: 80px 40px;
    background: #fff;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.stats-border-top,
.stats-border-bottom {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stats-content {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.stat-item {
    text-align: left;
    font-weight: bold;
}

.stat-number {
    font-size: 6.5rem;
    font-weight: bolder;
    margin-bottom: 10px;
    color: #1C355E;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-number .prefix {
    margin-right: 2px;
    font-weight: bolder;
}

.stat-number .counter {
    display: inline-block;
    font-weight: bold;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #1C355E;
    line-height: 1.4;
    text-align: center;
}


.case-study-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.case-study-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.case-study-images {
    display: flex;
    gap: 30px;
    margin: 60px 0;
    position: relative;
}

.top-row {
    transform: translateX(-10%);
    animation: slideRight 30s linear infinite;
}

.bottom-row {
    transform: translateX(10%);
    animation: slideLeft 30s linear infinite;
}

.image-wrapper {
    flex: 0 0 500px;
    height: 400px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.case-study-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-circle {
    width: 250px;
    height: 250px;
    background-color: rgb(27, 54, 93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Beyazdan siyaha değiştirildi */
    font-weight: 700; /* Bold yapıldı (700 daha kalın) */
    font-size: 1.5rem; /* 1.8rem'den 1.5rem'e küçültüldü */
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px; /* İçerik için biraz padding ekledik */
    line-height: 1.2; /* Satır yüksekliğini azaltarak daha iyi ortalama */
}

@keyframes slideRight {
    from {
        transform: translateX(-10%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(10%);
    }
    to {
        transform: translateX(0%);
    }
}

.language-selector {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.current-language::after {
    display: none !important;
}

.language-selector:hover .current-language {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    display: none;
    min-width: 120px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
}

.language-selector.active .language-dropdown {
    display: block;
}

.language-option {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.language-option:hover {
    background-color: #f5f5f5;
}

/* Yukarı Çıkma Butonu Stilleri */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.scroll-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.indicator-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000;
}

.indicator-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent; /* 2px yerine 3px yaparak çizgileri kalınlaştırdık */
    border-top-color: var(--accent-color);
    border-left-color: var(--accent-color);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--accent-color); /* Yeşil çizgilere parlak bir efekt ekledik */
}

.scroll-to-top:hover .indicator-progress {
    transform: rotate(315deg);
    border-color: var(--accent-color);
}

.active-section-0 .indicator-progress { border-top-color: var(--accent-color); border-left-color: transparent; }
.active-section-1 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(45deg); }
.active-section-2 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(90deg); }
.active-section-3 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(135deg); }
.active-section-4 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(180deg); }
.active-section-5 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(225deg); }
.active-section-6 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(270deg); }
.active-section-7 .indicator-progress { border-top-color: var(--accent-color); border-left-color: var(--accent-color); transform: rotate(315deg); }

/* Footer Styles */
.ai-manager-footer {
    width: 100%;
    font-family: 'Poppins', sans-serif; /* Eğer projenizde Poppins yoksa linkini eklemelisiniz */
    box-sizing: border-box; /* Padding ve border'ın genişliği etkilememesi için */
}

/* Footer'ın Beyaz Arka Planlı Üst Kısmı */
.footer-top-section {
    background-color: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Görseldeki yüksekliğe göre ayarlandı */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* Hafif gölge */
    box-sizing: border-box;
}

.footer-top-content {
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.footer-top-content h1 {
    font-size: 2.8rem;
    color: #1C355E;
    margin: 0 0 30px 0; /* Margin ayarlaması */
    line-height: 1.2;
    font-weight: 600;
}

/* E-posta Giriş Alanı ve Buton */
.email-signup-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçebilir */
}

.email-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 20px;
    width: 350px; /* Input alanı genişliği */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.email-icon-footer {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    opacity: 0.7;
}

.email-input-footer {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    outline: none;
    padding: 0;
}

.email-input-footer::placeholder {
    color: #aaa;
}

.try-now-button {
    background-color: #1C355E; 
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.try-now-button:hover {
    background-color: #e0df00;
}

/* Navigasyon Linkleri */
.footer-nav-links {
    margin-top: 40px;
}

.footer-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçme */
    gap: 30px;
}

.footer-nav-links ul li a {
    text-decoration: none;
    color: #1C355E;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-links ul li a:hover {
    color: #e0df00;
}


/* Footer'ın Lacivert Arka Planlı Alt Bandı - GÜNCELLENMİŞ HALİ */
.footer-bottom-band-new {
    background-color: #1C355E; /* Belirtilen lacivert renk */
    padding: 70px 40px;
    width: 100%;
    box-sizing: border-box;
    /* İstenilen sabit yükseklik ve dikey/yatay ortalama */
    height: 80px; /* Sabit yükseklik */
    display: flex; /* İçeriği dikeyde ortalamak için flexbox */
    align-items: center; /* İçeriği dikeyde ortala */
    justify-content: center; /* İçeriği yatayda ortala */
}

.footer-bottom-content-new {
    max-width: 1400px; /* İçeriğin maksimum genişliği */
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Logo ve telif metnini iki uca yasla */
    align-items: center;
    color: white;
    width: 100%; /* İçeriğin tam genişliği kullanmasını sağlar */
    flex-wrap: nowrap; /* Normal görünümde içeriğin alt alta geçmesini engelle */
}

.footer-logo-area img {
    height: 120px; /* İstenilen daha büyük logo boyutu */
    width: auto;
    object-fit: contain;
}

.footer-copyright-text {
    font-size: 0.9rem;
    white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
}


/* Portfolio Galerisi Stilleri */
.portfolio-gallery-section {
    padding: 80px 20px;
    background-color: rgba(19, 19, 19, 0.933);
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Toplam 12 sütun */
    grid-template-rows: auto auto; /* İki satır */
    gap: 20px; /* Bu değer zaten aralarındaki boşluğu kontrol ediyor */
}

.portfolio-item {
    position: relative;
    overflow: visible; /* Bu, overlay gibi şeylerin dışarı taşmasını sağlar, ancak içerik için değil */
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: none;
    /* margin-bottom: 20px; /* Grid gap kullandığımız için bu satırı kaldırabiliriz veya etkisini test etmeliyiz */
    height: auto; /* İçeriğine göre yüksekliği ayarla */
}

.portfolio-item:hover .custom-cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Görünür olduğunda */
.portfolio-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-item:nth-child(1) { grid-column: 1 / span 6; grid-row: 1; }
.portfolio-item:nth-child(2) { grid-column: 7 / span 6; grid-row: 1; } /* 7. sütundan başla, 6 sütun kapla */
.portfolio-item:nth-child(3) { grid-column: 1 / span 6; grid-row: 2; }
.portfolio-item:nth-child(4) { grid-column: 7 / span 6; grid-row: 2; } /* 7. sütundan başla, 6 sütun kapla */

.portfolio-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    display: none; /* Eski overlay'i gizle */
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    background-color: #E0DF00;
    color: #1B365D;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.portfolio-item:hover .view-project-btn {
    transform: translateY(0);
}

.view-project-btn:hover {
    background-color: #1B365D;
    color: #E0DF00;
}

.portfolio-info {
    padding: 10px 0; /* Üstten ve alttan boşluk */
    text-align: left;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    font-weight: 500;
    color: #e0df00;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

/* ===================== Responsive Media Queries ===================== */

/* 2K ve üstü büyük ekranlar için (2560px ve üzeri) */
@media (min-width: 2000px) {
    .nav-container, .banner-container, .skills-container, .product-team-container, .blog-flex-container, .stats-container, .portfolio-container, .footer-content {
        max-width: 1800px;
        padding-left: 60px;
        padding-right: 60px;
    }
    .main-heading-line { font-size: 10rem; }
    .skills-title { font-size: 7rem; }
}

/* Standart büyük masaüstü (1440px - 1920px) */
@media (max-width: 1919px) {
    .main-heading-line { font-size: 6.5rem; }
    .skills-title { font-size: 4.5rem; }
}

/* Küçük masaüstü ve büyük tablet (1200px - 1439px) */
@media (max-width: 1439px) {
    .nav-container, .banner-container, .skills-container, .product-team-container, .blog-flex-container, .stats-container, .portfolio-container, .footer-content {
        max-width: 1100px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .main-heading-line { font-size: 4.5rem; }
    .skills-title { font-size: 3.5rem; }
    .portfolio-grid { gap: 10px; }
}

/* Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .nav-container, .background-image, .agency-info, .banner-container, .skills-container, .product-team-container, .blog-flex-container, .stats-container, .portfolio-container, .footer-content {
        max-width: 900px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .main-heading-line { font-size: 4.5rem; }
    .windrose-icon-wrapper { width: 70px; height: 70px; margin-left: 30px; }
    #rotating-banner-image { width: 60px; height: 60px; }
    .background-image { width: 60%; }
    .skills-title { font-size: 2.5rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 2fr 1fr; }
    
    .agency-info h2 {
        font-size: 1.6rem !important;
    }
}

/* Responsive adjustments for product-team-section headings */
@media (max-width: 1199px) {
    .product-team-header h2 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    .product-team-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 1440px) {
    .right-side-elements {
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* İkonları ve çizgiyi sağa yaslamak için */
        position: absolute; /* Ana container içinde konumlandırmak için */
        top: 50%; /* Dikeyde ortalamak için (gerekirse ayarlanabilir) */
        right: 83.5%; /* Sağdan boşluk (gerekirse ayarlanabilir) */
        transform: translateY(-50%); /* Dikeyde ortalamayı düzeltmek için */
    }

    .background-image-container {
        position: relative; /* Haritanın konumlandırılacağı ana element */
        width: 100%;
    }
    .background-image {
        width: 100%;
        height: auto;
        max-width: 600px;
        position: absolute;
        top: -150px; /* Bu değeri değiştirerek haritanın yüksekliğini ayarlayabilirsiniz */
        right: 0;
        z-index: 1; /* Diğer elementlerin altında kalmasını sağlar */
    }
}

/* Büyük tablet ve küçük masaüstü (768px - 991px) */
@media (max-width: 991px) {
    .menu-content { flex-direction: column; }
    .menu-info, .menu-navigation { width: 100%; padding: 1rem; }
    .menu-info .logo { margin-bottom: 2rem; }
    .menu-items { margin-top: 20px; }

    
    .hero-section {
        padding: 40px 0 20px 0 !important;
        min-height: unset !important;
    }

    .banner-container {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 10px !important;
        gap: 20px !important;
    }

    .main-heading-line {
        font-size: 2.2rem !important;
        margin-bottom: 0.2em !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .left-content-block {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .windrose-icon-wrapper {
        width: 45px !important;
        height: 45px !important;
        margin-left: 15px !important;
    }

    #rotating-banner-image {
        width: 40px !important;
        height: 40px !important;
    }

    .background-image {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        margin: 10px auto !important; /* Yatayda ortala */
        border-radius: 10px !important;
        /* Bu aralık için özelleştirmeler, telefon görünümünden farklı olacak */
        position: relative; /* Akışa bırakırken pozisyonlama esnekliği için relative yapıldı */
        top: auto !important;
        left: auto !important;
        display: block !important; /* Yatayda ortalama için block display gerekli */
        object-fit: contain !important;
    }

    .bottom-content-area {
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 10px !important;
        padding: 0 !important;
        gap: 10px !important;
    }

    .agency-info {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .agency-info h2 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .agency-info p {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #1C355E;
        margin-top: -13px;
        text-align: justify;
        padding: 0 20px;
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
    }

    .scroll-down-section {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .skills-content {
        flex-direction: column;
        align-items: center;
    }

    .skills-list {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .skill-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 28px auto;
        flex-direction: column;
        align-items: center;
    }

    .skill-info {
        width: 100%;
        text-align: center;
    }

    .skill-info p {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .skills-display {
        width: 100vw;
        max-width: 100%;
        margin: 32px auto 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .skill-image {
        width: 100vw;
        max-width: 420px;
        height: auto;
        border-radius: 16px;
        object-fit: cover;
        display: block;
    }

    .horizontal-line {
        width: 120px !important;
        margin: 0 auto !important;
    }
    .circular-text {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto !important;
    }
    .year {
        font-size: 0.8rem !important;
    }

    .nav-container, .banner-container, .skills-container, .product-team-container, .blog-flex-container, .stats-container, .portfolio-container, .footer-content {
        max-width: 700px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .nav-links { gap: 1rem; }
    .skills-title { font-size: 2rem; }
    .tech-features { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 20px; }
    .footer-middle-cols { grid-template-columns: 1fr; }

    .product-team-header h2 {
        font-size: 2rem;
        line-height: 1.15;
    }
    .product-team-header h3 {
        font-size: 1.1rem;
    }

    .blog-flex-container {
        display: block;
        width: 100%;
    }
    .blog-header {
        width: 100%;
        margin: 0 auto 18px auto;
    }
    .blog-grid {
        width: 100%;
        margin: 0 auto;
    }
    .blog-item {
        max-width: 420px;
        margin: 0 auto 36px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .blog-image {
        width: 90vw;
        max-width: 300px;
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .blog-content {
        width: 100%;
        text-align: center;
        padding: 0 8px;
    }
    .blog-content h3, .blog-content span, .blog-content p {
        text-align: center;
        word-break: break-word;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .portfolio-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 32px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static;
    }
    .portfolio-image {
        width: 90vw;
        max-width: 400px;
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .portfolio-info {
        width: 100%;
        text-align: center;
        padding: 0 8px;
    }
    .portfolio-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .portfolio-info p {
        font-size: 1rem;
    }

    .blog-grid, .portfolio-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
}

/* Mobil cihazlar (768px ve altı) */
@media (max-width: 767px) {
    .product-team-header h2 {
        font-size: 1.2rem;
        line-height: 1.15;
        padding: 0 8px;
        text-align: center;
        word-break: break-word;
    }
    .product-team-header h3 {
        font-size: 1rem;
    }

    .header { height: auto; }
    .nav-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
        padding: 0 16px !important;
    }
    .logo {
        margin: 0 !important;
        height: 60px !important;
    }
    .logo img {
        height: 60px !important;
        width: auto !important;
        top: 0 !important;
    }
    .nav-links {
        display: none !important;
    }
    .search-container,
    .language-selector {
        display: flex !important;
        margin-left: 15vw !important;
    }
    .menu-toggle {
        display: flex !important;
        margin-left: 0 !important;
        z-index: 1001;
    }
    .menu-toggle .line {
        background-color: #fff !important;
    }
    .footer-section {
        padding: 40px 5px 10px;
    }

    /* Hero Section Mobil Düzenlemeleri */
    .hero-section {
        min-height: 100vh !important;
        padding: 70px 0 20px 0 !important;
        background: #f8f8f8 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .banner-container {
        flex-direction: column !important; /* Dikey sıralama */
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 0 16px !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .left-content-block {
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        order: 2; /* Yazıların görselden sonra gelmesi için */
    }

    .main-heading-line {
        font-size: 2.5rem !important;
        line-height: 1 !important;
        margin: 0 0 5px 0 !important;
        color: #1C355E !important;
        white-space: nowrap !important; /* Prevent line breaks within each heading element */
        display: block !important; /* Change from flex to block for proper line breaking */
    }

    .windrose-icon-wrapper {
        width: 35px !important;
        height: 35px !important;
        margin-left: 10px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #rotating-banner-image {
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }

    .background-image {
        position: relative; /* Fixed: Changed from static to relative for better control */
        width: 90% !important;
        max-width: 350px !important;
        height: auto !important;
        min-height: unset !important;
        object-fit: contain !important;
        margin: 30px auto !important;
        display: block !important;
        border-radius: 12px !important;
        order: 1; /* Görselin yazılardan önce gelmesi için */
    }

    .bottom-content-area {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 15px !important;
        padding: 0 !important;
        display: flex !important;
        gap: 20px !important;
    }

    .agency-info {
        max-width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .agency-info h2 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
        color: #1C355E !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .agency-info p {
        font-size: 0.9rem !important;
        color: #1C355E !important;
        margin: 0 !important;
        text-align: center !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }

    .scroll-down-section {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        gap: 15px !important;
    }

    .horizontal-line {
        width: 200px !important;
        height: 2px !important;
        background-color: #1C355E !important;
        margin: 10px auto !important;
        border-radius: 1px !important;
    }

    .circular-text {
        width: 120px !important;
        height: 120px !important;
        margin: 10px auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    .year {
        font-size: 0.9rem !important;
        text-align: center !important;
        color: #1C355E !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }

    .right-side-elements {
        top: -50px;
        left: 350px;
    }

    .nav-container, .banner-container, .skills-container, .product-team-container, .blog-flex-container, .stats-container, .portfolio-container, .footer-content {
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    .nav-links, .header-right { flex-direction: column; gap: 8px; }
    .skills-title { font-size: 1.2rem; }
    .section-title { font-size: 1.2rem; padding-left: 10px; }
    .footer-content { grid-template-columns: 1fr; gap: 10px; }
    .footer-middle-cols { grid-template-columns: 1fr; }
    .footer-right-col, .footer-left-col { align-items: flex-start; text-align: left; }
    .portfolio-item, .blog-item { min-width: 0; }

    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100vw !important;
        height: 100vh !important;
    }

    .skills-title {
        font-size: 1.7rem !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        display: block !important;
        margin-top: 32px !important;
        margin-bottom: 20px !important;
        line-height: 1.15 !important;
        letter-spacing: 0 !important;
    }
    .skills-title + .skills-title {
        margin-top: 8px !important;
    }

    .agency-info {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
    }
    .agency-info h2 {
        text-align: left !important;
        margin-left: 10px !important;
        padding-left: 0 !important;
    }
    .agency-info p {
        text-align: left !important;
        margin-left: 0px !important;
        padding-left: 0 !important;
        max-width: 210px !important;   /* Satır uzunluğunu kısaltır */
        font-size: 0.92rem !important; /* Daha küçük yazı */
        line-height: 1.35 !important;  /* Okunaklılık için */
        word-break: break-word !important;
    }
    .donen-rozet{
        margin-top: -10vw !important;
        margin-left: 10vw !important;
    }

    .social-icon-link {
        width: 24px !important;
        height: 24px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .social-icon-link img {
        width: 24px !important;
        height: 24px !important;
        object-fit: contain !important;
    }

        .social-icons-container {
        position: relative;
        left: -80px; /* Sola kaydırma */
        bottom: -230px; /* Aşağı kaydırma */
        margin-top: 20px; /* Üstten ek boşluk */
    }

    .social-icons-container .social-icon-link {
        margin: 0 8px; /* İkonlar arası boşluk */
    }

    .social-icons-container .social-icon-link img {
        width: 24px; /* Mobilde ikonların boyutu */
        height: 24px;
    }
}

/* Çok küçük mobil cihazlar (479px ve altı) */
@media (max-width: 479px) {
    .product-team-header h2 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        padding: 0 4px !important;
    }
    .product-team-header h3 {
        font-size: 0.95rem !important;
    }

    html { font-size: 13px; }

    .hero-section {
        padding: 60px 0 20px 0 !important;
    }

    .banner-container {
        padding: 0 12px !important;
        gap: 15px !important;
    }

    .main-heading-line {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    .windrose-icon-wrapper {
        width: 30px !important;
        height: 30px !important;
        margin-left: 8px !important;
    }

    #rotating-banner-image {
        width: 25px !important;
        height: 25px !important;
    }

    .background-image {
        max-width: 350px !important;
        height: auto !important;
        margin: -15px auto !important; /* Yatayda ortala */
        margin-left: 8px !important;
        object-fit: contain !important;
        /* Mobil görünüm için order zaten 767px altında ayarlı */
    }

    .agency-info h2 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .agency-info p {
        font-size: 0.85rem !important;
        padding: 0 8px !important;
    }

    .horizontal-line {
        width: 150px !important;
        margin: 8px auto !important;
    }

    .circular-text {
        width: 100px !important;
        height: 100px !important;
        margin: 8px auto !important;
    }

    .year {
        font-size: 0.8rem !important;
    }

    .skills-title, .section-title { font-size: 1rem !important; }
    .nav-container, .banner-container, .skills-container, .product-team-container, .blog-flex-container, .stats-container, .portfolio-container, .footer-content {
        padding-left: 2px;
        padding-right: 2px;
    }
    .footer-content, .footer-middle-cols { grid-template-columns: 1fr; gap: 5px; }
}

@media (max-width: 600px) {
    .skill-item {
        flex-direction: column !important;
        align-items: center !important;
    }
    .skill-icon {
        margin-bottom: 18px !important;
        margin-right: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }
    .skill-info {
        text-align: center !important;
    }

    .skills-section,
    .skills-container,
    .skills-list,
    .skill-item,
    .skill-info {
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .skill-icon {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .skill-icon img, .skill-icon svg {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .skills-content {
        display: flex !important;
        flex-direction: column !important;
    }
    .skills-list {
        order: 1 !important;
        width: 100% !important;
    }
    .skills-display {
        order: 2 !important;
        width: 90vw !important;
        max-width: 400px !important;
        margin: 32px auto 0 auto !important;
        display: block !important;
        padding: 0 !important;
    }
    .skill-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .stats-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: center;
        justify-items: center;
    }
    .stat-item {
        width: 100%;
        text-align: center;
    }
    .stat-number {
        font-size: 2.6rem;
    }
    .stat-label {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .footer-left-col {
        align-items: center !important;
        text-align: center !important;
    }
    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    .footer-logo img {
        display: block;
        margin: 0 auto;
    }

    .footer-section {
        padding: 24px 0 10px 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
        padding: 0 10px;
    }
    .footer-left-col, .footer-right-col {
        align-items: flex-start !important;
        text-align: left !important;
        width: 100%;
        max-width: 100%;
    }
    .footer-logo img {
        height: 110px;
        margin-bottom: 10px;
    }
    .footer-certifications img {
        width: 120px;
        margin-bottom: 10px;
    }
    .footer-middle-cols {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }
    .footer-h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
        margin-top: 18px;
    }
    .footer-column ul li a, .footer-column p, .contact-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .footer-form-wrapper {
        flex-direction: column;
        gap: 6px;
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
    }
    .email-input {
        width: 100%;
        font-size: 1rem;
        padding: 8px 8px;
        border-bottom: 1px solid #444;
        margin-bottom: 6px;
    }
    .submit-arrow {
        align-self: flex-end;
        font-size: 1.3rem;
        padding: 4px 0;
    }
    .contact-text {
        margin-top: 8px;
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
        font-size: 0.9rem;
    }
    .footer-middle-text {
        font-size: 1rem;
        margin: 0;
        justify-content: flex-start;
    }
    .footer-middle-cols {
        text-align: center;
    }
    .footer-h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 14px;
        margin-top: 28px;
        text-align: center;
        letter-spacing: 1px;
    }
    .footer-column ul li a, .footer-column p {
        font-size: 1.08rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .main-heading-line {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        padding: 0 8px !important;
        text-align: center !important;
        word-break: break-word;
    }
    .left-content-block {
        padding-right: 0;
        align-items: center;
    }
}

/* 1512px ve altı için background-image güncellendi */
@media (max-width: 1512px) {

    .background-image {
        width: 100%;
        height: auto; /* Yüksekliği otomatik ayarla */
        max-width: 600px; /* Daha büyük ekranlarda max-width sınırlaması */
        margin: 4vw auto 20px 90px; /* Ortala ve altından boşluk bırak */
    }

    .donen-rozet {
        width: 480px;
        height: auto;
        display: block;
        justify-self: end;
        align-self: center;
        margin: 0 0 0 30vw;
    }

    .vision-graphic {
        max-width: 90%;
        height: auto;
        margin-top: -100px;
        display: block;
    }

    .right-side-elements {
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* İkonları ve çizgiyi sağa yaslamak için */
        position: absolute; /* Ana container içinde konumlandırmak için */
        top: 50%; /* Dikeyde ortalamak için (gerekirse ayarlanabilir) */
        right: 84%; /* Sağdan boşluk (gerekirse ayarlanabilir) */
        transform: translateY(-50%); /* Dikeyde ortalamayı düzeltmek için */
    }
}

/* Responsive bitiş */

.nav-item-dropdown {
    position: relative;
    z-index: 2000;
}

.nav-item-dropdown .arrow {
    margin-left: 4px;
    color: #e0df00;
    font-size: 0.8rem;
    vertical-align: middle;
}

.nav-item-dropdown .dropdown-menu {
    position: absolute;
}



/* Dropdown menüdeki gereksiz işaretleri kaldır */
.nav-item-dropdown .dropdown-menu {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-item-dropdown .dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ok simgesi için daha belirgin ve hizalı stil */
.nav-item-dropdown .arrow {
    margin-left: 6px;
    color: #e0df00;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s;
}

.nav-item-dropdown:hover .arrow,
.nav-item-dropdown:focus-within .arrow {
    transform: rotate(180deg);
}

/* Dropdown linklerin fontunu ve hizasını düzelt */
.dropdown-menu .dropdown-link {
    color: #1C355E;
    text-decoration: none;
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    border-bottom: 1.5px solid transparent;
    margin: 0;
}

.dropdown-menu .dropdown-link:hover, .dropdown-menu .dropdown-link:focus {
    background: none !important;
    color: #1C355E;
    border-bottom: 1.5px solid #e0df00;
}

/* Alt menüde üst üste binmeyi ve hizalamayı düzelt */
.nav-item-dropdown .dropdown-menu {
    left: 0 !important;
    right: auto !important;
    min-width: 200px;
    width: max-content;
    padding: 0.5rem 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 1001;
    background: #fff;
}

.nav-item-dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ÜRÜNLER menüsündeki ok simgesi için hizalama ve renk düzeltmesi */
.nav-item-dropdown .arrow {
    margin-left: 4px;
    color: #fff;
    font-size: 0.8em;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 1px;
    transition: transform 0.2s;
    line-height: 1;
}

.nav-item-dropdown:hover .arrow,
.nav-item-dropdown:focus-within .arrow {
    color: #e0df00;
    transform: rotate(180deg);
}

/* Masaüstü menüde ÜRÜNLER okunu her zaman göster */
.nav-item-dropdown .arrow {
    display: inline-block !important;
    color: #fff !important;
    font-size: 1em !important;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: 1px;
    line-height: 1;
    transition: transform 0.2s, color 0.2s;
}
.nav-item-dropdown:hover .arrow,
.nav-item-dropdown:focus-within .arrow {
    color: #e0df00 !important;
    transform: rotate(180deg);
}

/* ÜRÜNLER menüsündeki ok simgesi için sade ve çakışmasız stil */
.nav-item-dropdown .arrow {
    display: inline-block;
    margin-left: 4px;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    vertical-align: middle;
    position: relative;
    top: 1px;
    line-height: 1;
    transition: transform 0.2s, color 0.2s;
}

.nav-item-dropdown:hover .arrow,
.nav-item-dropdown:focus-within .arrow {
    color: #e0df00;
    transform: rotate(180deg);
}

.has-submenu {
    position: relative;
}
.has-submenu > .dropdown-link .arrow {
    margin-left: 6px;
    font-size: 0.8em;
    color: #1B365D;
}
.has-submenu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 105.8%; /* Hiç boşluk kalmasın */
    top: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 1001;
    padding: 0.5rem 0;
    list-style: none;
}
/* Ana menü öğesi veya alt menünün kendisi üzerine gelindiğinde/içine odaklanıldığında göster */
.has-submenu:hover > .dropdown-submenu,
.has-submenu:focus-within > .dropdown-submenu,
.dropdown-submenu:hover,
.dropdown-submenu:focus-within {
    display: block;
}

/* Diğer alt menü stilleriniz */
.has-submenu .dropdown-submenu .dropdown-link {
    color: #1C355E;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.has-submenu .dropdown-submenu .dropdown-link:hover {
    background: #e0df00;
    color: #1C355E;
}

/* Rozet GIF için yeni stil */
.donen-rozet {
  width: 480px;
  height: auto;
  display: block;
  justify-self: end;
  align-self: center;
  margin: 0 0 0 30vw;
}

@media (max-width: 1400px) {
  .donen-rozet {
    width: 180px;
  }
}
@media (max-width: 1100px) {
  .donen-rozet {
    width: 320px;
    margin: 0 0 0 auto;
  }
}

/* Eski rozet ve çizgi ile ilgili kodları kaldırabilirsin: .horizontal-line, .circular-text, .year, .line-rozet-group */

/* Menüdeki ok simgesi için */
.nav-links .arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.85em; /* Okun boyutunu ayarlayın, isteğe göre büyütebilirsiniz */
    color: #fff;        /* Okun rengini menü yazısı ile aynı yapın */
    vertical-align: middle;
    transition: transform 0.2s;
    pointer-events: none; /* Ok tıklanamaz olsun */
}

/* Hover durumunda (isteğe bağlı, aşağıya döndürmek için) */
.nav-item-dropdown:hover .arrow,
.nav-item-dropdown:focus-within .arrow {
    transform: rotate(180deg);
}

/* Varsayılan olarak menüyü gizle */
.nav-item-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    left: -40px;
    top: 180%; /* Daha az boşluk, header'ın hemen altında */
    pointer-events: auto;
    /* Diğer stilleriniz */
}

.nav-item-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 18px;
    background: transparent;
    z-index: 1;
    pointer-events: auto;
}

/* JavaScript ile kontrol edilecek, CSS hover'ı devre dışı bırak */
/* Hem ana menüye hem de açılır menüye hover olunca göster */
/* .nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    display: block;
}

/* Alt menüye geçişte menü kapanmasın */
.nav-item-dropdown .dropdown-menu:hover,
.nav-item-dropdown .dropdown-menu:focus-within {
    display: block;
} */

.footer-menu-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -2vw;
    margin-top: -0.7vw; /* Dilersen ayarlayabilirsin */
}

.footer-menu-image img {
    max-width: 100px; /* Dilersen boyutunu değiştir */
    height: auto;
}

.nav-item-dropdown .dropdown-menu {
    display: none;
}
.nav-item-dropdown.dropdown-open .dropdown-menu {
    display: block;
}
.has-submenu {
    position: relative;
}
.has-submenu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 32px; /* Menü arası boşluk kadar genişlik */
    height: 100%;
    z-index: 1002;
    pointer-events: auto;
}
.has-submenu:hover::after,
.has-submenu:focus-within::after {
    /* Hover olduğunda köprü alanı menüyü açık tutsun */
    pointer-events: auto;
}

/* Safari font rendering fix for header links (İLETİŞİM looked too bold) */
@supports (-webkit-touch-callout: none) {
    .nav-link {
      font-family: 'Poppins', 'Open Sans', Arial, Helvetica, sans-serif !important;
      font-weight: 400 !important;
      -webkit-font-smoothing: antialiased !important;
      -moz-osx-font-smoothing: grayscale !important;
      text-rendering: optimizeLegibility !important;
      text-shadow: none !important;
    }
  }

/* ================= Desktop fit fixes for 16:9 / 16:10 ================= */
/* MacBook Pro/Air-like viewports: make the rotating badge smaller and keep
   the social icon group in a consistent, visible position. */
@media (min-width: 1200px) and (max-width: 1920px) and (min-aspect-ratio: 16/10) {
  .donen-rozet {
    width: 420px !important;
    height: auto !important;
    margin: 0 2vw 0 auto !important; /* daha sağa yaklaştır */
    margin-left: 40vw !important;
    left: auto !important; /* olası sabit konumlandırmayı sıfırla */
    justify-self: end !important;
    align-self: center !important;
  }

  .right-side-elements {
    position: absolute !important;
    top: 55% !important;
    left: 10px !important;   /* ekranda sabit ve görünür konum */
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .social-icons-container {
    gap: 12px !important;
  }
}

/* Viewports around 1283x846 */
@media (min-width: 1240px) and (max-width: 1320px) and (min-height: 820px) and (max-height: 870px) {
  .donen-rozet {
    width: 340px !important;
    height: auto !important;
    margin: 0 auto 0 auto !important;
    margin-left: 20vw !important;
    left: auto !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .right-side-elements {
    position: absolute !important;
    top: 50% !important;
    left: 12px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .social-icons-container {
    gap: 10px !important;
  }

  /* Typography tweak for short slogans on this viewport */
  .agency-info {
    max-width: 500px !important; /* biraz daha genişlet, satır kırılmasın */
  }
  .agency-info h2 {
    font-size: 1.4rem !important;
    line-height: 1.30 !important;
    margin: 6px 0 !important;
    letter-spacing: 0.2px !important;
  }
  .agency-info p {
    margin-top: 18px !important; /* başlık ile metin arası biraz daha açıldı */
  }
}

/* Slightly wider desktop screens that are still 16:9-ish */
@media (min-width: 1921px) and (max-width: 2560px) and (min-aspect-ratio: 16/10) {
  .donen-rozet {
    width: 420px !important;
    margin: 0 3vw 0 auto !important; /* daha sağa yaklaştır */
    margin-left: 15vw !important;
    justify-self: end !important;
  }
}

/* 1440×900 (16:10 yakın) - "Kullanımda Güven" tek satır kalsın */
@media (min-width: 1400px) and (max-width: 1460px) and (min-height: 880px) and (max-height: 920px) {
  .agency-info { max-width: 560px !important; }
  .agency-info h2 {
    white-space: nowrap !important;
    line-height: 1.25 !important;
  }
  .agency-info p { margin-top: 25px !important; }
}

/* 13.3" Retina (2560x1600, 16:10) - MacBook Air/Pro 13 */
@media (min-width: 2300px) and (max-width: 2700px) and (min-height: 1500px) and (max-height: 1700px) and (min-aspect-ratio: 16/10) {
  .donen-rozet {
    width: 420px !important;
    height: auto !important;
    margin: 0 auto 0 auto !important;
    margin-left: 15vw !important; /* biraz daha sola */
    left: auto !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .right-side-elements {
    position: absolute !important;
    top: 55% !important;
    left: 16px !important; /* logolar solda */
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .social-icons-container { gap: 14px !important; }
}

/* MacBook Pro 14" (2021) - default scaling: 1512x982 (16:10) */
@media (min-width: 1400px) and (max-width: 1600px) and (min-height: 900px) and (max-height: 1100px) and (min-aspect-ratio: 16/10) {
  .donen-rozet {
    width: 380px !important;
    height: auto !important;
    margin: 0 auto 0 auto !important;
    margin-left: 15vw !important; /* biraz sola alındı */
    left: auto !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .right-side-elements {
    position: absolute !important;
    top: 57% !important;
    left: 16px !important; /* logolar solda */
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .social-icons-container {
    gap: 12px !important;
  }
}