/* ==========================================================================
   TEMEL AYARLAR
   ========================================================================== */
   :root {
    --black: #000000;
    --green: #bfff00;
    --white: #FFFFFF;
    --gray: #a0a0a0;
    --dark-gray: #1a1a1a;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   CUSTOM SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d8ff60;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--green) #0a0a0a;
}

/* Scroll Progress Bar - ALTTA */
.scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #d8ff60);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 -2px 10px rgba(191, 255, 0, 0.4);
}

/* ==========================================================================
   HERO SECTION - GALAXY EFFECT
   ========================================================================== */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    z-index: 10;
    max-width: 600px;
    width: 100%;
}

/* Galaxy Background */
.galaxy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    animation: twinkle var(--duration) infinite ease-in-out;
    opacity: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: var(--opacity); transform: scale(1); }
}

/* Nebula clouds */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-nebula var(--duration) infinite ease-in-out;
    opacity: 0.15;
}

.nebula-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    --duration: 20s;
}

.nebula-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.6) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    --duration: 25s;
    animation-delay: -5s;
}

.nebula-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.5) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    --duration: 30s;
    animation-delay: -10s;
}

@keyframes float-nebula {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -40px) scale(1.1);
    }
    66% { 
        transform: translate(-40px, 30px) scale(0.9);
    }
}

/* Ana İsim Kartı - ÇERÇEVE YOK */
.hero-name-card {
    background: transparent;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.hero-name-card h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

/* İsimde sarı vurgu ve glow */
.hero-name-card h1 .highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 20px rgba(191, 255, 0, 0.8),
        0 0 40px rgba(191, 255, 0, 0.6),
        0 0 60px rgba(191, 255, 0, 0.4);
    animation: glow-pulse 3s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(191, 255, 0, 0.6),
            0 0 40px rgba(191, 255, 0, 0.4),
            0 0 60px rgba(191, 255, 0, 0.2);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(191, 255, 0, 1),
            0 0 60px rgba(191, 255, 0, 0.8),
            0 0 90px rgba(191, 255, 0, 0.6);
    }
}

.hero-name-card .subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gray);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* İletişim İkonları - Tıklanabilir */
.hero-contact-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-icon:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: var(--green);
    background: rgba(191, 255, 0, 0.1);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.2);
}

.contact-icon:hover svg {
    stroke: var(--green);
    transform: scale(1.1);
}

.cta-button {
    background-color: var(--green);
    color: var(--black);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px);
    background-color: #d8ff60;
    box-shadow: 0 15px 50px rgba(191, 255, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   GENEL SECTION STİLLERİ
   ========================================================================== */
.content-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* ==========================================================================
   HİZMETLER - YENİ MODERN TASARIM
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-modern {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 3rem;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-card-modern::before {
    content: attr(data-number);
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(191, 255, 0, 0.03);
    line-height: 1;
    transition: all 0.6s ease;
}

.service-card-modern:hover::before {
    color: rgba(191, 255, 0, 0.08);
    transform: scale(1.1);
}

.service-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.05;
    transition: opacity 0.6s ease;
}

.pattern-1 { background: radial-gradient(circle, var(--green) 1px, transparent 1px); background-size: 30px 30px; }
.pattern-2 { background: linear-gradient(45deg, transparent 48%, var(--green) 49%, var(--green) 51%, transparent 52%); background-size: 20px 20px; }
.pattern-3 { background: repeating-linear-gradient(90deg, transparent, transparent 10px, var(--green) 10px, var(--green) 11px); }
.pattern-4 { background: conic-gradient(from 90deg at 50% 50%, transparent 0deg, var(--green) 90deg, transparent 180deg); background-size: 40px 40px; }

.service-card-modern:hover .service-bg-pattern {
    opacity: 0.15;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(191, 255, 0, 0.15);
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(191, 255, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--green);
    transition: all 0.6s ease;
}

.service-card-modern:hover .service-icon {
    background: var(--green);
    color: var(--black);
    transform: rotate(5deg) scale(1.1);
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-content h3 {
    color: var(--green);
}

.service-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.service-techs span {
    background: transparent;
    color: var(--gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-techs span {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    font-weight: 600;
}

/* ==========================================================================
   PROJELER - DAHA YUMUŞAK TİLT
   ========================================================================== */
#projects {
    padding: 8rem 2rem;
}

.project-slider {
    position: relative;
    padding: 3rem 0 4rem 0;
    touch-action: pan-y;
}

.project-slider .swiper-slide {
    width: 90%;
    max-width: 750px;
    opacity: 0.4;
    filter: blur(3px);
    transition: all 0.5s ease;
}

.project-slider .swiper-slide-active {
    opacity: 1;
    filter: blur(0);
    z-index: 10;
}

/* Unified Proje Kartı */
.project-card-unified {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

/* PARLAMA EFEKTİ */
.project-card-unified::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(191, 255, 0, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.project-slider .swiper-slide-active .project-card-unified:hover::after {
    opacity: 1;
}

.card-inner {
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    z-index: 2;
}

.project-slider .swiper-slide-active .project-card-unified:hover {
    border-color: var(--green);
    box-shadow: 0 20px 50px rgba(191, 255, 0, 0.2);
}

/* Mockup Container */
.project-mockup-unified {
    padding: 3rem 2rem 2rem 2rem;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: radial-gradient(circle at 50% 30%, rgba(191, 255, 0, 0.02) 0%, transparent 60%);
    position: relative;
}

/* Desktop Mockup */
.mockup-desktop {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.desktop-screen {
    width: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.mac-titlebar {
    height: 32px;
    background: linear-gradient(to bottom, #2d2d2d 0%, #242424 100%);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    border-bottom: 1px solid #0a0a0a;
}

.mac-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mac-button.red { background: #ff5f57; }
.mac-button.yellow { background: #ffbd2e; }
.mac-button.green { background: #28ca42; }

.project-slider .swiper-slide-active .project-card-unified:hover .mac-button.red { background: #e04640; }
.project-slider .swiper-slide-active .project-card-unified:hover .mac-button.yellow { background: #f5a623; }
.project-slider .swiper-slide-active .project-card-unified:hover .mac-button.green { background: #24a134; }

.desktop-content {
    width: 100%;
    height: 300px;
    background: #0a0a0a;
    overflow: hidden;
}

.desktop-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-slider .swiper-slide-active .project-card-unified:hover .mockup-desktop {
    transform: scale(1.01) translateY(-3px) translateX(-5px);
}

/* Mobile Mockup */
.mockup-mobile {
    flex-shrink: 0;
    width: 140px;
    position: relative;
    z-index: 2;
    margin-left: -70px;
    transition: transform 0.4s ease;
}

.mobile-screen {
    width: 140px;
    height: 280px;
    background: #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
                0 0 0 3px #3a3a3a,
                0 0 0 4px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
    position: relative;
    padding: 0;
}

.mobile-content {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.mobile-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.project-slider .swiper-slide-active .project-card-unified:hover .mockup-mobile {
    transform: scale(1.02) translateY(-5px) translateX(3px);
}

/* Proje Bilgileri */
.project-info-unified {
    padding: 2rem;
    text-align: left;
    position: relative;
    z-index: 5;
}

.project-info-unified h3 {
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-slider .swiper-slide-active .project-card-unified:hover .project-info-unified h3 {
    color: var(--green);
}

.project-info-unified p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.project-tech {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--green);
    width: 45px;
    height: 45px;
    background: rgba(191, 255, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--green);
    color: var(--black);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 900;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--green);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   İLETİŞİM - MİNİMAL KOMPAKT TASARIM
   ========================================================================== */
#contact {
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem !important;
}

#contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

#contact h2 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

#contact p {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    font-size: 1rem;
    color: var(--gray);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 140px));
    gap: 2.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.contact-item:hover .contact-item-icon {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.3);
}

.contact-item-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--green);
    fill: none;
    transition: all 0.4s ease;
}

/* WhatsApp ikonu için fill kullan */
.contact-item:first-child .contact-item-icon svg {
    fill: var(--green);
    stroke: none;
}

.contact-item:hover .contact-item-icon svg {
    stroke: var(--black);
}

.contact-item:first-child:hover .contact-item-icon svg {
    fill: var(--black);
    stroke: none;
}

.contact-item-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item-info {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-item-label,
.contact-item:hover .contact-item-info {
    color: var(--green);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #222;
    color: var(--gray);
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-slider .swiper-slide {
        width: 70%;
    }

    .hero-contact-icons {
        gap: 2.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================================
   RESPONSIVE - DESKTOP
   ========================================================================== */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-slider .swiper-slide {
        width: 55%;
    }
    
    #projects {
        max-width: 1400px;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBİL
   ========================================================================== */
@media (max-width: 767px) {
    #hero {
        padding: 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-name-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .hero-name-card h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-name-card .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-contact-icons {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 35px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .nebula-1 { width: 350px; height: 350px; opacity: 0.14; }
    .nebula-2 { width: 300px; height: 300px; opacity: 0.16; }
    .nebula-3 { width: 250px; height: 250px; opacity: 0.12; }

    #contact {
        padding: 5rem 1.5rem !important;
    }

    #contact h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    #contact p {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-item {
        min-width: 130px;
    }

    .contact-item-icon {
        width: 65px;
        height: 65px;
    }

    .contact-item-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-item-label {
        font-size: 0.7rem;
    }

    .contact-item-info {
        font-size: 0.8rem;
    }

    .content-section { 
        padding: 5rem 1.5rem; 
    }
    
    .content-section h2 { 
        font-size: 2rem; 
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    /* Hizmetler Mobil */
    .service-card-modern {
        padding: 2rem;
    }
    
    .service-card-modern::before {
        font-size: 5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    /* Projeler Mobil */
    #projects { 
        padding: 5rem 1rem; 
    }

    .project-mockup-unified {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .desktop-content {
        height: 180px;
    }

    .mockup-mobile {
        width: 110px;
        margin-left: -50px;
    }

    .mobile-screen {
        width: 110px;
        height: 235px;
    }

    .project-info-unified {
        padding: 1.5rem;
    }

    .project-info-unified h3 {
        font-size: 1.4rem;
    }

    .project-info-unified p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   ANIMASYONLAR
   ========================================================================== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-left {
    animation: slideInFromLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInFromRight 0.8s ease forwards;
}