/* ----------------- MAIN CONTENT STYLES ----------------- */
/* Hero Section */
.hero {
    padding: 0; /* Mevcut padding'i kaldıralım */
    position: relative;
    overflow: hidden;
    height: 100vh; /* Tam ekran yüksekliği */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
}
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
    padding-left: 20px; /* Sol taraftan biraz boşluk ekleyin (isteğe bağlı) */
    margin-left: 0; /* Sol kenardan uzaklığı sıfırla */
}
.hero .container {
    display: flex; /* Ekleyin: Container'ı da flex yapın */
    align-items: center; /* Ekleyin: Dikey eksende ortala */
    justify-content: flex-start; /* Ekleyin: Yatay eksende sola hizala */
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video tüm alanı kaplayacak şekilde boyutlandırılır */
    position: absolute;
    top: 0;
    left: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(34, 156, 10, 0.10), /* Soldan yeşil geçiş başlangıcı */
        rgba(34, 156, 10, 0.025)   /* Sağa doğru koyu arka plana geçiş */
    );
    z-index: -1;
}
.hero h1 {
    font-size: 72px;
    font-weight: 800; /* Ana başlık için CRC65 */
    line-height: 85px;
}
.hero h2 {
    font-size: 72px;
    font-weight: 800; /* Ana başlık için CRC65 */
    margin-bottom: 20px;
    line-height: 50px;
}
.hero p {
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    transition: all 0.3s;
    color: #229c0a;
    padding: 1rem 2rem;
    border: 1px solid #229c0a;
    font-family: 'CRC', sans-serif;
}
.btn-primary {
    display: inline-flex;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #229c0a;
    color: #ffffff;
    padding: .7rem 2rem;
    font-size: 1.125rem;
}
.btn-outline {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: #229c0a;
    font-weight: 800;
}
.btn:hover {
    transform: translateY(-2px);
}
/* Decorative Line Stili */
.decorative-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(34, 156, 10, 0.5), rgba(34, 156, 10, 1), rgba(34, 156, 10, 0.5), transparent);
    z-index: 10;
    opacity: 0.9;
    animation: glow 2s infinite alternate;
}
/* Section arasındaki decorative line için özel sınıf */
.section-divider {
    position: relative;
    height: 3px; /* Sadece çizgi yüksekliği kadar */
    margin: 0;
    padding: 0;
    z-index: 50; /* Yüksek z-index değeri */
    overflow: visible;
}
.section-divider .decorative-line {
    position: relative; /* absolute yerine relative */
    display: block; /* inline davranışını engeller */
    top: auto;
    bottom: auto;
}
/* Konumlandırma sınıfları */
.decorative-line.top {
    top: 0;
}
.decorative-line.bottom {
    bottom: 0;
}
/* Hero References Section */
.hero-references {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    width: 100%;
    text-align: center;
}
.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 */
    }
}
/* Technology Solutions Section */
.tech-solutions {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 156, 10, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(34, 156, 10, 0.03) 0%, transparent 50%);
}
.tech-solutions h2 {
    text-align: center;
    margin-bottom: 100px;
    font-size: 62px;
    font-weight: 800;
    position: relative;
    font-style: normal;
    line-height: normal;
    padding-bottom: 30px; /* Alt çizgiler için daha fazla alan */
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Sol taraftaki çizgi */
.tech-solutions h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 43%; /* Sol tarafta konumlandırma */
    width: 30px;
    height: 4px;
    background: #229c0a;
    border-radius: 2px;
    box-shadow: 0 0 15px #229c0a;
}
/* Sağ taraftaki çizgi */
.tech-solutions h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 43%; /* Sağ tarafta konumlandırma */
    width: 30px;
    height: 4px;
    background: #229c0a;
    border-radius: 2px;
    box-shadow: 0 0 15px #229c0a;
}
/* Orta çizgi için ek bir element gerekiyor */
.tech-solutions h2 span.middle-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Tam ortalama */
    width: 60px;
    height: 4px;
    background: #229c0a;
    border-radius: 2px;
    box-shadow: 0 0 15px #229c0a;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 sütun yerine 2 sütun */
    gap: 30px;
    max-width: 1100px; /* İsterseniz maksimum genişlik ekleyebilirsiniz */
    margin: 0 auto; /* Ortalamak için */
}
.solution-card {
    padding: 30px;
    border-radius: 12px;
    background-color: #080c0b;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 156, 10, 0.1);
    position: relative;
    overflow: hidden;
}
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(34, 156, 10, 0.15);
    border-color: rgba(34, 156, 10, 0.3);
}
/* Yuvarlak ikon konteyner */
.solution-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 156, 10, 0.1), rgba(34, 156, 10, 0.3));
    margin-bottom: 20px;
    position: relative;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.4s ease;
}
/* Dış parlama efekti */
.solution-card .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(34, 156, 10, 0.3);
    box-shadow: 0 0 15px rgba(34, 156, 10, 0.5);
    animation: pulse 2s infinite;
    z-index: 0;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 156, 10, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 156, 10, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 156, 10, 0);
    }
}
.solution-card .icon i {
    position: relative;
    z-index: 1;
}
.solution-card:hover .icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(34, 156, 10, 0.3), rgba(34, 156, 10, 0.5));
    box-shadow: 0 0 20px rgba(34, 156, 10, 0.7);
}
.solution-card h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 36px;
    font-weight: 800; /* Orta başlık için CRC55 */
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(34, 156, 10, 0.2);
}
.solution-card p {
    color: var(--gray-text);
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
}
/* Hover durumunda metin rengi değişimi */
.solution-card:hover h3 {
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.solution-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}
/* Sectors Section */
.sectors {
    padding: 80px 0;
    background-color: var(--bg-color);
}
/* Başlık stili */
.sectors .section-heading {
    color: var(--primary-color);
    line-height: normal;
    margin-bottom: 40px;
    font-style: normal;
    font-size: 42px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    text-align: center; /* Başlığı ortala */
}
.sectors-content {
    display: flex;
    align-items: center; /* flex-start yerine center kullanarak aynı hizaya getir */
    gap: 40px;
}
.sectors-image {
    flex: 0.9; /* Biraz daha dar */
    display: flex;
    align-items: center; /* İçeriği dikey olarak ortalar */
    position: relative;
    isolation: isolate; /* Modern tarayıcılar için stacking context oluşturur */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: translateZ(0); /* Hardware acceleration için */
    height: 500px; /* Sabit yükseklik */
}
.sectors-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
                rgba(34, 156, 10, 0.3) 0%,
                rgba(0, 0, 0, 0) 50%);
    z-index: 1;
    pointer-events: none;
}
.sectors-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.sectors-image img {
    width: 105%; /* Biraz daha geniş */
    height: 100%;
    object-fit: cover; /* Görsel oranını koru */
    transform: scale(1.05); /* Görsel kenarlarında ufak bir kayma efekti */
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    position: relative;
}
/* Hover efekti */
.sectors-image:hover img {
    transform: scale(1.1); /* Hover durumunda görsel biraz büyüsün */
}
/* Parlayan kenar efekti */
.sectors-image::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg,
                rgba(34, 156, 10, 0.5) 0%,
                rgba(34, 156, 10, 0.2) 25%,
                rgba(0, 0, 0, 0) 50%,
                rgba(34, 156, 10, 0.2) 75%,
                rgba(34, 156, 10, 0.5) 100%);
    z-index: 2;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.7;
}
.sectors-info {
    flex: 1.1; /* Biraz daha geniş */
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği dikey olarak ortalar */
}
.sectors-info h2 {
    color: var(--primary-color);
    margin-bottom: 25px; /* Biraz azalttık */
    font-size: 48px;
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
}
.sectors-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    position: relative;
}
.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 5px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid rgba(34, 156, 10, 0.2);
    height: 150px; /* Daha dikdörtgen bir görünüm için */
}
/* Tüm sector-item a elementi olduğunda */
a.sector-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 5px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid rgba(34, 156, 10, 0.1);
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
}
a.sector-item:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 156, 10, 0.2);
    color: var(--primary-color);
}
a.sector-item:hover span {
    color: var(--primary-color);
}
.sector-item a{
    font-weight: 500;
    font-size: 14px;
    color: white;
    font-family: 'CRC', sans-serif;
}
.sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: -1;
}
/* İkon daireleri için stil */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(34, 156, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}
/* Sektör öğelerindeki ikonlar */
.sector-item i {
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.sector-item span {
    font-size: 12px;
    font-style: normal;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'CRC', sans-serif;
}
.sector-item:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 156, 10, 0.2);
}
.sector-item:hover::before {
    background-color: rgba(34, 156, 10, 0.05);
}
/* Hover durumunda ikon dairesi parlasın */
.sector-item:hover .icon-circle {
    transform: scale(1.1);
    background: rgba(34, 156, 10, 0.2);
    border-color: rgba(34, 156, 10, 0.6);
    box-shadow: 0 0 15px rgba(34, 156, 10, 0.5),
                inset 0 0 8px rgba(34, 156, 10, 0.2);
    animation: sectorIconGlow 1.5s infinite alternate;
}
@keyframes sectorIconGlow {
    from {
        box-shadow: 0 0 10px rgba(34, 156, 10, 0.5),
                    inset 0 0 5px rgba(34, 156, 10, 0.2);
    }
    to {
        box-shadow: 0 0 15px rgba(34, 156, 10, 0.7),
                    inset 0 0 10px rgba(34, 156, 10, 0.3);
    }
}
/* İkonun kendi hover efekti */
.sector-item:hover i {
    color: var(--primary-color); /* Sadece renk değişimi */
}
.sector-item:hover span {
    color: var(--text-color);
}
/* Corporate Performance Section */
.corporate-performance {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 156, 10, 0.1) 0%, transparent 70%);
    position: relative; /* Önemli: pseudo-elementin doğru konumlandırılması için */
}
.corporate-performance::after {
    content: ''; /* Zorunlu: Tüm pseudo-elementler content özelliğine sahip olmalıdır */
    position: absolute; /* Zorunlu: Konumlandırma için */
    top: 0;
    left: 0;
    width: 100%; /* Tüm alana yayılması için */
    height: 100%; /* Tüm alana yayılması için */
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: -1; /* Ana içeriğin arkasında görünmesi için */
}
.cp-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.cp-info {
    flex: 1.2; /* Bilgi bölümüne biraz daha fazla yer ver */
}
.cp-info h2 {
    font-style: normal;
    line-height: 54px;
    font-size: 42px;
    font-weight: 800; /* Ana başlık için CRC65 */
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cp-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.cp-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 90%; /* Sağdan daraltma */
}
.feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 15px; /* Padding artırma */
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    height: 85px; /* Yüksekliği artırdık */
}
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: -1;
}
.feature i {
    color: var(--primary-color);
    font-size: 24px; /* İkon boyutunu artırdık */
    margin-right: 15px; /* İkon ile metin arasındaki boşluğu artırdık */
    transition: all 0.3s ease;
    min-width: 24px; /* İkonlara minimum genişlik */
}
.feature-text {
    display: flex;
    flex-direction: column;
}
.feature-text h3 {
    color: var(--text-color);
    font-size: 15px;
    line-height: normal;
    font-weight: 600;
    margin: 0 0 5px 0;
    transition: all 0.3s ease;
}
.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 156, 10, 0.2);
}
.feature:hover::before {
    background-color: rgba(34, 156, 10, 0.05);
}
.feature:hover i {
    transform: scale(1.2);
    color: #229c0a; /* Hover durumunda ikonu daha parlak yap */
}
.feature:hover .feature-text h3 {
    color: var(--primary-color); /* Hover durumunda başlık rengini değiştir */
}
.feature:hover .feature-text p {
    color: rgba(255, 255, 255, 0.8); /* Hover durumunda paragraf rengini değiştir */
}


.cp-image {
    flex: 0.8; /* Görsel bölümünü daraltarak feature'lara daha fazla yer açtık */
}
.cp-image img {
    width: 100%;
    /*
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);*/
}

.cp-image:hover img {
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Button'u daha belirgin hale getirme */
.cp-info .btn {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.cp-info .btn-primary {
    background-color: var(--primary-color);
    border: none;
    box-shadow: 0 5px 15px rgba(34, 156, 10, 0.3);
}
.cp-info .btn-primary:hover {
    background-color: #229c0a; /* Biraz daha parlak */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 156, 10, 0.4);
}
/* Yeni eklenen stiller - Büyüteç ve Modal için */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
/* Büyüteç ikonu ile ilgili stil güncellemesi */
.magnifier-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(34, 156, 10, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 10;
    animation: pulse 2s infinite;
}
.magnifier-icon i {
    color: #ffffff;
    font-size: 22px;
}
.magnifier-icon:hover {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    animation: none;
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
    }
}
/* Modal/Popup Stili */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
}
.close:hover {
    color: #229c0a;
}
.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Success Stories Section */
.success-stories {
    padding: 120px 0;
    background-color: #000;
    overflow: hidden;
    position: relative;
}
.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 156, 10, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(34, 156, 10, 0.02) 0%, transparent 25%);
    z-index: 0;
}
.success-stories .container {
    width: 100%;
    max-width: 1400px; /* Normal container genişliği */
    margin: 0 auto; /* Ortalanmış container */
    padding: 0 30px;
}
.success-stories-content {
    display: flex;
    flex-direction: row; /* Yan yana dizilim (sol-sağ) */
    align-items: center;
    justify-content: space-between; /* Sol ve sağ öğeleri ayır */
    gap: 60px;
    position: relative;
    z-index: 1;
}
/* Sol Taraf - Başlık ve Metin */
.success-stories-intro {
    flex: 1;
    text-align: left;
    max-width: 500px;
}
.success-stories-intro h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    color: transparent;
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -1px;
    text-align: left;
}
.success-stories-intro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 450px;
    text-align: left;
}
.success-stories-intro p::before{
    content: '';
    position: absolute;
    margin-top: 170px;
    left: 0;
    width: clamp(40px, 10vw, 60px);
    height: 2px;
    background: linear-gradient(to right, #229c0a, transparent);
    opacity: 0.5;
}
/* Slider kontrolleri */
.slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 0;
    justify-content: flex-end;
}
.slider-controls button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(43, 86, 76, 0.3);
    border: 1px solid rgba(34, 156, 10, 0.2);
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-controls button:hover {
    background: rgba(43, 86, 76, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Sağ Taraf - 3D Kayan Kartlar */
.testimonials-3d-slider {
    flex: 1.2;
    position: relative;
    height: 550px;
    perspective: 1500px;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.testimonial-card {
    position: absolute;
    width: 450px;
    height: 480px;
    /* Geliştirilmiş gradient arka plan */
    background: linear-gradient(
        135deg,
        rgba(26, 29, 32, 0.95) 0%,
        rgba(35, 37, 41, 0.9) 40%,
        rgba(35, 37, 41, 0.85) 70%,
        rgba(34, 156, 10, 0.1) 100%
    );
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0;
    transform: translateX(-100px) translateZ(-400px) rotateY(-20deg);
    /* Geliştirilmiş kenar */
    border-image: linear-gradient(
        to bottom right,
        rgba(34, 156, 10, 0.3),
        transparent,
        rgba(34, 156, 10, 0.1)
    ) 1;
    overflow: hidden;
    right: 0;
    left: auto;
}
/* Üst parlama efekti */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(34, 156, 10, 0.08),
        rgba(34, 156, 10, 0.03) 30%,
        transparent 70%
    );
    z-index: 0;
    border-radius: 16px 16px 0 0;
}
/* Alt parlama efekti */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to top,
        rgba(34, 156, 10, 0.05),
        transparent
    );
    z-index: 0;
    border-radius: 0 0 16px 16px;
}
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0);
    z-index: 3;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 32, 0.95) 0%,
        rgba(35, 37, 41, 0.9) 40%,
        rgba(35, 37, 41, 0.85) 70%,
        rgba(34, 156, 10, 0.15) 100%
    );
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(34, 156, 10, 0.1);
}
.testimonial-card:nth-child(2) {
    opacity: 0.7;
    transform: translateX(-200px) translateZ(-150px) rotateY(-15deg);
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 32, 0.9) 0%,
        rgba(35, 37, 41, 0.85) 45%,
        rgba(35, 37, 41, 0.8) 75%,
        rgba(34, 156, 10, 0.08) 100%
    );
}
.testimonial-card:nth-child(3) {
    opacity: 0.4;
    transform: translateX(-400px) translateZ(-300px) rotateY(-15deg);
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 32, 0.85) 0%,
        rgba(35, 37, 41, 0.8) 50%,
        rgba(35, 37, 41, 0.75) 80%,
        rgba(34, 156, 10, 0.05) 100%
    );
}
.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(34, 156, 10, 0.15);
    font-size: 36px;
    text-shadow: 0 0 15px rgba(34, 156, 10, 0.1);
}
.testimonial-content {
    margin: 40px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(34, 156, 10, 0.3);
    box-shadow: 0 0 15px rgba(34, 156, 10, 0.2);
}
.author-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'CRC', sans-serif;
}
.author-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}
.rating {
    color: #229c0a;
    font-size: 16px;
}
/* Blog Section */
.blog {
    /*padding: 80px 0;*/
    background-color: black;
    margin-bottom: 80px;
}
.blog h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #229c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog > .container > p {
    text-align: center;
    color: rgb(172, 172, 172);
    margin-bottom: 60px;
    font-size: 1.3rem;
    font-weight: 700;
}
.blog-posts-container {
    position: relative;
}
.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.blog-card {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 105%;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #229c0a;
    color: #111417;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(34, 156, 10, 0.3);
    font-family: 'CRC', sans-serif;
}
.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray-text);
    font-size: 13px;
}
.blog-author-info .author,
.blog-author-info .read-time {
    display: flex;
    align-items: center;
}
.blog-author-info i {
    color: #229c0a;
    margin-right: 5px;
    font-size: 12px;
}
.blog-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}
.blog-card p {
    color: rgb(202, 202, 202);
    font-size: 1rem;
    flex-grow: 1;
}
.read-more {
    display: inline-flex;
    align-items: center;
    color: #229c0a;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: 'CRC', sans-serif;
}
.read-more i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.read-more:hover {
    color: #fff;
}
.read-more:hover i {
    transform: translateX(4px);
}
/* Scroll indicator */
.scroll-indicator {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.scroll-dot.active {
    background-color: #229c0a;
    transform: scale(1.2);
}
/* Responsive tasarım için medya sorguları */
@media (max-width: 1400px) {
    .testimonial-card {
        width: 420px;
        height: 450px;
    }
}
@media (max-width: 1200px) {
    .success-stories-content {
        flex-direction: column;
        align-items: center;
    }
    .success-stories-intro, .testimonials-3d-slider {
        max-width: 100%;
    }
    .success-stories-intro {
        text-align: center;
        margin-bottom: 40px;
    }
    .success-stories-intro h2, .success-stories-intro p {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .slider-controls {
        justify-content: center;
    }
    .testimonial-card {
        width: 400px;
        height: 450px;
        padding: 35px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) !important;
    }
    .testimonial-card:nth-child(2), .testimonial-card:nth-child(3) {
        opacity: 0;
    }
    .success-stories-intro h2 {
        font-size: 54px;
    }
    .blog-posts {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .hero h1 {
        font-size: 50px;
        line-height: 1;
    }
    .hero h2 {
        font-size: 40px;
        line-height: 0;
    }
    .testimonial-card {
        width: 380px;
        height: 420px;
        padding: 30px;
    }
    .testimonial-content {
        font-size: 16px;
    }
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-content, .cp-content {
        flex-direction: column;
    }
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}
@media (max-width: 768px) {

.cp-info h2, .success-stories-intro h2, .blog h2, .success-stories-intro h2, .success-stories-intro p, .blog > .container > p{text-align: left;}

    .hero h1 {
        font-size: 50px;
        line-height: 1;
    }
    .hero h2 {
        font-size: 40px;
        line-height: 0;
    }
    .hero p {
        font-size: 16px;
    }
    .references h2 {
        font-size: 52px;
    }
    .sectors .section-heading {
        font-size: 40px;
    }
    .tech-solutions h2 {
        font-size: 52px;
    }
    .success-stories {
        padding: 80px 0px 500px 0;
    }
    .success-stories-intro h2 {
        font-size: 42px;
    }
    .testimonial-card {
        width: 320px;
        height: 400px;
        padding: 25px;
    }
    .testimonials-3d-slider {
        height: 450px;
    }
    .testimonial-content {
        font-size: 15px;
        margin: 30px 0;
    }
    .blog h2 {
        font-size: 42px;
    }
    .blog-posts-container {
        overflow: hidden;
        padding: 10px 0;
    }
    .blog-posts {
        grid-template-columns: repeat(3, 85%);
        grid-auto-flow: column;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding: 10px 5px 20px;
        margin-left: 15px;
    }
    .blog-posts::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .blog-card {
        scroll-snap-align: start;
        min-width: 280px;
        height: 500px;
    }
    .blog-image {
        height: 170px;
    }
    .scroll-indicator {
        display: flex;
    }
    .solutions-grid {
        grid-template-columns: 1fr; /* Mobil ekranlarda tek sütun */
    }
    .solution-card .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .sectors-image {
        width: 75%;
    }
    .sectors-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
    .sector-item {
        padding: 15px 10px;
        height: 110px;
    }
    .icon-circle {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    .sector-item i {
        font-size: 18px;
    }
    .sector-item span {
        font-size: 12px;
        line-height: 1.2;
    }
    /* Logo Slider - Mobil */
    .logos-slider {
        animation: scroll 20s linear infinite; /* Mobilde daha hızlı */
    }
    .logo-item {
        flex: 0 0 200px;
        height: 120px;
    }
    .logo-item img {
        max-height: 70px;
    }
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 6));
        }
    }
}
@media (max-width: 576px) {
    .sectors-image,.cp-image,.success-stories-intro p::before{ display: none}
    .sectors-info{width: 95%}
    .testimonial-card {
        width: 480px;
        height: 380px;
        padding: 20px;
    }
    .testimonial-content{margin-top:50px}
    .testimonial-card  p{font-size:16px;}
    .success-stories-intro h2 {
        font-size: 42px;
    }
    .testimonial-content {
        font-size: 14px;
    }
    .testimonials-3d-slider {
        height: 400px;
    }
    .blog-posts {
        grid-template-columns: repeat(3, 90%);
    }
    .blog-card h3 {
        font-size: 16px;
    }
    .blog-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .sector-item {
        padding: 10px 5px;
        height: 100px;
    }
    .icon-circle {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    .sector-item i {
        font-size: 16px;
    }
    .sector-item span {
        font-size: 11px;
        margin-top: 5px;
    }
    .cp-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .feature {
        padding: 12px;
    }
    .feature i {
        font-size: 16px;
        margin-right: 10px;
    }
    .feature span {
        font-size: 14px;
    }
}
.corporate-performance .cp-image:hover{-webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); -webkit-transition: -webkit-transform 0.5s ease; -moz-transition: -moz-transform 0.5s ease; -o-transition: -o-transform 0.5s ease; transition: transform 0.5s ease;}