/* Temel Değişkenler ve Reset */
:root {
    --musyorum-primary: #229c0a;
    --musyorum-primary-dark: rgb(6, 194, 133);
    --musyorum-dark-bg:  #000000;
    --musyorum-card-bg: rgba(16, 28, 40, 0.8);
    --musyorum-text: #ffffff;
    --musyorum-text-light: rgba(255, 255, 255, 0.8);
    --musyorum-accent: #229c0a;
    --musyorum-border: rgba(34, 156, 10, 0.2);
    --musyorum-max-width: 90%;
    --musyorum-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: black!important;
    color: var(--musyorum-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Hareketli Arka Plan */
/*.musyorum-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
    background: linear-gradient(135deg, #081b29 0%,  #000000 100%);
}*/

.musyorum-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(34, 156, 10, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out; /* 15s yerine 8s olarak değiştirildi */
}

.musyorum-particle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.musyorum-particle:nth-child(2) {
    width: 500px;
    height: 500px;
    top: 20%;
    right: -150px;
    animation-delay: -1s; /* Delay sürelerini de azalttım */
}

.musyorum-particle:nth-child(3) {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 10%;
    animation-delay: -2s;
}

.musyorum-particle:nth-child(4) {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    animation-delay: -3s;
}

.musyorum-particle:nth-child(5) {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: 20%;
    animation-delay: -4s;
}

.musyorum-particle:nth-child(6) {
    width: 280px;
    height: 280px;
    top: 60%;
    right: 40%;
    animation-delay: -5s;
}

.musyorum-particle:nth-child(7) {
    width: 380px;
    height: 380px;
    top: 10%;
    left: 40%;
    animation-delay: -6s;
}

.musyorum-particle:nth-child(8) {
    width: 320px;
    height: 320px;
    bottom: 30%;
    right: 5%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-40px) translateX(30px) scale(1.05); /* Hareket miktarını da arttırdım */
        opacity: 0.7;
    }
    50% {
        transform: translateY(0) translateX(60px) scale(1); /* Daha fazla yatay hareket */
        opacity: 0.5;
    }
    75% {
        transform: translateY(40px) translateX(30px) scale(0.95); /* Hareket miktarını arttırdım */
        opacity: 0.7;
    }
}

/* Ana Container */
.musyorum-main {
    /*max-width: var(--musyorum-max-width);
    margin: 0 auto;
    padding: 40px 20px;*/
    position: relative;
    z-index: 1;
}

/* Hero Bölümü */
.musyorum-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.musyorum-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.musyorum-crown-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(to right, rgb(255, 255, 255), #229c0a) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: rgba(34, 156, 10, 0.25) 0px 0px 30px;
}

.musyorum-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(to right, rgb(255, 255, 255), #229c0a) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: rgba(34, 156, 10, 0.25) 0px 0px 30px;
}

.musyorum-hero-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #229c0a;
    text-align: center;
    font-weight: 400;
}

.musyorum-hero-description i {
    color: var(--musyorum-primary);
}

/* Testimonials Grid */
.musyorum-testimonials {
    margin-bottom: 80px;
    padding: 0px 40px;
}

.musyorum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: var(--musyorum-max-width);
    margin: 0 auto;
}


/* Testimonial Card */
.musyorum-card {
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--musyorum-border);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--musyorum-shadow);
}

.musyorum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.musyorum-quote-icon {
    color: var(--musyorum-primary);
    font-size: 2rem;
    top: 20px;
    right: 20px;
    opacity: 0.2;
}

.musyorum-testimonial-content {
    margin-bottom: 25px;
    margin-top: -10px;
}

.musyorum-testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 1.5rem 0px;
    font-size: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px;
}

.musyorum-rating {
    display: flex;
    gap: 5px;
}

.musyorum-rating i {
    color: #229c0a;
    filter: drop-shadow(0 0 5px rgba(34, 156, 10, 0.25));
}

/* Author Info */
.musyorum-testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--musyorum-border);
    padding-top: 20px;
    position: relative; /* Bu satır eklendi - ::before için referans noktası oluşturur */
}

.musyorum-testimonial-author::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0; /* Genişliği başlangıçta 0 olarak ayarlayın */
    height: 1px;
    background: #229c0a;
    animation: expandLine 2s ease-out forwards;
}

/* Eksik animasyon tanımı eklendi */
@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 50%;
    }
}



.musyorum-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--musyorum-primary);
    margin-right: 15px;
    flex-shrink: 0;
    border:none;
}

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

.musyorum-author-info {
    flex: 1;
}

.musyorum-author-name {
    display: flex;
    align-items: center;
}

.musyorum-author-name i {
    color: var(--musyorum-primary);
    margin-right: 8px;
    font-size: 0.9rem;
}

.musyorum-author-name h3 {
    color: #229c0a;
    font-size: 1.2rem;
    font-weight: 800;
    gap: 0.5rem;
}

.musyorum-author-position,
.musyorum-testimonial-date {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--musyorum-text-light);
}

.musyorum-author-position i,
.musyorum-testimonial-date i {
    color: var(--musyorum-primary);
    margin-right: 8px;
    font-size: 0.8rem;
}




.musyorum-cta, .musyorum-grid{

    max-width: 1500px;
    margin: 0 auto;
}

/* CTA Section */
.musyorum-cta {
    background: linear-gradient(135deg, rgba(8, 252, 172, 0.2) 0%, rgba(6, 194, 133, 0.1) 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--musyorum-border);
    box-shadow: var(--musyorum-shadow);
}

.musyorum-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.musyorum-cta h2 {
    font-size: 2rem;
    color: var(--musyorum-primary);
}

.musyorum-cta p {
    color: var(--musyorum-text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.musyorum-btn-primary,
.musyorum-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.musyorum-btn-primary {
    background-color: var(--musyorum-primary);
    color: var(--musyorum-dark-bg);
}

.musyorum-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--musyorum-primary);
    color: var(--musyorum-primary);
}

.musyorum-btn-primary:hover {
    background-color: var(--musyorum-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.musyorum-btn-secondary:hover {
    background-color: rgba(8, 252, 172, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.musyorum-btn-primary i,
.musyorum-btn-secondary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .musyorum-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .musyorum-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .musyorum-grid {
        grid-template-columns: 1fr;
    }
    
    .musyorum-hero h1 {
        font-size: 2.5rem;
    }
    
    .musyorum-cta {
        padding: 40px 20px;
                margin: 0px 20px;
    }
    
    .musyorum-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .musyorum-hero h1 {
        font-size: 4rem;
        line-height: 60px;
    }
    .musyorum-crown-icon{
        font-size: 4rem;
    }
    
    .musyorum-hero-description {
        font-size: 1rem;
    }
    
    .musyorum-card {
        padding: 20px;
    }
    
    .musyorum-testimonial-content p {
        min-height: auto;
    }
    
    .musyorum-author-image {
        width: 50px;
        height: 50px;
    }
    
    .musyorum-btn-primary,
    .musyorum-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .musyorum-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}








































/* Hero References Section */
.hero-references {

    padding: 15px 0;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.hero-references p {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}
.hero-logos-slider-container {
    width: 100%;
    overflow: hidden;
}
.hero-logos-slider {
    display: flex;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}
.hero-logo-item {
    margin: 0 15px;
}
.hero-logo-item img {
    height: 40px; /* Smaller logo size */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* References Section - keep for reference but it's no longer used */
.references {
    padding: 50px 0;
    background-color: var(--bg-light);
    text-align: center;
}
.references h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 64px;
    font-weight: 800; /* Ana baÅŸlÄ±k iÃ§in CRC55 */
    line-height: normal;
    font-style: normal;
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.references p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 20px;
}
.logos-slider-container {
    width: 100vw; /* Tam ekran geniÅŸliÄŸi iÃ§in viewport width */
    margin-left: calc(-50vw + 50%); /* SayfanÄ±n merkezinden sol ve saÄŸa geniÅŸletmek iÃ§in */
    overflow: hidden;
    position: relative;
    padding: 3rem 0; /* Logo bÃ¼yÃ¼dÃ¼ÄŸÃ¼nde daha fazla alan */
    background-color: rgb(5, 5, 5); /* Arka plan rengi eklendi */
}
.logos-slider {
    display: flex;
    animation: scroll 30s linear infinite; /* Animasyon sÃ¼resi ve tipi */
    width: calc(250px * 12); /* Her logo kutusu 250px ve toplam 12 logo */
}
.logo-item {
    flex: 0 0 250px; /* Her logo kutusu 250px geniÅŸliÄŸinde ve sabit */
    height: 140px; /* YÃ¼ksekliÄŸi artÄ±rÄ±ldÄ± */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin: 0 15px;
    background-color: rgba(18, 18, 18); /* Ã‡ok hafif bir arka plan */
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
    opacity: 0.7;
    z-index: 1;
}
.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.logo-item:hover {
    transform: scale(1.15) translateY(-5px); /* BÃ¼yÃ¼tme ve yukarÄ± kaldÄ±rma */
    opacity: 1;
    z-index: 2; /* DiÄŸer logolarÄ±n Ã¼zerine Ã§Ä±kmasÄ± iÃ§in */
}
.logo-item:hover::before {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(34, 156, 10, 0.5), /* DÄ±ÅŸ parlama */
                inset 0 0 8px rgba(34, 156, 10, 0.2); /* Ä°Ã§ parlama */
}
.logo-item img {
    max-width: 100%;
    max-height: 80px; /* Logo gÃ¶rselinin maksimum yÃ¼ksekliÄŸi artÄ±rÄ±ldÄ± */
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo-item:hover img {
    transform: scale(1.1); /* Logo gÃ¶rselini de hafifÃ§e bÃ¼yÃ¼tme */
}
/* Logo slider animasyonu */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Ä°lk 6 logo kadar negatif yÃ¶nde kaydÄ±r */
    }
}