/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Orange Color Palette from Logo */
:root {
    --orange-primary: #f27618;
    --orange-light: #ff8c42;
    --orange-dark: #e05a0a;
    --orange-accent: #ff6b35;
    --orange-subtle: #fff4e6;
    --c-glass: #d4d4d4;
    --c-light: #fff;
    --c-dark: #000;

    --c-content: #224;
    --c-action: #0052f5;

    --c-bg: #E8E8E9;

    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;

    --saturation: 150%;
    --glass-box-shadow: 
    inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
    inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
    inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
    inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
    inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
    inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
    0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);

}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #f6f6f6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.nav-logo img {
    height: 50px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;

}

.nav-logo img {
    max-height: 50px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu a {
    display: block;
    width: 100%;
    padding: 0 20px;
    text-decoration: none;
    color: #818181;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

/* Reset and Base Styles */
#home {
    position: relative;
    /* Diğer hero stillerin */
    background: #f6f6f6;
    overflow: visible;
    padding-bottom: 120px
}

#home::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    /* -1px ile çizgi kalmaz */
    height: 120px;
    /* Geçişin yüksekliği */
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(246, 246, 246, 0) 0%,
            #f6f6f6 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    padding: 0;
    position: relative;
}

.hero-content {
    margin: 180px auto 0;
    text-align: center;
    width: 100%;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #181818;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    transform: translateY(30px);
    animation: fadeInSlideUp 1.2s ease-out 0.3s;
}

.mobileHeroContent img {
    width: 100%;
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero1 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(15deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(-10deg);
    }
}

@keyframes hero2 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-20deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotate(4deg);
    }
}

@keyframes hero3 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(30deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes hero4 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-20deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotate(10deg);
    }
}

@keyframes hero5 {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(15deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotate(-4deg);
    }
}

@keyframes animatemurk {
    0% {
        transform: translateY(30px);
    }

    50% {
        transform: translateY(0px);
    }
     100% {
        transform: translateY(30px);
    }
}


.hero-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 44px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #666;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btnBox {
    display: flex;
    height: 65px;
    align-items: center;
}

.btn-primary {
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 12px rgba(242, 118, 24, 0.3);
    border-radius: 32px;
    padding: 15px 25px;
    transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
    box-shadow: var(--glass-box-shadow);
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    background-color: color-mix(in srgb, rgb(166 160 160 / 26%) 36%, transparent)
}

.btn-primary:hover , .btn-primary:focus , .btn-primary:active , .btn-primary:focus-within {
  background-color:color-mix(in srgb, rgb(242 103 23 / 26%) 36%, transparent) !important; 
        padding: 20px 20px;
        
}

.btn-secondary {
    background: transparent;
    color: #868585;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
    will-change: left, width;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 99em;
    background-color: color-mix(in srgb, var(--c-glass) 26%, transparent);
    box-shadow: var(--glass-box-shadow);
    transition: all 0.3s;
    backdrop-filter: blur(8px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));

}

.btn-secondary:hover  , .btn-secondary:focus , .btn-secondary:active , .btn-secondary:focus-within{
  background-color:color-mix(in srgb, rgb(242 103 23 / 87%) 36%, transparent) !important; 
	padding: 18px 44px;
}

/* Portfolio Section - Modern Kare Grid */
.portfolio {
    padding: 100px 0 80px 0;
    background: #f6f6f6;
    min-height: 60vh;
}

.container {
    margin: 0 auto;
    padding: 0 24px;
}

.portfolio-header {
    margin-bottom: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 0 0;
    text-align: center;
}

.sectionText {
    position: relative;
    height: 280px;
    margin-bottom: -110px;
}

.section-title {
    position: absolute;
    width: 100%;
    text-align: center;
    transform: translateY(10px);
    color: #202020;
    line-height: 1.6;
    font-size: 170px;
    font-weight: 900;
    color: #6b6b6bb5;
    opacity: 0.1;

    transition: all 0.5s
}

.portfolio-header:hover .section-title {
    margin-bottom: -80px;
    opacity: 0.3;
    transform: translateY(-35px);
    filter: blur(10px);
    color: #c89b88;
}

.section-miniTitle {
    position: absolute;
    width: 100%;
    text-align: center;
    transform: translateY(90px);
    color: #202020;
    line-height: 1.6;
    font-size: 80px;
    font-weight: 900;
    color: #f6743c;
    opacity: 0;

    transition: all 0.5s;
    filter: blur(10px);
}

.portfolio-header:hover .section-miniTitle {
    margin-bottom: -80px;
    opacity: 0.8;
    transform: translateY(35px);
    filter: blur(0px);
}

.portfolio-filters-bar {
    position: relative;

    border-radius: 32px;
    padding: 0;
    display: inline-flex;
    margin: auto;
    align-items: center;
    margin: 0 auto 40px auto;
    overflow: visible;
    box-sizing: border-box;
    padding: 8px 4px;
    margin: 0 auto;
    border: none;

    backdrop-filter: blur(8px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
 box-shadow: var(--glass-box-shadow);
    transition:
        background-color 400ms cubic-bezier(1, 0.0, 0.4, 1),
        box-shadow 400ms cubic-bezier(1, 0.0, 0.4, 1);
    background-color: color-mix(in srgb, rgb(171 171 171 / 36%) 36%, transparent);

}

.filter-indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    background: #222;
    border-radius: 16px;
    z-index: 1;
    transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
    will-change: left, width;
    top: 5px;

    height: calc(100% - 10px);
    border-radius: 99em;
    background-color: color-mix(in srgb, #f25c15 45%, transparent);
    z-index: -1;
    box-shadow: var(--glass-box-shadow);
}

.portfolio-filters {
    position: relative;
    z-index: 2;
}

.filter-btn {
    position: relative;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #818181;
    cursor: pointer;
    padding: 14px 32px;
    border-radius: 16px;
    transition: color 0.2s;
    outline: none;
    margin: 0;
    box-shadow: none;
    z-index: 2;
    height: 54px;
}

.filter-btn.active {
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-weight: 500;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.portfolio-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;

    cursor: pointer;
    position: relative;
text-decoration: none;
}


.portfolio-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    min-width: 0;
    border-radius: 16px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    min-width: 0;
    min-height: 0;
    transition: all 0.8s;
    filter: blur(0px);

}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);

}

.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;

}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.7;
    transform: translateY(-50%);
    /* width, height, background, left, top HTML'de inline olarak veriliyor */
}

@supports not (aspect-ratio: 1 / 1) {
    .portfolio-image {
        position: relative;
        padding-top: 100%;
    }

    .portfolio-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.portfolio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex: 1;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #181818;
    margin-bottom: 0;
}

.portfolio-category {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-align: right;
    margin-left: 16px;
    white-space: nowrap;
}

.portfolio-category span {
    font-size: 10px;
    font-weight: 500;
    color: rgb(255 255 255 / 86%);
    box-shadow: 0 4px 12px rgba(242, 118, 24, 0.3);
    border-radius: 32px;
    padding: 5px 15px;
    transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
 box-shadow: var(--glass-box-shadow);
    backdrop-filter: blur(8px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    background-color: color-mix(in srgb, rgb(255 255 255 / 86%) 26%, transparent)
}

.load-more {
    text-align: center;
}

.portfolio-viewall {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.btn-viewall {
    background: var(--orange-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 44px;
    border-radius: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(242, 118, 24, 0.3);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-viewall:hover {
    background: var(--orange-dark);
    color: #fff;
    box-shadow: 0 6px 18px rgba(242, 118, 24, 0.4);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8f8f8;
}

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

.about-text .section-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-name {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    min-width: 200px;
}

.service-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 40px 0;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info .section-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: -1.5px;
}

.contact-details {
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

#contactForm {}

.social-links {
    background: #fff;
    padding: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: #666;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-modal.active {
    display: flex;
}

.modal:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.modal-backdrop.show {
    opacity: 0;
}

.modal .modal-dialog {
    z-index: 2;
}

.modal-content {
    position: relative;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: color-mix(in srgb, var(--c-glass) 26%, transparent);
    box-shadow: var(--glass-box-shadow);
    transition: all 0.3s;
    backdrop-filter: blur(8px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
}

.modal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: color-mix(in srgb, var(--c-glass) 26%, transparent);
 box-shadow: var(--glass-box-shadow);
}

.modal .btn-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.modal .modal-body {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
}

.modal-image {
    background: #f6f6f6;
    overflow: hidden;
}

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

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.modal-title {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.modal-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.detail-value {
    color: #fff;
    font-size: 14px;
}

/* Project Details Page */
.project-details {
    padding: 120px 0 80px 0;
}

.project-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.project-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.project-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.project-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.project-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-content {
    margin-bottom: 80px;
}

.content-grid {
    display: grid;
    gap: 60px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.tech-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.tech-category li:last-child {
    border-bottom: none;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-section {
    background: #f6f6f6;
    padding: 32px;
    border-radius: 20px;
}

.sidebar-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-label {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

.info-value {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-links .btn {
    width: 100%;
    text-align: center;
}
.project-link  {
    display: flex;
    align-items: center;
    height: 62px
}
.project-link .btn-primary {
        background-color: 
 color-mix(in srgb, rgb(242 103 23 / 100%) 36%, transparent) !important;
}
.project-link .btn-primary:hover {
        background-color: 
color-mix(in srgb, rgb(171 73 17) 36%, transparent) !important}
.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 80px;
}

.gallery-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
       margin-bottom: 12px;
}

.gallery-item {
    width: calc(33.333% - 12px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.gallery-item + .gallery-item {
    margin-left: 12px;
}
.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Project Navigation */
.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.nav-prev,
.nav-next {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
    color: #000;
}

.nav-prev span,
.nav-next span {
    font-size: 14px;
    margin-bottom: 4px;
}

.nav-prev strong,
.nav-next strong {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.nav-back {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-back:hover {
    background: #333;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-counter {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Gallery item cursor */
.gallery-item {
    cursor: pointer;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px 0;
    background: #f6f6f6;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.about-hero .hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.about-skills h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 32px;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.skill-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.skill-category li:last-child {
    border-bottom: none;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #f6f6f6;
}

.experience-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.5px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #000;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--orange-primary);
    border-radius: 50%;
    border: 4px solid #f6f6f6;
    box-shadow: 0 0 0 3px var(--orange-subtle);
}

.timeline-content {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #f6f6f6;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 48px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ccc;
}

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

.cta-buttons .btn {
    min-width: 160px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px 0;
    background: #f6f6f6;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.contact-hero .hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(242, 118, 24, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Style */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.submit-btn {
    padding: 16px 32px;
    background: var(--orange-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(242, 118, 24, 0.3);
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 118, 24, 0.4);
}

.btn-loading {
    display: none;
}

/* Contact Info */
.contact-info-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.info-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: var(--orange-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .info-icon {
    background: var(--orange-primary);
    color: #fff;
}

.info-icon i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .info-icon i {
    transform: scale(1.1);
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.info-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Social Links */
.social-links-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f6f6f6;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link-card:hover {
    background: var(--orange-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 118, 24, 0.3);
}

.social-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-link-card:hover .social-icon i {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f6f6f6;
}

.map-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.map-placeholder {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.map-icon i {
    font-size: 48px;
    transition: transform 0.3s ease;
}

.map-content:hover .map-icon i {
    transform: scale(1.1);
}

.map-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.map-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #000;
    color: #fff;
    margin-top: auto;
}

.footer-content {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    font-size: 14px;
    color: #999;
}

.image-stack.mobileHero {
    display: none;
    width: 100%;
    margin: 10px 0 !important;
}

.swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    /* ya da istediğin kadar */
}

.image-stack {
    display: flex;
    justify-content: center;
    gap: -40px;
    /* görsellerin üst üste binmesini sağlamak için negatif boşluk */
    position: relative;
}

.img-card {
    width: 480px;
    margin: 0 -80px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.36s cubic-bezier(.33, 1.3, .5, 1), box-shadow 0.36s;
    transform-origin: center center;
    z-index: 1;
    opacity: 1;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(8px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    background-color: color-mix(in srgb, var(--c-glass) 26%, transparent);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
    transition: all 0.3s;

}

.img-card:nth-child(1) {
    background-color: color-mix(in srgb, #087fb6 26%, transparent);
    animation: hero1 1.2s ease-out 0.3s;

}

.img-card:nth-child(2) {
    background-color: color-mix(in srgb, #f7d196 56%, transparent);
    animation: hero2 1.2s ease-out 0.3s;
}

.img-card:nth-child(3) {
    background-color: color-mix(in srgb, #f25c15 36%, transparent);
    animation: hero3 1.2s ease-out 0.3s;
}

.img-card:nth-child(4) {
    background-color: color-mix(in srgb, #0eb608 36%, transparent);
    animation: hero4 1.2s ease-out 0.3s;
}

.img-card:nth-child(5) {
    background-color: color-mix(in srgb, #9688be 26%, transparent);
    animation: hero5 1.2s ease-out 0.3s;
}

.img-card:nth-child(1):hover {
    background-color: color-mix(in srgb, #087fb6 100%, transparent)
}

.img-card:nth-child(2):hover {
    background-color: color-mix(in srgb, #f7d196 100%, transparent)
}

.img-card:nth-child(3):hover {
    background-color: color-mix(in srgb, #f25c15 100%, transparent)
}

.img-card:nth-child(4):hover {
    background-color: color-mix(in srgb, #0eb608 100%, transparent)
}

.img-card:nth-child(5):hover {
    background-color: color-mix(in srgb, #9688be 100%, transparent)
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    border-radius: 20px;
}

.img-overlay strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.img-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.img-card:hover .img-overlay {
    opacity: 1;
    transform: translateY(0);
}


.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Hafif dönüş efektleri */
.rotate-1 {
    transform: rotate(-10deg);
}

.rotate-2 {
    transform: rotate(-4deg);
}

.rotate-3 {
    transform: rotate(4deg);
}

.rotate-4 {
    transform: rotate(10deg);
}

/* Hover Efekti - JavaScript ile kontrol ediliyor */
/* .img-card:hover {
    transform: scale(1.1) rotate(0deg) !important;
  } */

.image-stack.scattered .img-card:nth-child(1) {
    transform: scale(1.08) rotate(-12deg) translate(-120px, -40px) !important;
    z-index: 2;
}

.image-stack.scattered .img-card.rotate-1 {
    transform: scale(1.05) rotate(-18deg) translate(-80px, 60px) !important;
    z-index: 2;
}

.image-stack.scattered .img-card.rotate-2 {
    transform: scale(1.13) rotate(-2deg) translate(0px, -90px) !important;
    z-index: 3;
}

.image-stack.scattered .img-card.rotate-3 {
    transform: scale(1.07) rotate(12deg) translate(80px, 60px) !important;
    z-index: 2;
}

.image-stack.scattered .img-card.rotate-4 {
    transform: scale(1.1) rotate(18deg) translate(120px, -40px) !important;
    z-index: 2;
}

.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

.img-modal-content {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalFadeIn 0.2s;
    color: #fff;

}

.img-modal-content img {
    max-width: 70vw;
    max-height: 60vh;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.img-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
    text-align: center;
}

.img-modal-close {
    position: absolute;
    top: -25px;
    right: -25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
}

.img-modal-close:hover {
    color: var(--orange-primary);
}

.img-modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: backdrop-filter 0.3s;
}

.img-modal.active {
    display: flex;
}

#imgModalPrev {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    box-shadow: none;
    outline: none;
    border: 0;
    font-size: 26px;
}

#imgModalNext {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    box-shadow: none;
    outline: none;
    border: 0;
    font-size: 26px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobileMenu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 9999;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

  /* iOS için fallback - blur olmayan ama cam gibi görünen efekt */
  backdrop-filter: blur(12px);
            backdrop-filter: blur(8px) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-100%);
      transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);

}
.mobileMenu.open {
   
     transform: translateY(0%);
  opacity: 1;
      transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobileMenu .mobileMenuContent {
    width: 100%;
}
.mobileMenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.mobileMenu ul li a {
 display: block;
    text-decoration: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #a1a1a1;
    box-shadow: 0 4px 12px rgba(242, 118, 24, 0.3);
    border-radius: 32px;
    padding: 15px 25px;
    transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
    background-color:  color-mix(in srgb, rgb(255 255 255 / 71%) 96%, transparent);
}
.mobileMenu ul li + li {
    margin-top: 20px
}

.mobileMenu .topClose {
        display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    text-decoration: none;
        background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 12px rgba(242, 118, 24, 0.3);
    border-radius: 50%;
    transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);

    background-color: color-mix(in srgb, rgb(255 255 255 / 86%) 36%, #ffffff00)
}
.portfolio.pageContent {
    padding: 120px 0 80px
}

@media (min-width: 1920px) {
    .image-stack {
        margin: 80px 0;
    }

}

/* Responsive Design */
@media (max-width: 1920px) {
    .hero {}

    .image-stack {
        margin: 80px 0 120px;
    }

    .img-card {
        width: 20%;
        margin: 0 -40px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }

    .section-title {
        font-size: 17vw !important;
        margin-bottom: 0px;
        opacity: 0.3;
        transform: translateY(-0);
        filter: blur(10px);
        color: #c89b88;
    }

    .section-miniTitle {
        font-size: 12vw;
        opacity: 0.8;
        margin-bottom: -80px;
        transform: translateY(35px);
        filter: blur(0px);
    }

    .portfolio-header:hover .section-title {

        margin-bottom: 0px;
        opacity: 0.3;
        transform: translateY(-0);
        filter: blur(10px);
        color: #c89b88;
    }

    .portfolio-header:hover .section-miniTitle {
        margin-bottom: -80px;
        transform: translateY(35px);
        filter: blur(0px);
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .image-stack {
        margin: 0 0 80px
    }

    .hero-cards {
        height: 220px;
    }

    .hero-card {
        width: 140px;
        height: 180px;
        margin-left: -40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .container {
        padding: 0 10px;
    }
}

@media (max-width: 992px) {
   
    .hero-content {
        margin: 80px auto 0
    }

    .liquidtext {
            position: relative !important;
    top: 0 !important;
    font-size: 22vw !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        margin-bottom: -50px;
            
                animation: animatemurk 7s ease-out 0s infinite !important;
    }

    .hero-buttons {
        display: flex;
    }

    .hero-buttons .btn {
        padding: 8px 15px;
        font-size: 13px;
        border-radius: 7px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 10px 12px;
        height: auto;

    }

    .filter-btn.active {
        background-color: #000;
    }

    .portfolio-filters-bar {
        width: 100%;
        padding: 4px;
        box-shadow: none !important;
        background: transparent;
    }

    .portfolio-filters {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 10px !important;
    }

    .portfolio-filters .filter-btn {
        transition: all 0.35s cubic-bezier(.4, 1.2, .4, 1);
        will-change: left, width;
        height: calc(100% - 10px);
        border-radius: 99em;
        backdrop-filter: blur(8px) saturate(var(--saturation));
        
        -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
        box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), inset -3px -8px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent), inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0px 3px 4px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 2px -6.5px 1px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 1px 5px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 6px 16px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
        transition: background-color 400ms cubic-bezier(1, 0.0, 0.4, 1), box-shadow 400ms cubic-bezier(1, 0.0, 0.4, 1);
        background-color:
            color-mix(in srgb, rgb(171 171 171 / 36%) 36%, transparent);
    }


.portfolio-filters .filter-btn.active {
    background-color:
        color-mix(in srgb, #f25c15 45%, transparent);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
}

.filter-indicator {
    display: none !important;
}

.topMenus {
    display: none;
}

.img-card {
    transform: rotate(0deg) !important;
    width: 20%;
    margin: -10px;
}

.rotate-1 {
    transform: rotate(-10deg) !important;
}

.rotate-2 {
    transform: rotate(-4deg) !important;
}

.rotate-3 {
    transform: rotate(4deg) !important;
}

.rotate-4 {
    transform: rotate(10deg) !important;
}



.hero {
    min-height: auto;
}

.background-circles {
    height: 100%;
}

.blur-circle {
    filter: blur(64px);
    width: 40% !important;
    height: 100% !important;
    opacity: 0.6;
}

.img-overlay {
    display: none;
}

.hero-subtitle {
    width: 80%;
    margin: 80px auto 20px;
}

.portfolio {
    padding: 0;
}

.btn-primary {
    background-color:color-mix(in srgb, rgb(216 139 66 / 55%) 86%, transparent);
    border-radius: 20px !important
}

.blur-circle {
    display: none
}

.blur-circle:nth-child(3) {
    display: block;
    width: 80% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0.4;
    filter: blur(108px);
}

.blur-circle:nth-child(2) {
    display: block;
    width: 80% !important;
    left: -20px !important;
    transform: translate(-178px, -50%) !important;
    opacity: 0.4;
    filter: blur(108px);
    z-index: 2;
}

.blur-circle:nth-child(5) {
    display: block;
    width: 80% !important;
    right: -20px !important;
    transform: translate(-80px, -50%) !important;
    opacity: 0.4;
    filter: blur(108px);
}

.modal .modal-body {
    display: flex;
    flex-direction: column
}
}

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

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-text {
        font-size: 12px;
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    /* Modal responsive */
    .modal-body {
        grid-template-columns: 1fr;
        max-height: 80vh;
    }

    .modal-image {
        height: 200px;
    }

    .modal-info {
        padding: 24px;
        gap: 16px;
    }

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

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }

    /* Project Details Responsive */
    .project-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .project-title {
        font-size: 36px;
    }

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

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

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

    .project-navigation {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Lightbox responsive */
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .nav-container {
        padding: 0 20px;
    }

    /* About page responsive */
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-hero .hero-title {
        font-size: 36px;
    }

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

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

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 6px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact page responsive */
    .contact-hero .hero-title {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        padding: 40px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 18px;
    }



    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-filters {
        gap: 20px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }


}

@media (max-width: 576px) {
    @keyframes animatemurk {
    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0px);
    }
     100% {
        transform: translateY(20px);
    }
}

        .image-stack {
        margin: 30px 0 40px;
    }
    .hero-cards {
        height: 120px;
    }

    .hero-card {
        width: 80px;
        height: 100px;
        margin-left: -20px;
        border-radius: 12px;
    }

    .hero-card img {
        border-radius: 12px;
    }

    .img-overlay h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .img-overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }



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

    .about-text .section-title {
        font-size: 32px;
    }

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



    
}

.liquidtext {
    font-size: 18rem;
    font-weight: 900;

    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    white-space: nowrap;
    top: -180px;
    letter-spacing: -0.06em;

    color: rgba(255, 255, 255, 0.15);

    padding: 20px 40px;
    border-radius: 30px;
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.15),
        0 0 20px rgba(255, 255, 255, 0.05);
}

.nav-menu {
    position: relative;
}

.nav-indicator {
    position: absolute;
    cursor: pointer;
    pointer-events: none;
    top: -6px;
    left: 0;
    height: 40px;
    border-radius: 16px;
    z-index: 1;
    will-change: left, width;
    background: transparent;
    color: #696969;
    border-radius: 32px;
    padding: 15px 25px;
    transition: all 0.65s cubic-bezier(.4, 1.2, .4, 1);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);

}


.social-link .fa-instagram {
    color: #E4405F;
}

.social-link .fa-twitter {
    color: #1DA1F2;
}

.social-link .fa-linkedin {
    color: #0077B5;
}

.social-link .fa-behance {
    color: #1769FF;
}

.social-link .fab {
    transition: color 0.2s;
}

.social-link:hover .fa-instagram {
    color: #b92d53;
}

.social-link:hover .fa-twitter {
    color: #0d8ddb;
}

.social-link:hover .fa-linkedin {
    color: #005983;
}

.social-link:hover .fa-behance {
    color: #0057c3;
}
.portfolio-grid:has(.skeleton-card) {
    display: flex;
    flex-wrap: wrap
}
    .skeleton-card {

    position: relative;
    width: 100%;
    display: block;
    width:calc(33.333% - 13.333px);
    margin-bottom: 40px;
    }

    .skeleton-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: -150px;
      height: 100%;
      width: 150px;
        
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      animation: loading 1.2s infinite;
    }

    @keyframes loading {
      0% {
        left: -150px;
      }
      100% {
        left: 100%;
      }
    }

    .skeleton-thumb {
       width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 1 / 1;
      background: #d0d0d0;
      border-radius: 8px 8px 0 0;
        border-radius: 16px
    }

   

    .skeleton-title {
      height: 20px;
      width: 100%;
      background: #d5d5d5;
      margin: 12px 0;
      border-radius: 6px;
    }

.contactFormPage .form-group {
    margin-bottom: 15px;
}
.contactFormPage .form-group .input {
    padding: 12px 16px;
}

.contactFormPage .form-group input, .contactFormPage .form-group select, .contactFormPage .form-group textarea {
    width: 500px;
    max-width: 100%
}
.contactFormPage .form-group input[type="submit"] {
    width: auto
}
.contactFormPage .wpcf7-spinner {
    display: none
}