@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap&subset=latin-ext');


html {

    font-size: clamp(14px, 0.8333vw, 20px); 
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Poppins', Open Sans, sans-serif; 
}

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; 
    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; 
}

.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; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.nav-link::after {
    content: '';
    position: absolute;
    height: 1px; 
    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; 
    color: black; 
    font-weight: bold;
    transition: background-color 0.3s ease; 
}

.highlight.active-highlight {
    background-color: orange; 
    box-shadow: 0 0 5px 2px rgba(255, 165, 0, 0.7); 
    border-radius: 3px;
    padding: 2px 0; 
}


.search-icon svg {
    width: 20px; 
    height: 20px; 
    color: white; 
}

.search-input {
    border: none;
    border-bottom: 1px solid #ccc; 
    padding: 5px 0;
    font-size: 0.9rem;
    outline: none; 
    width: 0; 
    opacity: 0; 
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out; 
    margin-left: 10px; 
    box-sizing: border-box; 
}

.search-input.active {
    width: 150px; 
    opacity: 1; 
    padding: 5px 10px; 
}
.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; 
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px 0 40px; 
}

.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 {
    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;
}

close-menu {
    position: absolute;
    top: 35px; 
    right: 30px;
    color: var(--menu-text);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1002;
}


.menu-content {
    display: flex;
    height: 100%;
    color: var(--menu-text);
    flex-direction: row;
    padding-top: 20px;
}



.menu-info {
    width: 40%; 
    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;
}

.menu-navigation {
    width: 60%;
    background: var(--menu-bg);
    padding: 3rem 2rem;
    position: relative;
}

.menu-header {
    display: none; 
}


.menu-header .logo {
    display: none; 
}
.menu-header .logo img { 
    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 {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 3.75rem; 
    padding-left: 1.875rem; 
    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: 1.25rem; 
}

.left-content-block h1.main-heading-line {
    position: relative;
    z-index: 2;
}

.main-heading-line {
    font-size: 6.25vw; 
    font-weight: bold;
    line-height: 1.1;
    margin: 0 0 0.3125rem 0; 
    padding: 0;
    white-space: nowrap;
    color: #1C355E;
    opacity: 0;
    transform: translateX(-150%);
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

/* Animasyon tetiklenince uygulanacak */
.main-heading-line.animate { 
    animation: slideInFromLeft 1.0s ease-out forwards; 
}

.main-heading-line.animate:nth-child(2) {
    animation-delay: 1.0s;
}

.main-heading-line.animate:nth-child(3) {
    animation-delay: 1.5s;
}

.bottom-content-area {
    display: flex;
    align-items: flex-end;
    gap: 3vw; 
    width: 100%;
    margin-top: 2rem; 
    padding: 0;
}

.agency-info {
    width: auto;
    color: #1C355E;
    text-align: left;
    margin-left: auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transform: translateX(55rem);
}
  
/* Başlık (Üretimde Hassasiyet...) */
.agency-info h2 {
    font-size: clamp(1.1rem, 1.1vw, 1rem);
    line-height: 1.3;
    font-weight: 700; /* 500 yerine 700 - daha kalın */
    opacity: 1;
    transform: none;
    transition: none;
}
  
/* Paragraf (DORAS olarak sağlamlığı...) */
.agency-info p {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.6;
    max-width: 40rem;
    opacity: 1;
    transform: none;
    transition: none;
    margin-top: 1.5rem; /* Paragraf ile başlık arasına boşluk */
}

.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: auto 1fr auto; 
        gap: 0 24px; 
    }
    .agency-info {
        max-width: 400px; 
    }
    .horizontal-line { width: 180px; } 
    .circular-text { width: 120px; height: 120px; } 
    .year { font-size: 1.1rem; } 
}

@media (max-width: 1100px) {
    .bottom-content-area {
        display: flex;
        flex-direction: column; 
        align-items: flex-start; 
        gap: 18px;
        padding: 0; 
        margin-left: 0; 
    }
    .agency-info {
        max-width: 100%; 
        width: 100%;
        text-align: left;
        margin-left: 0; 
        padding-right: 0; 
    }
}

@media (max-width: 1479px) {
    .background-image {
        width: 100%;
        height: 60% !important;
        left: 18vw !important;
    }
    .bottom-content-area {
        gap: 0 15px; 
    }
    .agency-info {
        max-width: 350px; 
        padding-right: 10px; 
    }
    #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; 
        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; 
    z-index: 10;
}

.right-side-elements {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    position: absolute; 
    top: 45vh; 
    right: 20vw; 
    right: auto; 
    transform: translateY(-50%); 
}

.right-side-elements.animate-on-scroll { 
    opacity: 1;
    transform: translateY(0);
}

.social-icons-container {
    display: flex; 
    align-items: center; 
    /* İkonlar arasındaki dinamik boşluk */
    gap: 1.5rem; 
    /* REVİZYON 2: İkonların dikeyden yataya geçişi için column kuralı kaldırılır. */
    flex-direction: row; 
    margin-top: 1rem;
}

.social-icon-link {
    width: 2rem; 
    height: 2rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}


.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: 0%;  
    left: 52vw; 
    transform: translateY(-50%);
    width: 45vw; 
    max-width: 45rem;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.background-image.animate-on-scroll { 
    opacity: 1;
    transform: translate(-20vw, -50%); 
}

/* 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%); 
        opacity: 0; 
    }
    100% {
        transform: translateY(0); 
        opacity: 1; 
    }
}

@keyframes slideInFromLeftToPosition {
    0% {
        transform: translateX(-100%);
        opacity: 0; 
    }
    100% {
        transform: translateX(0);
        opacity: 1; 
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%); 
        opacity: 0; 
    }
    100% {
        transform: translateY(0); 
        opacity: 1; 
    }
}


/* 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%); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.skills-title.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); 
}

.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; 
    top: 0;
    width: 2px;
    height: 100%;
    background: #1C355E; 
    z-index: 0;
}


.skills-list::after {
    content: '';
    position: absolute;
    left: -25px; 
    top: 0; 
    width: 2px;
    height: 0; 
    background: var(--accent-color); 
    z-index: 1; 
    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;
    display: flex !important;
    align-items: flex-start !important; 
    justify-content: flex-end !important; 
    overflow: hidden !important;
    border-radius: 16px !important;
  }

  .skills-display .skill-image {
    width: 100% !important;
    height: auto !important;
    max-width: 440px !important;
    max-height: 380px !important;     
    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); 
}


.skill-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
    position: relative;
}


/* Vision Section Styles */
.vision-section {
    background-color: #f8f8f8; 
    padding: 100px 30px; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    min-height: 80vh; 
    box-sizing: border-box;
}

.vision-content {
    text-align: center; 
    max-width: 900px; 
}

.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); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.vision-title.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); 
    transition-delay: 0.1s; 
}

.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); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.vision-description.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); 
    transition-delay: 0.3s; 
}

.vision-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.vision-image-container.animate-on-scroll {
    opacity: 1;
    transform: translateY(0); 
    transition-delay: 0.5s; 
}

.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; 
    transition: opacity 1s ease-out; 
}

.product-team-section.animate-on-scroll {
    opacity: 1; 
}

.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; 
}

.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; 
    height: 60px; 
    border-radius: 50%; 
    background-color: var(--some-color); 
    margin-bottom: 1rem;
}

.team-icon img {
    max-width: 100%; 
    max-height: 100%; 
    display: block; 
}


.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; 
    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; 
    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; 
    font-weight: 700; 
    font-size: 1.5rem; 
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px; 
    line-height: 1.2; 
}

@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; 
    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); 
}

.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; 
    box-sizing: border-box; 
}

/* 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; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
    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; 
    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; 
}

.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; 
    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-bottom-band-new {
    background-color: #1C355E; 
    padding: 70px 40px;
    width: 100%;
    box-sizing: border-box;
    height: 80px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.footer-bottom-content-new {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    color: white;
    width: 100%; 
    flex-wrap: nowrap; 
}

.footer-logo-area img {
    height: 120px; 
    width: auto;
    object-fit: contain;
}

.footer-copyright-text {
    font-size: 0.9rem;
    white-space: nowrap; 
}


/* 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); 
    grid-template-rows: auto auto; 
    gap: 20px; 
}

.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;
    height: auto; 
}

.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; 
    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; }
}

@media (max-width: 1440px) {
    .right-side-elements {
        display: flex;
        flex-direction: column;
        align-items: flex-end; 
        position: absolute; 
        top: 50%; 
        right: 83.5%; 
        transform: translateY(-50%); 
    }

    .background-image-container {
        position: relative; 
        width: 100%;
    }
    .background-image {
        width: 100%;
        height: auto;
        max-width: 600px;
        position: absolute;
        top: -150px; 
        right: 0;
        z-index: 1; 
    }
}

/* 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; 
        border-radius: 10px !important;
        position: relative; 
        top: auto !important;
        left: auto !important;
        display: block !important; 
        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; 
        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; 
        display: block !important; 
    }

    .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; 
        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; 
    }

    .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;   
        font-size: 0.92rem !important; 
        line-height: 1.35 !important;  
        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; 
        margin-left: 8px !important;
        object-fit: contain !important;
    }

    .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; 
        max-width: 600px; 
        margin: 4vw auto 20px 90px; 
    }

    .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; 
        position: absolute; 
        top: 50%; 
        right: 84%; 
        transform: translateY(-50%); 
    }
}

/* 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;
}

.has-submenu:hover > .dropdown-submenu,
.has-submenu:focus-within > .dropdown-submenu,
.dropdown-submenu:hover,
.dropdown-submenu:focus-within {
    display: block;
}


.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: 25vw; 
    max-width: 25rem;
    height: auto;
    display: block;
    align-self: flex-end;
    margin: 0 0 2vw 30vw; 
}

@media (max-width: 1400px) {
  .donen-rozet {
    width: 180px;
  }
}
@media (max-width: 1100px) {
  .donen-rozet {
    width: 320px;
    margin: 0 0 0 auto;
  }
}

.nav-links .arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.85em;
    color: #fff;
    vertical-align: middle;
    transition: transform 0.2s;
    pointer-events: none; /* Ok tıklanamaz olsun */
}


.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;
}

.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;
}

/* 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; 
}

.footer-menu-image img {
    max-width: 100px; 
    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; 
    height: 100%;
    z-index: 1002;
    pointer-events: auto;
}
.has-submenu:hover::after,
.has-submenu:focus-within::after {
    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;
    }
  }

/* ================== TABLET ve Küçük Laptop (max 1024px) ================== */
@media (max-width: 1024px) {
  .donen-rozet {
    width: 300px !important;
    height: auto !important;
    margin: 0 auto !important;
    left: auto !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .right-side-elements {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 20px !important;
  }

  .agency-info {
    max-width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}

/* ================== ORTA BOY LAPTOPLAR (1025px – 1280px) ================== */
@media (min-width: 1025px) and (max-width: 1280px) {
  .donen-rozet {
    width: 340px !important;
    height: auto !important;
    margin-left: 15vw !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .right-side-elements {
    position: absolute !important;
    top: 52% !important;
    left: 10vw !important;
    transform: translateY(-50%) !important;
  }

  .agency-info {
    max-width: 520px !important;
  }
  .agency-info h2 {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    margin: 8px 0 !important;
  }
  .agency-info p {
    margin-top: 18px !important;
  }
}

/* ================== BÜYÜK LAPTOP ve DESKTOP (1281px – 1440px) ================== */
@media (min-width: 1281px) and (max-width: 1440px) {
    .donen-rozet {
        width: 380px !important;
        height: auto !important;
        margin-left: 25vw !important; 
        justify-self: end !important;
        align-self: center !important;
    }

    .right-side-elements {
        position: absolute !important;
        top: 55% !important;
        left: 20px !important;
        transform: translateY(-50%) !important;
    }
    .agency-info {
        max-width: 560px !important;
    }
    .agency-info h2 {
        font-size: 1.6rem !important;
        white-space: nowrap !important;
    }
    .agency-info p {
        margin-top: 22px !important;
    }
}

/* ================== iPad Air (1180 x 820) ================== */
@media (min-width: 1160px) and (max-width: 1200px) and (min-height: 800px) and (max-height: 840px) {
  .background-image {
    left: 35vw !important; /* background-image'i sola kaydır */
  }
  
  .social-icons-container {
    gap: 0px !important;
  }
  
  .social-icon-link {
    margin-left: 1.2vw !important;
    position: relative; 
    left: 5vw; 
  }

  .social-icon-link {
    margin-left: 1.2vw !important; /* Birbirine yaklaştırmak için 2vw'den 1.5vw'ye düşürüldü */
    position: relative;
    left: 7vw !important; /* sosyal medya ikonlarını sağa kaydır */
    top: -3.5vw !important; /* İkonları yukarı kaydırmak için negatif top değeri eklendi */
}
}

/* ================== iPad Pro (1366 x 1024) ================== */
@media (min-width: 1360px) and (max-width: 1370px) and (min-height: 1020px) and (max-height: 1030px) {
    .background-image {
        top: -15vw !important; /* background-image'i yukarı kaydır */
        left: 35vw !important;
    }

    /* SOSYAL MEDYA İKONLARI DÜZENLEMESİ */
    .social-icon-link {
        margin-left: 1.5vw !important; /* Birbirine yaklaştırmak için 2vw'den 1.5vw'ye düşürüldü */
        position: relative;
        left: 11vw !important; /* sosyal medya ikonlarını sağa kaydır */
        top: -5.5vw !important; /* İkonları yukarı kaydırmak için negatif top değeri eklendi */
    }

    .agency-info {
        margin-top: 1.5vw !important; /* Üretimde hassasiyet bölümünü aşağı kaydır */
    }

    .agency-info h2 {
        margin-bottom: 0.8vw !important; /* başlık ve paragraf arası boşluğu eşitle */
    }

    .agency-info p {
        margin-top: 0.8vw !important; /* başlık ve paragraf arası boşluğu eşitle */
        margin-left: -0.2vw !important;
    }

    .donen-rozet {
        width: 25vw !important;
        height: auto !important;
        margin-left: -5vw !important; /* donen-rozet'i sola kaydır */
        display: block !important; /* donen-rozet'i göster */
    }
}

/* ================== 1440 x 900 ================== */
@media (min-width: 1440px) and (max-width: 1440px) and (min-height: 900px) and (max-height: 900px) {
    /* Skills bölümünde sağ/sol boşlukları eşitle ve ortala */
    .skills-container {
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 48px !important;
        padding-right: 48px !important;
    }

    .skills-content { 
        column-gap: 48px !important;
    }

    /* İkinci başlıktaki inline margin'i etkisizleştir ve ortala */
    .skills-section .skills-title[style] {
        margin-left: 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }

    /* Rozeti ve sosyal ikonları biraz daha sağa al */
    .donen-rozet {
        margin-left: 18vw !important;
    }

    .social-icon-link {
        position: relative;
        left: 2.2vw !important;
    }

    .social-icon-link {
        margin-left: 0.5vw !important; /* Birbirine yaklaştırmak için 2vw'den 1.5vw'ye düşürüldü */
        position: relative;
        left: 3vw !important; /* sosyal medya ikonlarını sağa kaydır */
        top: -3.5vw !important; /* İkonları yukarı kaydırmak için negatif top değeri eklendi */
    }
}

/* ================== DPR 2.0 ================== */

@media (min-width: 1025px) and (max-width: 1280px) {

    .social-icon-link {
        position: relative; 
        left: 6vw !important; /* Deneme değeri: %4 ekran genişliği kadar sağa it */
    }
    
    /* Eğer ikonların kapsayıcısı varsa ve bu daha iyi sonuç verirse */
    .social-icons-container {
        margin-left: 20px !important; /* Deneme değeri: Kapsayıcıyı sağa it */
    }

        /* Rozeti ve sosyal ikonları biraz daha sağa al */
        .donen-rozet {
            margin-left: 18vw !important;
        }
}

@media (min-width: 1281px) and (max-width: 1440px) {

    .social-icon-link {
        position: relative;
        left: 3vw !important; 
        margin-left: 1vw !important; 
    }

        /* Rozeti ve sosyal ikonları biraz daha sağa al */
        .donen-rozet {
            margin-left: 18vw !important;
        }
}

@media (min-width: 1360px) and (max-width: 1370px) and (min-height: 1020px) and (max-height: 1030px) {
    .social-icon-link {
        left: 5vw !important; 
        top: -5.5vw !important;
    }

        /* Rozeti ve sosyal ikonları biraz daha sağa al */
    .donen-rozet {
        margin-left: 18vw !important;
    }
}