
/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 60%);
}

/* Tech Grid Animation */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.grid-line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.2), transparent);
    width: 1px;
    height: 100%;
    animation: gridMove 15s linear infinite;
}

.grid-line:nth-child(1) { left: 25%; animation-delay: -2s; }
.grid-line:nth-child(2) { left: 50%; animation-delay: -4s; }
.grid-line:nth-child(3) { left: 75%; animation-delay: -6s; }
.grid-line:nth-child(4) { left: 100%; animation-delay: -8s; }

@keyframes gridMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #60a5fa;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.highlight-text {
    display: block;
    font-size: 1.8rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.hero-text {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
}

.feature-item i {
    color: #60a5fa;
}

/* CTA Section */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;  /* Eklendi */
    z-index: 10;        /* Eklendi */
}

.btn {
    text-decoration: none;  /* Eklendi */
    position: relative;     /* Eklendi */
    z-index: 10;           /* Eklendi */
}
.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #818cf8);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    color: var(--light);          /* Eklendi */
    cursor: pointer;              /* Eklendi */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
     background: linear-gradient(45deg, #2563eb, #6366f1); 
}
.btn-primary:active {  /* Eklendi - tıklama efekti */
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(59, 130, 246, 0.2);
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating {
    color: #f59e0b;
}

/* Visual Section */
.hero-visual {
    position: relative;
    z-index: 3;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.tech-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.sphere-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.2);
    animation: sphereRotate 20s linear infinite;
}

@keyframes sphereRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.core-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: auto;
}




.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.progress {
    height: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #3b82f6, #818cf8);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 1.4rem;
    }

    .visual-container {
        height: 400px;
        margin-top: 3rem;
    }

    .tech-sphere {
        width: 300px;
        height: 300px;
    }

    .float-card {
        width: 200px;
    }
}

@media (max-width: 767.98px) {
    .hero-badges {
        flex-wrap: wrap;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .float-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 1rem;
    }
}
/* AI Solutions Section */
.ai-solutions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--light);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.solution-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    margin-bottom: 10px;
}

.solution-features i {
    color: var(--primary);
}

.efficiency-meter {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 15px;
}

.meter-label {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.meter-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 1s ease;
}

.meter-value {
    color: var(--primary);
    font-weight: 600;
    text-align: right;
    margin-top: 5px;
}

/* AI Features Section */
.ai-features-section {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37,99,235,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-content h3 {
    color: var(--light);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--gray);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .solution-card,
    .feature-card {
        padding: 20px;
    }
}

.ai-deep-dive {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.ai-deep-dive::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37,99,235,0.05), transparent 70%);
}

.deep-dive-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.deep-dive-content {
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content {
    padding-right: 40px;
}

.highlight-title {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 25px;
}

.detailed-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.key-capability {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.key-capability:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.capability-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.capability-header h4 {
    font-size: 1.3rem;
    color: var(--light);
}

.capability-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.capability-list li {
    color: var(--gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.capability-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.tech-visualization {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 25px;
    padding: 40px;
}

.tech-card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.tech-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tech-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.performance-indicator {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-card h5 {
    color: var(--light);
    margin-bottom: 15px;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.implementation-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.step-content h6 {
    color: var(--light);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }

    .content-wrapper {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .text-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .highlight-title {
        font-size: 1.8rem;
    }

    .tech-visualization {
        padding: 25px;
    }
}
.ai-stats-section {
    padding: 120px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.stats-container {
    position: relative;
    z-index: 1;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.stats-column {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
}

.column-header {
    margin-bottom: 40px;
}

.column-header h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.column-header p {
    color: var(--gray);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.05);
}

.rank {
    width: 40px;
    height: 40px;
    background: rgba(37,99,235,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.stat-info {
    flex: 1;
}

.stat-info h4 {
    color: var(--light);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.trend-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10B981;
    font-size: 0.9rem;
}

.trend-indicator i {
    font-size: 0.8rem;
}

.analysis-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.analysis-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
}

.analysis-card h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.benefit-item,
.challenge-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item i,
.challenge-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-content h4,
.challenge-content h4 {
    color: var(--light);
    margin-bottom: 10px;
}

.benefit-content p,
.challenge-content p {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .analysis-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-column,
    .analysis-card {
        padding: 25px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .rank {
        margin: 0 auto;
    }
}

.analysis-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.insight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-highlight {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.ranking-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.04);
}

.industry-details {
    margin-left: 60px;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.key-applications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.key-applications span {
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.roi-indicator {
    margin-top: 20px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.advantage-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.advantage-details {
    list-style: none;
    padding: 0;
}

.advantage-details li {
    color: var(--gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.advantage-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1200px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .industry-details {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 10px;
    }
}
.detailed-benefits {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.detailed-benefits h5 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--light);
}

.benefit-info {
    flex: 1;
}

.benefit-info h6 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-info .percentage {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.benefit-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .detailed-benefits {
        padding: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-info .percentage {
        font-size: 1.5rem;
    }
}

/* Hover Animasyonu */
.benefit-card:hover .benefit-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* İkon Renk Geçişi */
.benefit-icon {
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}
.ai-daily-life {
    padding: 120px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.ai-daily-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Slider Styles */
.ai-showcase {
    position: relative;
}

.showcase-slider {
    border-radius: 20px;
    overflow: hidden;
}

.showcase-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-icon i {
    color: var(--light);
    font-size: 1.5rem;
}

.card-image {
    position: relative;
}

.card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--light);
}

.card-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Blog Content Styles */
.ai-blog-content {
    padding-right: 40px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.ai-blog-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog-text .intro {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefit-segment {
    margin-bottom: 40px;
}

.benefit-segment h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.04);
}

.benefit-title {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-list p {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .ai-daily-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-blog-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .ai-daily-life {
        padding: 60px 0;
    }

    .ai-blog-content h2 {
        font-size: 2rem;
    }

    .card-image img {
        height: 300px;
    }
}.ai-business-impact {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Slider Styles */
.impact-showcase {
    position: relative;
}

.showcase-images {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.image-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-slider.active {
    opacity: 1;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

/* Content Styles */
.impact-description {
    padding-right: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.impact-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    line-height: 1.2;
}

.description-text {
    margin-bottom: 40px;
}

.description-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.metric-label {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-description {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .showcase-images {
        height: 300px;
    }

    .impact-description h2 {
        font-size: 2rem;
    }

    .key-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

.image-caption {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.image-slider.active .image-caption {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}
.caption-number {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.image-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.image-slider.active {
    opacity: 1;
    transform: translateX(0);
}

.image-slider.previous {
    transform: translateX(-100%);
}

.slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-btn:hover {
    background: var(--primary);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.nav-btn i {
    font-size: 1.2rem;
}

/* Responsive ayarları için */
@media (max-width: 768px) {
    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .nav-btn.prev {
        left: 10px;
    }

    .nav-btn.next {
        right: 10px;
    }

    .nav-btn i {
        font-size: 1rem;
    }
}

.caption-number {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}


.analysis-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37,99,235,0.1);
    border-radius: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    display: inline-block;
}

.stat-unit {
    color: var(--gray);
    font-size: 1rem;
    margin-left: 5px;
}

.stat-card p {
    color: var(--gray);
    margin-top: 10px;
}

/* Industry Leaders */
.industry-leaders {
    margin-top: 60px;
}

.industry-leaders h3 {
    text-align: center;
    color: var(--light);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.leaders-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.leader-rank {
    width: 50px;
    height: 50px;
    background: rgba(37,99,235,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.leader-content {
    flex: 1;
}

.leader-content h4 {
    color: var(--light);
    margin-bottom: 10px;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    width: 0;
    border-radius: 3px;
    animation: progressAnimation 1s ease forwards;
}

.leader-stats {
    display: flex;
    gap: 20px;
}

.leader-stats span {
    color: var(--gray);
    font-size: 0.9rem;
}

@keyframes progressAnimation {
    from { width: 0; }
    to { width: var(--progress); }
}

/* Responsive */
@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-stats {
        justify-content: center;
    }
}
.tech-sphere {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

/* Ana çember */
.sphere-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37,99,235,0.2);
    animation: sphereRotate 20s linear infinite;
}

/* Merkezdeki görsel */
.core-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Dönen kartlar */
.float-card {
    position: absolute;
    width: 180px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(10px);
}

.float-card.analytics {
    top: 50%;
    transform-origin: 230px 50%;
    animation: orbitRotate 20s linear infinite;
}

.float-card.performance {
    top: 50%;
    transform-origin: 230px 50%;
    animation: orbitRotate 20s linear infinite;
    animation-delay: -6.67s;
}

.float-card.security {
    top: 50%;
    transform-origin: 230px 50%;
    animation: orbitRotate 20s linear infinite;
    animation-delay: -13.33s;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(37,99,235,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.card-icon i {
    color: var(--primary);
}

.progress {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

@keyframes sphereRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
.floating-elements
{
    margin-left:65%;
}
@media (max-width: 767px) {
  .floating-elements {
    display: none;
  }
}
.industry-analysis {
    padding: 80px 0;
    background: var(--darker);
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
    text-align: center;
}

.stat-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-container i {
    font-size: 2rem;
    color: var(--primary);
}

.stat-info {
    text-align: left;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    color: var(--gray);
    margin-left: 5px;
}

.stat-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.industry-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.industry-rank {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
}

.industry-card h4 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.industry-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--gray);
}

.detail-row span:last-child {
    color: var(--light);
    font-weight: 500;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 1s ease;
}

@media (max-width: 992px) {
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-container i {
    font-size: 2rem;
    color: var(--primary);
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.stat-unit {
    font-size: 0.9rem;
    color: var(--gray);
    margin-left: 5px;
}

.stat-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.industry-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
}

.industry-card h4 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.industry-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.detail-row {
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    color: var(--gray);
}

.detail-row span:last-child {
    color: var(--light);
    font-weight: 500;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 1s ease;
}

.key-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 1200px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-details {
        grid-template-columns: 1fr;
    }
}

.company-slider-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--darker), rgba(15, 23, 42, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.slider-header h3 {
    font-size: 1.8rem;
    color: var(--light);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 200px;
}

.company-logo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.company-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.company-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.company-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rank {
    color: var(--primary);
    font-weight: 600;
}

.market-value {
    color: var(--gray);
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .company-slider {
        padding: 0 30px;
    }
    
    .slide {
        flex: 0 0 160px;
    }
}
.company-logo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.company-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    padding: 5px 10px;
    background: rgba(37,99,235,0.1);
    border-radius: 8px;
}

.company-details {
    flex: 1;
}

.company-details h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.company-name {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.market-value {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Diğer CSS kodları aynı kalacak */

.company-slider-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--darker), rgba(15, 23, 42, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.slider-header h3 {
    font-size: 1.8rem;
    color: var(--light);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 300px; /* Sabit genişlik */
    height: 250px; /* Sabit yükseklik */
}

.company-logo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.company-logo img {
    width: 100%;
    height: 100px; /* Sabit logo yüksekliği */
    object-fit: contain; /* Logo oranını koru */
    margin-bottom: 20px;
    filter: brightness(0.9) grayscale(0.2);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.company-logo:hover img {
    filter: brightness(1) grayscale(0);
}

.company-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: auto; /* Alt kısma sabitle */
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    padding: 5px 10px;
    background: rgba(37,99,235,0.1);
    border-radius: 8px;
    min-width: 45px;
    text-align: center;
}

.company-details {
    flex: 1;
}

.company-details h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.company-name {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.market-value {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Navigation butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 260px; /* Mobilde daha küçük genişlik */
        height: 220px; /* Mobilde daha küçük yükseklik */
    }
    
    .company-logo img {
        height: 80px; /* Mobilde daha küçük logo */
    }
}