@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&display=swap');


        
        :root {
            --e-global-color-primary: #161616;
            --e-global-color-secondary: #C69A59;
            --e-global-color-text: #585858;
            --e-global-color-accent: #FFFFFF;
            --e-global-color-f35a660: #C69A59;
            --e-global-color-abe5686: #EDEDED;
            --e-global-color-44139a3: #DFDEDC;
            --e-global-color-17e2cd6: #F5F4F2;
            --e-global-typography-primary-font-family: "Jost";
            --e-global-typography-primary-font-weight: 600;
            --e-global-typography-secondary-font-family: "Jost";
            --e-global-typography-secondary-font-weight: 600;
            --e-global-typography-text-font-family: "DM Sans";
            --e-global-typography-text-font-weight: 400;
            --e-global-typography-accent-font-family: "DM Sans";
            --e-global-typography-accent-font-weight: 500;
            --e-global-typography-fd61ea2-font-size: 24px;
            --e-global-typography-fd61ea2-font-weight: 600;
            --e-global-typography-fd61ea2-line-height: 1.1em;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--e-global-color-17e2cd6);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--e-global-color-secondary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #b0854e;
        }

body {
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    color: var(--e-global-color-text);
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--e-global-color-secondary) var(--e-global-color-17e2cd6);
}


@media (min-width: 1024px){
                    .mobile-menu {
            display: none;
        }

                .menu-toggle {
            display: none;
        }
}





        /* Header Styles */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1001;
            transition: background-color 0.3s ease;
            background-color: transparent;
        }


        .logo {
            display: flex;
            align-items: center; /* Dikey ortalama */
            gap: 10px; /* Logo ile yazı arasında boşluk */
        }

        .logo img {
            width: 120px;
            height: auto;
            display: block;
            margin-left: 100px; /* Eğer çok solda kalıyorsa */
        }

        .logo span {
            font-size: 1.8rem; /* Daha kurumsal büyük puntolu */
            font-weight: 600; /* Kalın ama abartısız */
            color: var(--e-global-color-secondary);
            letter-spacing: 2px; /* Harfler arası boşluk */
            font-family: 'Jost', sans-serif; /* Modern kurumsal font */
            text-transform: uppercase; /* Tümü büyük harf */
            align-items: center;
            margin-top: 15px;
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-container nav{
            margin-right: 200px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 8px;
            background-color: transparent;
            backdrop-filter: blur(20px);
            padding: 10px 15px;
            border-radius: 35px;
            border: 2px solid rgba(223, 222, 220, 0.25);
            margin-left: 10px;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--e-global-color-17e2cd6);
            font-family: 'Jost', sans-serif;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li a:hover {
            color: rgba(211, 210, 208, 0.877);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--e-global-color-44139a3);
            backdrop-filter: blur(15px);
            min-width: 140px;
            border-radius: 12px;
            padding: 12px 0;
            z-index: 1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(198, 154, 89, 0.3);
            transform: translateY(10px);
            transition: all 0.3s ease;
            opacity: 0;
        }

        .dropdown-content a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            border-radius: 0;
            color: var(--e-global-color-text);
            transition: all 0.3s ease;
            position: relative;
            left: 0;
        }

        .dropdown-content a::before {
            content: "-";
            margin-right: 10px;
            color: var(--e-global-color-f35a660);
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            color: var(--e-global-color-f35a660);
            left: 5px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .phone-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--e-global-color-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--e-global-color-44139a3);
            font-size: 18px;
        }

        .phone-number {
            color: var(--e-global-color-44139a3);
            font-family: 'DM Sans', sans-serif;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .phone-number:hover {
            color: var(--e-global-color-secondary);
        }

        .contact-button {
            display: flex;
            align-items: center;
            gap: 5px;
            background-color: transparent;
            border: 1px solid var(--e-global-color-secondary);
            color: var(--e-global-color-abe5686);
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            margin-right: 100px;
        }

        .contact-button:hover {
            background-color: var(--e-global-color-secondary);
            color: var(--e-global-color-primary);
        }

        

        /* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../img/şirket2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    padding-top: 80px; /* Header yüksekliği kadar üstten boşluk */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--e-global-color-accent);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Scrolling Text Styles - Düzeltildi */
.scrolling-text-container {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.scrolling-text {
    white-space: nowrap;
    display: inline-flex;
    position: relative;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    width: auto;
    max-width: 180px;
    overflow: hidden;
}

.scrolling-text-wrapper {
    display: flex;
    position: relative;
    animation: scrollText 7s linear infinite;
    padding: 0;
    width: max-content; /* sadece yazı kadar genişlik */
}

.scrolling-text span {
    display: inline-block;
    padding: 0 10px;
    color: var(--e-global-color-accent);
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
    white-space: nowrap;
}

/* Klonu akıştan çıkarıyoruz */
.scrolling-text span.clone {
    position: absolute;
    left: 100%;
    top: 0;
}

/* İki kopya oluşturarak kesintisiz kaydırma */
.scrolling-text span:nth-child(2) {
    position: absolute;
    left: 100%;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Hero Text Container */
.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

.hero-line {
    display: flex;
    justify-content: center;
    width: 100%;
}

.text-with-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.hero-text {
    font-family: 'Jost', sans-serif;
    font-size: 6rem;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.hero-image {
    width: 200px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image:hover {
    transform: scale(1.05);
}

/* İkinci satırda görselin solda olması için */
.hero-line:nth-child(2) .text-with-image {
    flex-direction: row; /* Görsel solda, yazı sağda */
}


        /* Kayar Hizmetler Bölümü - Güncellendi */
.scrolling-services {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.scrolling-services-container {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 15px 0;
    overflow: hidden;
    width: 100%;
    max-width: auto;
    
}

.scrolling-services-track {
    display: flex;
    animation: scrollServices 40s linear infinite;
    white-space: nowrap;
    padding: 0 20px;
}

.scrolling-service-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 5px; /* Item içindeki öğeler arası küçük boşluk */
}

/* Text ve ikon arasındaki boşluk küçük */
.scrolling-service-item .service-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(211, 210, 208, 0.877);
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 300;
    white-space: nowrap;
    letter-spacing: 25px;
    padding-left: -25px;
    text-shadow: none;
    font-family: var(--wdtFontTypo_Base);
}

.scrolling-service-item:hover .service-text {
    color: var(--e-global-color-secondary); /* Yazı rengi değişimi */
    -webkit-text-stroke: 1.5px transparent; /* Kenar çizgisini kaldır */
    cursor: pointer;
}

.scrolling-service-item .star-icon {
    color: var(--e-global-color-secondary);
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-right: 40px;
}

/* Her bir item ile bir sonraki item arasındaki mesafe */
.scrolling-service-item + .scrolling-service-item {
    margin-left: 30px; 
}


@keyframes scrollServices {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* Hakkımızda Section Styles */
.about-section {
    position: relative;
    padding: 100px 150px;
    display: flex;
    flex-direction: column;
    background-color: var(--e-global-color-17e2cd6);
    overflow: hidden;
}

/* Scrolling Hakkımızda Text */
.scrolling-about-container {
    position: absolute;
    top: 80px;
    left: 150px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.scrolling-about {
    white-space: nowrap;
    display: inline-flex;
    position: relative;
    padding: 0;
    width: auto;
    min-width: 120px;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.541);
    border-radius: 20px;
}

.scrolling-about-wrapper {
    display: flex;
    position: relative;
    animation: scrollAboutText 8s linear infinite;
    padding: 0;
    width: max-content;
}

.scrolling-about span {
    display: inline-block;
    padding: 0 20px;
    color: var(--e-global-color-f35a660);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}

.scrolling-about span.clone {
    position: absolute;
    left: 100%;
    top: 0;
}

@keyframes scrollAboutText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-family: 'Jost', sans-serif;
    font-size: 2.8rem;
    color: var(--e-global-color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: var(--e-global-color-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(223, 222, 220, 0.925);
    margin: 30px 0;
}

.stats-container {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    position: relative;
}

.stat-item h2 {
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
    color: var(--e-global-color-primary);
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.stat-item h2:hover{
    color: var(--e-global-color-secondary);
}

.stat-item p {
    color: var(--e-global-color-text);
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(223, 222, 220, 0.925);
    margin: 0 25px;
}

.more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.more-button:hover {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-accent);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: 600px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}











/* Services Section Styles - Güncellenmiş */
.services-section {
    position: relative;
    padding: 120px 25px;
    background-image: url('../img/services.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--e-global-color-accent);
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Scrolling Services Title */
.scrolling-services-title-container {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.scrolling-services-title {
    white-space: nowrap;
    display: inline-flex;
    position: relative;
    background-color: transparent;
    padding: 0;
    width: auto;
    min-width: 150px;
    border: 0.5px solid var(--e-global-color-44139a3);
    border-radius: 20px;
    overflow: hidden;
}

.scrolling-services-title-wrapper {
    display: flex;
    position: relative;
    animation: scrollServicesTitle 8s linear infinite;
    padding: 0;
    width: max-content;
}

.scrolling-services-title span {
    display: inline-block;
    padding: 0 20px;
    color: var(--e-global-color-accent);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}

.scrolling-services-title span.clone {
    position: absolute;
    left: 100%;
    top: 0;
}

@keyframes scrollServicesTitle {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.services-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.services-heading {
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--e-global-color-accent);
}


.services-grid {
    display: grid;
    grid-template-columns: 70% 30%; /* Resim %70, liste %30 */
    gap: 20px;
    align-items: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 75px;
}

.service-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.5s ease;
}

.service-name {
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    color: var(--e-global-color-accent);
    transition: color 0.5s ease;
    margin-bottom: 10px;
}


.service-item:hover .service-name {
    color: var(--e-global-color-secondary);
}

.service-line {
    width: 130%;
    height: 1px;
    background-color: rgba(204, 200, 200, 0.76);
    transition: background-color 0.3s ease;
}

.service-item:hover .service-line {
    background-color: var(--e-global-color-secondary);
}

/* Services Item Active State */
.service-item.active .service-name {
    color: var(--e-global-color-secondary);
}

.service-item.active .service-line {
    background-color: var(--e-global-color-secondary);
    position: relative;
    overflow: hidden;
}

.service-item.active .service-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--e-global-color-secondary);
    animation: lineFill 1s ease-out forwards;
}

@keyframes lineFill {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.service-image-container {
    position: relative;
    height: 550px;
    min-width: 1050px;
    overflow: hidden;
    border-radius: 15px;
    margin-left: -180px;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 15px;
}

.service-image.active {
    opacity: 1;
}








/* Dragging Section Styles - Güncellenmiş */
.dragging-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background-color: var(--e-global-color-accent);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Arkaplan fotoğrafı */
.dragging-bg {
    position: absolute;
    top: 85px;
    left: 25px;
    width: calc(100% - 50px);
    height: 40%;
    opacity: 0.8;
    z-index: 0;
}

.dragging-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Scrolling Drag Title */
.scrolling-drag-title-container {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.scrolling-drag-title {
    white-space: nowrap;
    display: inline-flex;
    position: relative;
    background-color: transparent;
    padding: 0;
    width: auto;
    min-width: 120px;
    border: 0.5px solid rgba(207, 207, 205, 0.877);
    border-radius: 20px;
    overflow: hidden;
}

.scrolling-drag-title-wrapper {
    display: flex;
    position: relative;
    animation: scrollDragTitle 8s linear infinite;
    padding: 0;
    width: max-content;
}

.scrolling-drag-title span {
    display: inline-block;
    padding: 0 20px;
    color: var(--e-global-color-primary);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}

.scrolling-drag-title span.clone {
    position: absolute;
    left: 100%;
    top: 0;
}

@keyframes scrollDragTitle {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.dragging-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.dragging-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.8rem;
    color: var(--e-global-color-primary);
    margin-bottom: 15px;
}

.dragging-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--e-global-color-text);
    margin-bottom: 60px;
}

.dragging-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.drag-arrow {
    width: 60px; /* Büyüttük */
    height: 60px; /* Büyüttük */
    border-radius: 50%;
    background-color: var(--e-global-color-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 50px; /* Margin'i azalttık */
    transition: all 0.3s ease;
    z-index: 20;
    font-size: 1.5rem; /* Büyüttük */
    flex-shrink: 0; /* Küçülmesini engelledik */
}

.drag-arrow:hover {
    background-color: var(--e-global-color-primary);
    transform: scale(1.1);
}

.image-comparison {
    position: relative;
    width: 100%;
    min-width: 1250px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: col-resize;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
}

/* Öncesi ve Sonrası Etiketleri */
.before-label,
.after-label {
    position: absolute;
    padding: 12px 25px;
    background-color: var(--e-global-color-secondary);
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 15; /* Z-index'i artırdık */
    border-radius: 4px;
    transition: opacity 0.3s ease; /* Geçiş efekti ekledik */
}
.before-label {
    top: 20px;
    left: 20px;
}

.after-label {
    bottom: 20px;
    right: 20px;
}

.drag-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.drag-line {
    height: 100%;
    width: 4px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.drag-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--e-global-color-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-primary);
    font-size: 0.8rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    font-weight: 600;
}

.image-comparison:hover .drag-circle span,
.image-comparison:hover .drag-circle i {
    color: var(--e-global-color-secondary) !important;
}

.image-comparison:hover .drag-circle {
    transform: translate(-50%, -50%) scale(1.05);
    transition: transform 0.3s ease;
}

.drag-circle span,
.drag-circle i {
    transition: color 0.3s ease;
}
.drag-circle i {
    font-size: 1.4rem;
    margin-top: 5px;
}

.thumbnail-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--e-global-color-secondary);
    transform: scale(1.08);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}













/* Referanslar Section Styles */
.references-section {
    position: relative;
    padding: 120px 50px;
    overflow: hidden;
    background-color: var(--e-global-color-accent);
}

/* Scrolling References Text */
.scrolling-references-container {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.scrolling-references {
    white-space: nowrap;
    display: inline-flex;
    position: relative;
    background-color: transparent;
    padding: 0;
    width: auto;
    min-width: 150px;
    border: 0.5px solid var(--e-global-color-secondary);
    border-radius: 20px;
    overflow: hidden;
}

.scrolling-references-wrapper {
    display: flex;
    position: relative;
    animation: scrollReferences 8s linear infinite;
    padding: 0;
    width: max-content;
}

.scrolling-references span {
    display: inline-block;
    padding: 0 20px;
    color: var(--e-global-color-secondary);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}

.scrolling-references span.clone {
    position: absolute;
    left: 100%;
    top: 0;
}

@keyframes scrollReferences {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.references-content {
    position: relative;
    z-index: 2;
    margin: 0 20px;
    text-align: center;
}

.references-heading {
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    color: var(--e-global-color-primary);
    margin-bottom: 60px;
    font-weight: 500;
}

.references-grid {
    border: 2px solid var(--e-global-color-abe5686);
    border-radius: 15px;
    padding: 30px;
    background-color: var(--e-global-color-accent);
    position: relative;
    min-width: 900px;
    height: 450px;
}

.references-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.reference-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.reference-item img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.reference-divider.vertical {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 1px;
    height: 119%;
    background-color: var(--e-global-color-abe5686);
}

.reference-divider.horizontal {
    width: 103.5%;
    height: 1px;
    background-color: var(--e-global-color-abe5686);
    margin: 20px auto;
    margin-left: -30px;
}

/* Son öğelerde dikey divider olmamalı */
.references-row .reference-item:last-child .reference-divider.vertical {
    display: none;
}











        /* Footer Styles */
        .footer-section {
            background-image: url('../img/footer.png');
            background-size: cover;
            background-position: center;
            padding: 200px 200px 170px;
            color: var(--e-global-color-accent);
            position: relative;
            overflow: hidden;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/footer.png');
            z-index: 0;
        }
        
        .footer-content {
            position: relative;
            z-index: 1;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 100px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .newsletter-text h3 {
            font-family: 'Jost', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--e-global-color-accent);
        }
        
        .newsletter-form {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 35px;
            padding: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .newsletter-input {
            background: transparent;
            border: none;
            padding: 15px 25px;
            color: var(--e-global-color-accent);
            font-family: 'DM Sans', sans-serif;
            font-size: 1.5rem;
            width: 300px;
            outline: none;
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-button {
            background-color: var(--e-global-color-secondary);
            color: var(--e-global-color-primary);
            border: none;
            padding: 20px 35px;
            border-radius: 30px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .newsletter-button:hover {
            background-color: var(--e-global-color-accent);
            transform: translateY(-2px);
        }
        
        /* Divider Line */
        .footer-divider {
            width: 100%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.2);
            margin: 30px 0;
        }
        
        /* Main Footer Content */
        .footer-main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 100px;
        }
        
        .footer-column h4 {
            font-family: 'Jost', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--e-global-color-secondary);
        }
        
        .footer-column p {
            margin-bottom: 15px;
            line-height: 1.6;
            font-family: 'DM Sans', sans-serif;
            font-size: 1.2rem;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--e-global-color-accent);
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--e-global-color-secondary);
            padding-left: 5px;
        }
        
        .contact-info-footer {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1.2rem;
            opacity: 0.8;
        }
        
        .contact-item i {
            color: var(--e-global-color-secondary);
            width: 20px;
        }
        
        /* Bottom Footer */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.2rem;
            opacity: 0.7;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--e-global-color-accent);
            font-size: 1.4rem;
        }
        
        .social-icon:hover {
            color: var(--e-global-color-secondary);
        }







/* İletişim Section Styles */
.contact-section {
    position: relative;
    padding: 100px 75px 70px; /* Üst padding'i artırdık */
    margin: 0 25px 0;
    background-image: url('../img/iletisim.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Scrolling Contact Text - İçerik içinde konumlandırma */
.contact-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.scrolling-contact-container {
    position: relative; /* Absolute'dan relative'a değiştirdik */
    top: 0;
    left: 8%;
    width: auto;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px; /* Başlıkla arasına boşluk */
}

.scrolling-contact {
    white-space: nowrap;
    display: inline-flex;
    position: relative;
    background-color: transparent;
    padding: 0;
    width: auto;
    min-width: 120px;
    border: 0.5px solid var(--e-global-color-secondary);
    border-radius: 20px;
    overflow: hidden;
}

.scrolling-contact-wrapper {
    display: flex;
    position: relative;
    animation: scrollContact 8s linear infinite;
    padding: 0;
    width: max-content;
}

.scrolling-contact span {
    display: inline-block;
    padding: 0 20px;
    color: var(--e-global-color-secondary);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}

.scrolling-contact span.clone {
    position: absolute;
    left: 100%;
    top: 0;
}

@keyframes scrollContact {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.contact-header h1 {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    color: var(--e-global-color-accent);
    margin: 0; /* Margin'i sıfırladık */
    width: auto; /* Genişliği otomatik */
    flex: 1; /* Esnek genişlik */
    min-width: 300px; /* Minimum genişlik */
}

.service-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 0; /* Üst margin'i kaldırdık */
    justify-content: flex-end; /* Sağa hizalama */
    flex: 1; /* Esnek genişlik */
}


.service-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--e-global-color-17e2cd6);
    border-radius: 12px;
    min-width: 110px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);

}

.service-option i {
    font-size: 2.2rem;
    color: var(--e-global-color-primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-option span {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--e-global-color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-option:hover,
.service-option.active {
    background-color: var(--e-global-color-secondary);
    transform: translateY(-5px);
}

.service-option:hover i,
.service-option.active i,
.service-option:hover span,
.service-option.active span {
    color: var(--e-global-color-accent);
}



.divider-line2 {
    width: 106.5%;
    height: 1px;
    background-color: rgba(223, 222, 220, 0.925);
    margin: 30px 0;
}

.contact-form-container {
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: row;
    gap: 125px;
}

.form-row {
    display: flex;
    gap: 35px;
    width: 125%;
    flex-direction: column;
}

.form-group {
    position: relative;
    flex: 1;
}

.form-group.full-width {
    width: 125%;
}

.contact-form input,
.contact-form textarea {
    width: 125%;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--e-global-color-accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--e-global-color-secondary);
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 10px;
    font-size: 0.9rem;
    background-color: var(--e-global-color-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--e-global-color-accent);
}

.submit-button {
    width: 125%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
    color: var(--e-global-color-accent);
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    cursor: pointer;
}

.submit-button:hover {
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-primary);
}

