:root {
    --primary-color: #0A192F;
    --secondary-color: #1fcfcb;
    --accent-color: #1fcfcb;
    --text-primary: #0A192F;
    --text-primary-white: #E6F1FF;
    --baslik-text-primary: #041b72;
    --text-secondary: #8892B0;
    --background: #ffff;
    --container-width: 1200px;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--background);
    color: var(--baslik-text-primary);
    line-height: 1.5;
    top: 0 !important;
    font-size: clamp(1rem, 1.5vw + 1rem, 1.5rem);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigasyon */
.header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    padding: 10px 0;
}

.navbar-logo .logo-svg {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}



.navbar-logo:hover .logo-svg,
.navbar-logo:hover .logo-text-svg {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
    color: 072878 ;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: none; /* Varsayılan olarak görsel yok */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: brightness(0.8);
    mask-image: linear-gradient(to bottom, rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.9));
    -webkit-mask-image: linear-gradient(to bottom, rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.9));
}

/* Hero-background için gradient overlay */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.9));
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 25, 47, 0.8) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(#65656500, #212e3b);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 6.5rem;
    font-weight: 1000;
    text-transform: uppercase;
    margin-bottom: 15vh;
    position: relative;
    display: inline-block;
    background: linear-gradient(178deg, #64ffda 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite,
              textPulse 2s ease-in-out infinite,
              fadeInUp 1s ease-out;
}

.hero-content h1::before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
}

.hero-content h1::after {
    display: none;
}

.hero-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 800px;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.glitch-text {
    margin-top: 30vh;
    position: relative;
    z-index: 2;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch-text::before {
    left: 2px;
    animation: glitch-1 3s infinite linear alternate-reverse;
    text-shadow: -2px 0 var(--secondary-color);
    background: white;
}

.glitch-text::after {
    left: -2px;
    animation: glitch-2 3s infinite linear alternate-reverse;
    text-shadow: 2px 0 var(--accent-color);
    background: white;
}

/* Buton stilleri */
.btn,
.btn-primary,
.btn-secondary {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    position: relative;
    text-shadow: none;
    box-shadow: none;
    padding: 0 35px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 0 !important;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Ana CTA butonları için özel stiller */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    margin: 0 !important;
    padding: 15px 35px;
    height: 52px;
    line-height: 1;
}

/* Tüm Ürünleri Gör butonu */
.btn-primary,
a.btn-primary,
.cta-buttons .btn-primary {
    background-color: transparent !important;
    color: #1fcfcb !important;
    border: 2px solid #1fcfcb !important;
    padding: 0 35px !important;
    border-radius: 25px !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    z-index: 1 !important;
}

.btn-primary:before,
a.btn-primary:before,
.cta-buttons .btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #1fcfcb;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    opacity: 0.1;
}

.btn-primary:hover,
a.btn-primary:hover,
.cta-buttons .btn-primary:hover {
    color: #1fcfcb !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.2) !important;
}

.btn-primary:hover:before,
a.btn-primary:hover:before,
.cta-buttons .btn-primary:hover:before {
    width: 300px;
    height: 300px;
}

/* Aktif durum için stil */
.btn-primary:active,
a.btn-primary:active,
.cta-buttons .btn-primary:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(100, 255, 218, 0.15) !important;
}

/* Btn Secondary için yeni stiller */
.btn-secondary,
a.btn-secondary,
.cta-buttons .btn-secondary {
    background-color: transparent !important;
    color: #ffffff !important; /* Beyaz renk */
    border: 2px solid #ffffff !important; /* Beyaz border */
    padding: 0 35px !important;
    border-radius: 25px !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    z-index: 1 !important;
}

.btn-secondary:before,
a.btn-secondary:before,
.cta-buttons .btn-secondary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    opacity: 0.1;
}

.btn-secondary:hover,
a.btn-secondary:hover,
.cta-buttons .btn-secondary:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important; /* Beyaz gölge */
}

.btn-secondary:hover:before,
a.btn-secondary:hover:before,
.cta-buttons .btn-secondary:hover:before {
    width: 300px;
    height: 300px;
}

/* Aktif durum için stil */
.btn-secondary:active,
a.btn-secondary:active,
.cta-buttons .btn-secondary:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15) !important; /* Beyaz gölge */
}

/* Ürün filtreleri için stil güncellemesi */
.product-filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    position: relative;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: #072878;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #1fcfcb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Aktif buton için başlangıç stili */
.filter-btn.active {
    color: #1fcfcb;
    border: none;
}

.filter-btn.active::after {
    width: 100%;
}

/* Aktif durumda border ve outline olmaması için */
.filter-btn:focus,
.filter-btn:active,
.filter-btn.active {
    outline: none;
    border: none;
    background: transparent;
}

.filter-btn:hover::after {
    width: 100%;
}

.filter-btn:hover {
    color: #1fcfcb;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .product-filters {
        gap: 10px;
        padding: 0 15px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 5rem;
    }
}

@media (max-width: 1024px) {
    .hero-background {
        display: none;
    }
    .container {
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 4vw + 1rem, 3rem);
        margin-bottom: 10vh;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        margin-top: 1.5rem;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .navbar-logo .logo-svg {
        height: 40px;
    }



    body .hero {
        height: 100vh;
        margin-top: 8vh;
        padding: 0;
        background-image: linear-gradient(to bottom, rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.9)), url('../images/hero-bg-mobil.webp') !important;
        background-attachment: scroll !important;
        background-position: top center !important;
        background-size: cover !important;
    }

    body .hero-content {
        height: 100vh;
        padding: 2vh;
        justify-content: center;
        gap: 1vh;
    }

    body .hero-content h1 {
        font-size: min(7vw, 2.5rem);
        margin-bottom: 1vh;
        letter-spacing: 0.5px;
    }

    body .hero-content p {
        font-size: min(4vw, 1rem);
        margin-bottom: 1vh;
        padding: 0 2vw;
        max-width: 90%;
    }

    body .hero-content-bottom {
        gap: 1vh;
        margin-bottom: 1vh;
    }

    body .cta-buttons {
        gap: 1vh;
        padding: 0 4vw;
    }

    body .cta-buttons .btn {
        padding: 1vh 4vw;
        font-size: min(3.5vw, 0.9rem);
        height: auto;
        min-height: 40px;
    }

    body .glitch-text {
        margin-top: 15vh;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 8vh;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content-bottom {
        gap: 1rem;
    }

    body .hero {
        background-position: 50% 20% !important;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes floatUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(100, 255, 218, 0.3))
               drop-shadow(0 0 5px rgba(100, 255, 218, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(100, 255, 218, 0.5))
               drop-shadow(0 0 15px rgba(100, 255, 218, 0.3));
    }
}

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

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitch-1 {
    0% {
        clip-path: inset(20% 0 30% 0);
    }
    20% {
        clip-path: inset(65% 0 1% 0);
    }
    40% {
        clip-path: inset(43% 0 1% 0);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
    }
    80% {
        clip-path: inset(75% 0 5% 0);
    }
    100% {
        clip-path: inset(10% 0 85% 0);
    }
}

@keyframes glitch-2 {
    0% {
        clip-path: inset(25% 0 58% 0);
    }
    20% {
        clip-path: inset(10% 0 85% 0);
    }
    40% {
        clip-path: inset(65% 0 1% 0);
    }
    60% {
        clip-path: inset(20% 0 30% 0);
    }
    80% {
        clip-path: inset(43% 0 1% 0);
    }
    100% {
        clip-path: inset(75% 0 5% 0);
    }
}

.scope-effect {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1002;
    transform: translate(-50%, -50%);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    background:
        radial-gradient(
            circle at center,
            transparent 88%,
            rgba(196, 18, 48, 0.8) 89%,
            rgba(196, 18, 48, 0.2) 90%,
            transparent 91%
        ),
        radial-gradient(
            circle at center,
            transparent 70%,
            rgba(100, 255, 218, 0.1) 71%,
            rgba(100, 255, 218, 0.3) 72%,
            transparent 73%
        ),
        radial-gradient(
            circle at center,
            transparent 45%,
            rgba(196, 18, 48, 0.1) 46%,
            rgba(196, 18, 48, 0.2) 47%,
            transparent 48%
        ),
        radial-gradient(
            circle at center,
            rgba(196, 18, 48, 0.8) 0%,
            rgba(196, 18, 48, 0.4) 1%,
            transparent 2%
        );
    border: 1px solid rgba(196, 18, 48, 0.1);
    border-radius: 50%;
    box-shadow:
        inset 0 0 40px rgba(196, 18, 48, 0.1),
        0 0 20px rgba(196, 18, 48, 0.2);
}

.scope-effect::before,
.scope-effect::after {
    content: '';
    position: absolute;
    background: rgba(196, 18, 48, 0.4);
    pointer-events: none;
}

.scope-effect::before {
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    transform: translateY(-50%);
}

.scope-effect::after {
    left: 50%;
    top: 10%;
    width: 1px;
    height: 80%;
    transform: translateX(-50%);
}

.scope-effect.targeting {
    transform: translate(-50%, -50%) scale(0.9);
    background:
        radial-gradient(
            circle at center,
            transparent 88%,
            rgba(196, 18, 48, 0.9) 89%,
            rgba(196, 18, 48, 0.3) 90%,
            transparent 91%
        ),
        radial-gradient(
            circle at center,
            rgba(196, 18, 48, 0.9) 0%,
            rgba(196, 18, 48, 0.5) 1%,
            transparent 2%
        );
    box-shadow:
        inset 0 0 60px rgba(196, 18, 48, 0.2),
        0 0 30px rgba(196, 18, 48, 0.3);
}

.scope-image {
    position: fixed;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.scope-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Görüntünün viewport dışına çıkmasını engelleme */
@media (max-width: 1400px) {
    .scope-image {
        width: 240px;
        height: 160px;
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 5rem;
    }
    .scope-effect {
        width: 60px;
        height: 60px;
    }

    .scope-image {
        width: 240px;
        height: 160px;
    }
}

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

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }

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


    .scope-effect {
        width: 80px;
        height: 80px;
    }

    .scope-image {
        width: 180px;
        height: 120px;
    }

    .target-point {
        transform: scale(0.7);
    }

    .target-point.active {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    .scope-effect {
        width: 60px;
        height: 60px;
    }

    .scope-image {
        width: 150px;
        height: 100px;
    }
}

.target-points {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.target-point {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-point:nth-child(1) { left: 20%; top: 25%; }
.target-point:nth-child(2) { right: 25%; top: 45%; }
.target-point:nth-child(3) { left: 40%; bottom: 30%; }

.target-point.visible {
    opacity: 1;
    transform: scale(1);
}

.target-point.active {
    animation: none;
}

@keyframes targetActivate {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.target-circle {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(196, 18, 48, 0.8);
    border-radius: 50%;
    transition: opacity 0.3s ease;
    position: relative;
}

.target-circle::before,
.target-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.target-circle::before {
    width: 15px;
    height: 15px;
}

.target-circle::after {
    width: 25px;
    height: 25px;
}

.target-point.active .target-circle::before {
    animation: targetPulse 1s infinite;
}

.target-point.active .target-circle::after {
    animation: targetPulse 1s infinite 0.2s;
}

@keyframes targetPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

.target-preview {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(10, 25, 47, 0.95);
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
    pointer-events: none;
}

.target-preview.active {
    opacity: 1;
    visibility: visible;
    animation: previewSlideIn 0.3s ease forwards;
}

.target-preview img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@keyframes previewSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.target-preview.active {
    animation: previewSlideIn 0.3s ease forwards;
}

.target-preview img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.target-info {
    padding: 15px;
}

.target-info h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.target-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scope-preview {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.98));
    border: 1px solid rgba(196, 18, 48, 0.2);
    border-radius: 12px;
    overflow: hidden;
    width: 280px;
    max-width: 90vw;
    pointer-events: none;
    z-index: 1001;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    margin-left: 20px;
}

.scope-preview.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.scope-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-bottom: 1px solid rgba(196, 18, 48, 0.2);
}

.scope-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.scope-preview.active .scope-image img {
    transform: scale(1.05);
}

.scope-info {
    padding: 15px;
    background: linear-gradient(to bottom, transparent, rgba(10, 25, 47, 0.8));
}

.scope-info h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.scope-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .scope-preview {
        width: 240px;
    }

    .scope-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .scope-preview {
        width: 200px;
    }

    .scope-image {
        height: 120px;
    }
}

.scope-effect {
    width: 80px;
    height: 80px;
}

.target-preview {
    width: 200px;
    background: rgba(10, 25, 47, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.target-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

@media (max-width: 1200px) {
    .scope-effect {
        width: 60px;
        height: 60px;
    }

    .target-preview {
        width: 180px;
    }

    .target-preview img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .scope-effect {
        width: 40px;
        height: 40px;
    }

    .target-preview {
        width: 150px;
    }

    .target-preview img {
        height: 90px;
    }

    .target-info h3 {
        font-size: 14px;
    }

    .target-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .scope-effect {
        width: 30px;
        height: 30px;
    }

    .target-preview {
        width: 120px;
    }

    .target-preview img {
        height: 80px;
    }
}

/* Sertifikalar Bölümü */
.certificates {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.95));
    position: relative;
}

.certificates h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
}

.cert-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.cert-item {
    flex: 0 1 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 255, 218, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cert-item:hover::before {
    opacity: 1;
}

.cert-item.hovering::before {
    animation: pulseOverlay 1.5s infinite;
}

@keyframes pulseOverlay {
    0% { opacity: 0; }
    50% { opacity: 0.2; }
    100% { opacity: 0; }
}

.cert-item:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cert-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.cert-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.cert-info {
    padding: 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.cert-info h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Play', sans-serif;
}

.cert-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .cert-slider {
        gap: 20px;
    }

    .cert-item {
        flex: 0 1 280px;
    }
}

@media (max-width: 768px) {
    .certificates h2 {
        font-size: 2rem;
    }

    .cert-item {
        flex: 0 1 260px;
    }

    .cert-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cert-item {
        flex: 0 1 100%;
    }

    .cert-item img {
        height: 160px;
    }

    .cert-info h3 {
        font-size: 1.1rem;
    }
}

/* Biz Kimiz? bölümü için güncellenmiş stiller */
.about-text {
    position: relative;
    padding: 40px;
    background: rgba(10, 25, 47, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 600px;
}

.about-text:hover {
    border-color: rgba(100, 255, 218, 0.2);
    background: rgba(10, 25, 47, 0.4);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: justify;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(100, 255, 218, 0.2);
}

.about-image-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.about-image-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(10, 25, 47, 0.5)
    );
    pointer-events: none;
}

.about-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-new:hover img {
    transform: scale(1.05);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* Tüm section başlıkları için ortak stil */
.section-title,
.product-categories h2,
.work-process h2,
.certificates h2,
.values-section h2,
.home-about .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    position: relative;
    letter-spacing: 1px;
}

/* Başlık altındaki çizgi için stil */
.section-title:after,
.product-categories h2:after,
.work-process h2:after,
.certificates h2:after,
.values-section h2:after,
.home-about .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #072878 , transparent);
    border-radius: 2px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .section-title,
    .product-categories h2,
    .work-process h2,
    .certificates h2,
    .values-section h2,
    .home-about .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title,
    .product-categories h2,
    .work-process h2,
    .certificates h2,
    .values-section h2,
    .home-about .section-title {
        font-size: 1.8rem;
    }
}

/* Modal için overlay */
.cert-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.cert-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.cert-modal {
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cert-modal.active {
    transform: scale(1);
    opacity: 1;
}

.cert-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Close button */
.cert-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cert-modal-close:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: rotate(90deg);
}

/* Sertifika kartlarına hover efekti */
.cert-item {
    cursor: pointer;
    position: relative;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 255, 218, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cert-item:hover::before {
    opacity: 1;
}

.cert-item.hovering::before {
    animation: pulseOverlay 1.5s infinite;
}

@keyframes pulseOverlay {
    0% { opacity: 0; }
    50% { opacity: 0.2; }
    100% { opacity: 0; }
}

.cert-item:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.samira-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.samira-link:hover {
    color: var(--text-primary);
}

.samira-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.samira-link:hover::after {
    width: 100%;
}

/* Dil seçici stilleri */
.language-selector {
    position: relative;

    z-index: 9999;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.lang-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: var(--background);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 5px;
    padding: 8px 0;
    list-style: none;
    min-width: 150px;
    display: none;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.language-selector.active .lang-menu {
    display: block;
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-menu li:hover {
    background: rgba(100, 255, 218, 0.1);
}

.lang-menu img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.lang-menu span {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .lang-btn span {
        display: none;
    }

    .lang-btn {
        padding: 8px;
    }
}

/* Çeviri yüklenirken gösterilecek loading animasyonu */
body.translating::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
}

body.translating::before {
    content: 'Çeviriliyor...';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 1.2rem;
    z-index: 9999;
    background: var(--background);
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

/* Google Translate widget stillerini gizle */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.goog-logo-link {
    display: none !important;
}

#google_translate_element {
    position: absolute !important;
    top: -1000px !important;
    visibility: hidden !important;
}

/* Çeviri seçeneklerinin görünümünü düzelt */
.goog-te-menu-frame {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.goog-te-menu2 {
    background-color: var(--background) !important;
    border: 1px solid rgba(100, 255, 218, 0.1) !important;
}

/* Veya spesifik bir class'a sahipse */
.products-btn,
.view-all-products {
    text-shadow: none;
    box-shadow: none;
}

/* Footer'dan logo stillerini kaldır */
.footer-logo {
    display: none;
}

/* Eski logo text'ini kaldırıyoruz */
.logo-text {
    display: none;
}

.page-hero {
    background: white; /* Arka planı beyaz yap */
    /* Diğer stiller... */
}

/* Tablet cihazlar için */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-btn {
        padding: 0.6rem 1.2rem; /* Tablet için buton boyutunu ayarlayın */
    }
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 4vw + 1rem, 3rem); /* Mobilde daha büyük font boyutu */
    }

    .nav-btn {
        padding: 0.4rem 0.8rem; /* Mobilde buton boyutunu ayarlayın */
    }

    .category-title {
        font-size: clamp(1.2rem, 3vw + 0.5rem, 1.5rem); /* Mobilde daha küçük font boyutu */
    }
}

/* Hero Section Responsive */
@media screen and (max-width: 768px) {
    body .hero {
        height: 100vh;
        margin-top: 8vh;
        padding: 0;
    }

    body .hero-content {
        margin-top: 50px;
        height: 100vh;
        padding: 2vh;
        justify-content: center;
        gap: 1vh;
    }

    body .hero-content h1 {
        font-size: min(7vw, 2.5rem);
        margin-bottom: 1vh;
        letter-spacing: 0.5px;
    }

    body .hero-content p {
        font-size: min(4vw, 1rem);
        margin-bottom: 1vh;
        padding: 0 2vw;
        max-width: 90%;
    }

    body .hero-content-bottom {
        gap: 1vh;
        margin-bottom: 1vh;
    }

    body .cta-buttons {
        gap: 1vh;
        padding: 0 4vw;
    }

    body .cta-buttons .btn {
        padding: 1vh 4vw;
        font-size: min(3.5vw, 0.9rem);
        height: auto;
        min-height: 40px;
    }

    body .glitch-text {
        margin-top: 15vh;
    }
}

@media screen and (max-width: 480px) {
    body .hero {
        height: 100vh;
    }

    body .hero-content {
        height: 100vh;
        padding: 1.5vh;
    }

    body .hero-content h1 {
        font-size: min(6vw, 2rem);
        margin-bottom: 0.8vh;
    }

    body .hero-content p {
        font-size: min(3.5vw, 0.9rem);
        margin-bottom: 0.8vh;
    }

    body .cta-buttons .btn {
        font-size: min(3vw, 0.85rem);
        min-height: 35px;
    }

    body .glitch-text {
        margin-top: 12vh;
    }
}

/* Tablet ekranlar için düzenleme */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    body .hero {
        background-image: linear-gradient(to bottom, rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.9)), url('../images/hero-bg-mobil.webp') !important;
        background-attachment: scroll !important;
        background-position: top center !important;
    }

    .hero-background {
        display: none; /* Tablet'te de hero-background'ı gizle */
    }
}
