{"id":3453,"date":"2025-12-24T07:48:49","date_gmt":"2025-12-24T07:48:49","guid":{"rendered":"https:\/\/crewmedya.tr\/avasya2\/?page_id=3453"},"modified":"2025-12-24T08:44:19","modified_gmt":"2025-12-24T08:44:19","slug":"award-trial","status":"publish","type":"page","link":"https:\/\/avasya.com.tr\/en\/odul-deneme\/","title":{"rendered":"reward-trial"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"3453\" class=\"elementor elementor-3453\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70c1ce3 thegem-e-con-layout-thegem e-flex e-con-boxed e-con e-parent\" data-id=\"70c1ce3\" data-element_type=\"container\" id=\"particles-section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;thegem_container_layout&quot;:&quot;thegem&quot;}\">\r\n\t\t\t\t\t<div class=\"e-con-inner\">\r\n\t\t\t\t<div class=\"elementor-element elementor-element-b9f0417 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-html\" data-id=\"b9f0417\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<canvas id=\"section-particles\"><\/canvas>\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n  setTimeout(function() {\n    var canvas = document.getElementById('section-particles');\n    var section = document.getElementById('particles-section');\n    \n    if(!section || !canvas) {\n      console.log('Section veya canvas bulunamad\u0131!');\n      return;\n    }\n    \n    section.style.position = 'relative';\n    section.style.overflow = 'hidden';\n    \n    canvas.style.cssText = 'position:absolute; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none;';\n    section.insertBefore(canvas, section.firstChild);\n    \n    var ctx = canvas.getContext('2d');\n    var particles = [];\n    var mouse = { x: null, y: null };\n    \n    var rect = section.getBoundingClientRect();\n    canvas.width = rect.width;\n    canvas.height = rect.height;\n    \n    window.addEventListener('resize', function() {\n      var rect = section.getBoundingClientRect();\n      canvas.width = rect.width;\n      canvas.height = rect.height;\n      initParticles();\n    });\n    \n    document.addEventListener('mousemove', function(e) {\n      var rect = section.getBoundingClientRect();\n      if(e.clientX >= rect.left && e.clientX <= rect.right && \n         e.clientY >= rect.top && e.clientY <= rect.bottom) {\n        mouse.x = e.clientX - rect.left;\n        mouse.y = e.clientY - rect.top;\n      } else {\n        mouse.x = null;\n        mouse.y = null;\n      }\n    });\n    \n    function initParticles() {\n      particles = [];\n      \/\/ Daha yo\u011fun: 120 par\u00e7ac\u0131k\n      var particleCount = Math.min(150, Math.floor((canvas.width * canvas.height) \/ 8000));\n      \n      for(var i = 0; i < particleCount; i++) {\n        particles.push({\n          x: Math.random() * canvas.width,\n          y: Math.random() * canvas.height,\n          vx: (Math.random() - 0.5) * 0.8, \/\/ Daha yava\u015f hareket\n          vy: (Math.random() - 0.5) * 0.8,\n          radius: Math.random() * 1.5 + 0.5, \/\/ Daha ince noktalar (0.5-2px)\n          opacity: Math.random() * 0.4 + 0.2 \/\/ Rastgele \u015feffafl\u0131k\n        });\n      }\n    }\n    \n    initParticles();\n    \n    function animate() {\n      ctx.clearRect(0, 0, canvas.width, canvas.height);\n      \n      for(var i = 0; i < particles.length; i++) {\n        var p = particles[i];\n        p.x += p.vx;\n        p.y += p.vy;\n        \n        \/\/ Yumu\u015fak ge\u00e7i\u015f i\u00e7in kenarlarda fade\n        if(p.x < 0) p.x = canvas.width;\n        if(p.x > canvas.width) p.x = 0;\n        if(p.y < 0) p.y = canvas.height;\n        if(p.y > canvas.height) p.y = 0;\n        \n        \/\/ Noktalar - daha \u015feffaf\n        ctx.beginPath();\n        ctx.arc(p.x, p.y, p.radius, 0, Math.PI * 2);\n        ctx.fillStyle = 'rgba(181, 2, 3, ' + (p.opacity * 0.6) + ')';\n        ctx.fill();\n        \n        \/\/ \u00c7izgiler - daha ince ve \u015feffaf\n        for(var j = i + 1; j < particles.length; j++) {\n          var p2 = particles[j];\n          var dx = p.x - p2.x;\n          var dy = p.y - p2.y;\n          var dist = Math.sqrt(dx*dx + dy*dy);\n          \n          \/\/ Daha uzun mesafe ama daha \u015feffaf\n          if(dist < 150) {\n            ctx.beginPath();\n            ctx.moveTo(p.x, p.y);\n            ctx.lineTo(p2.x, p2.y);\n            var lineOpacity = (1 - dist\/150) * 0.15; \/\/ \u00c7ok daha \u015feffaf \u00e7izgiler\n            ctx.strokeStyle = 'rgba(181, 2, 3, ' + lineOpacity + ')';\n            ctx.lineWidth = 0.5; \/\/ Daha ince \u00e7izgi\n            ctx.stroke();\n          }\n        }\n        \n        \/\/ Mouse etkile\u015fimi - daha yumu\u015fak\n        if(mouse.x !== null) {\n          var dx = p.x - mouse.x;\n          var dy = p.y - mouse.y;\n          var dist = Math.sqrt(dx*dx + dy*dy);\n          \n          if(dist < 180) {\n            ctx.beginPath();\n            ctx.moveTo(p.x, p.y);\n            ctx.lineTo(mouse.x, mouse.y);\n            var mouseOpacity = (1 - dist\/180) * 0.4;\n            ctx.strokeStyle = 'rgba(200, 30, 30, ' + mouseOpacity + ')';\n            ctx.lineWidth = 0.8;\n            ctx.stroke();\n          }\n        }\n      }\n      requestAnimationFrame(animate);\n    }\n    animate();\n  }, 500);\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48b9419 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-html\" data-id=\"48b9419\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!DOCTYPE html>\n<html lang=\"tr\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Avasya \u00d6d\u00fcller<\/title>\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Funnel+Display:wght@300;400;500;600;700&display=swap\" rel=\"stylesheet\">\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        .awards-wrapper {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            gap: 80px;\n            padding: 40px 40px 60px;\n            min-height: 450px;\n            width: 100%;\n            font-family: 'Funnel Display', sans-serif;\n        }\n\n        \/* Bilgi kutusu *\/\n        .info-box {\n            width: 340px;\n            background: #f0f2f4;\n            border-radius: 16px;\n            padding: 35px;\n            box-shadow: 0 4px 20px rgba(0,0,0,0.08);\n            flex-shrink: 0;\n            text-align: center;\n            transition: all 0.4s ease;\n        }\n\n        .info-title {\n            font-family: 'Funnel Display', sans-serif;\n            font-size: 22px;\n            font-weight: 400;\n            color: #000000;\n            margin-bottom: 15px;\n            line-height: 1.4;\n        }\n\n        .info-desc {\n            font-family: 'Funnel Display', sans-serif;\n            font-size: 16px;\n            font-weight: 400;\n            color: #000000;\n            line-height: 1.8;\n            margin-bottom: 18px;\n        }\n\n        .info-year {\n            display: inline-block;\n            background: linear-gradient(135deg, #e63946, #c62836);\n            color: #fff;\n            padding: 10px 24px;\n            border-radius: 25px;\n            font-family: 'Funnel Display', sans-serif;\n            font-size: 14px;\n            font-weight: 400;\n        }\n\n        \/* Carousel container *\/\n        .carousel-container {\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            position: relative;\n        }\n\n        \/* 3D Carousel *\/\n        .carousel-wrapper {\n            perspective: 1200px;\n            width: 300px;\n            height: 320px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            position: relative;\n            flex-shrink: 0;\n            z-index: 10;\n        }\n\n        .carousel {\n            width: 240px;\n            height: 300px;\n            position: relative;\n            transform-style: preserve-3d;\n            animation: rotate 9s infinite linear;\n            z-index: 10;\n        }\n\n        .carousel:hover {\n            animation-play-state: paused;\n        }\n\n        .carousel-item {\n            position: absolute;\n            width: 240px;\n            height: 300px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            backface-visibility: hidden;\n            cursor: pointer;\n        }\n\n        .carousel-item:nth-child(1) {\n            transform: rotateY(0deg) translateZ(200px);\n        }\n\n        .carousel-item:nth-child(2) {\n            transform: rotateY(120deg) translateZ(200px);\n        }\n\n        .carousel-item:nth-child(3) {\n            transform: rotateY(240deg) translateZ(200px);\n        }\n\n        @keyframes rotate {\n            from { transform: rotateY(0deg); }\n            to { transform: rotateY(360deg); }\n        }\n\n        .award-image {\n            max-width: 100%;\n            max-height: 100%;\n            object-fit: contain;\n            transition: transform 0.3s ease;\n            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));\n        }\n\n        .carousel-item:hover .award-image {\n            transform: scale(1.05);\n        }\n\n        \/* Platform - \u00d6d\u00fcl\u00fcn alt\u0131nda ama arkas\u0131nda *\/\n        .platform {\n            width: 320px;\n            height: 25px;\n            background: linear-gradient(180deg, #e0e0e0 0%, #c0c0c0 50%, #a0a0a0 100%);\n            border-radius: 50%;\n            margin-top: -5px;\n            position: relative;\n            z-index: 5;\n            box-shadow: \n                0 8px 25px rgba(0,0,0,0.3),\n                inset 0 3px 8px rgba(255,255,255,0.6),\n                inset 0 -3px 8px rgba(0,0,0,0.2);\n        }\n\n        .platform::after {\n            content: '';\n            position: absolute;\n            bottom: -10px;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 280px;\n            height: 15px;\n            background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);\n            border-radius: 50%;\n        }\n\n        \/* Navigation dots *\/\n        .carousel-nav {\n            display: flex;\n            gap: 10px;\n            margin-top: 25px;\n        }\n\n        .nav-dot {\n            width: 10px;\n            height: 10px;\n            border-radius: 50%;\n            background: #ccc;\n            cursor: pointer;\n            transition: all 0.3s ease;\n        }\n\n        .nav-dot:hover, .nav-dot.active {\n            background: #e63946;\n            transform: scale(1.3);\n        }\n\n        \/* TABLET - 1024px ve alt\u0131 *\/\n        @media (max-width: 1024px) {\n            .awards-wrapper {\n                gap: 50px;\n            }\n\n            .info-box {\n                width: 300px;\n                padding: 28px;\n            }\n\n            .info-title {\n                font-size: 20px;\n            }\n\n            .info-desc {\n                font-size: 15px;\n            }\n\n            .info-year {\n                font-size: 13px;\n                padding: 8px 18px;\n            }\n\n            .carousel-wrapper {\n                width: 260px;\n                height: 280px;\n            }\n\n            .carousel {\n                width: 210px;\n                height: 260px;\n            }\n\n            .carousel-item {\n                width: 210px;\n                height: 260px;\n            }\n\n            .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(170px); }\n            .carousel-item:nth-child(2) { transform: rotateY(120deg) translateZ(170px); }\n            .carousel-item:nth-child(3) { transform: rotateY(240deg) translateZ(170px); }\n\n            .platform {\n                width: 280px;\n                height: 22px;\n                margin-top: -25px;\n            }\n        }\n\n        \/* TABLET K\u00dc\u00c7\u00dcK - 850px ve alt\u0131 *\/\n        @media (max-width: 850px) {\n            .awards-wrapper {\n                flex-direction: column;\n                gap: 20px;\n                padding: 30px 15px;\n                min-height: auto;\n            }\n\n            .info-box {\n                width: 100%;\n                max-width: 380px;\n                order: 2;\n            }\n\n            .info-title {\n                font-size: 20px;\n            }\n\n            .info-desc {\n                font-size: 14px;\n            }\n\n            .carousel-container {\n                order: 1;\n            }\n\n            .carousel-wrapper {\n                width: 100%;\n                max-width: 280px;\n                height: 280px;\n            }\n\n            .carousel {\n                width: 200px;\n                height: 250px;\n            }\n\n            .carousel-item {\n                width: 200px;\n                height: 250px;\n            }\n\n            .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(160px); }\n            .carousel-item:nth-child(2) { transform: rotateY(120deg) translateZ(160px); }\n            .carousel-item:nth-child(3) { transform: rotateY(240deg) translateZ(160px); }\n\n            .platform {\n                width: 250px;\n                height: 20px;\n                margin-top: -22px;\n            }\n        }\n\n        \/* MOB\u0130L - 480px ve alt\u0131 *\/\n        @media (max-width: 480px) {\n            .awards-wrapper {\n                padding: 20px 10px;\n                gap: 15px;\n            }\n\n            .info-box {\n                max-width: 100%;\n                padding: 22px;\n                border-radius: 12px;\n            }\n\n            .info-title {\n                font-size: 18px;\n            }\n\n            .info-desc {\n                font-size: 13px;\n            }\n\n            .info-year {\n                font-size: 11px;\n                padding: 6px 14px;\n            }\n\n            .carousel-wrapper {\n                height: 240px;\n            }\n\n            .carousel {\n                width: 170px;\n                height: 210px;\n            }\n\n            .carousel-item {\n                width: 170px;\n                height: 210px;\n            }\n\n            .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(140px); }\n            .carousel-item:nth-child(2) { transform: rotateY(120deg) translateZ(140px); }\n            .carousel-item:nth-child(3) { transform: rotateY(240deg) translateZ(140px); }\n\n            .platform {\n                width: 210px;\n                height: 16px;\n                margin-top: -18px;\n            }\n\n            .nav-dot {\n                width: 8px;\n                height: 8px;\n            }\n        }\n\n        \/* \u00c7OK K\u00dc\u00c7\u00dcK MOB\u0130L - 360px ve alt\u0131 *\/\n        @media (max-width: 360px) {\n            .carousel-wrapper {\n                height: 210px;\n            }\n\n            .carousel {\n                width: 150px;\n                height: 180px;\n            }\n\n            .carousel-item {\n                width: 150px;\n                height: 180px;\n            }\n\n            .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(120px); }\n            .carousel-item:nth-child(2) { transform: rotateY(120deg) translateZ(120px); }\n            .carousel-item:nth-child(3) { transform: rotateY(240deg) translateZ(120px); }\n\n            .platform {\n                width: 180px;\n                height: 14px;\n                margin-top: -15px;\n            }\n\n            .info-box {\n                padding: 18px;\n            }\n\n            .info-title {\n                font-size: 16px;\n            }\n\n            .info-desc {\n                font-size: 12px;\n            }\n\n            .info-year {\n                font-size: 10px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"awards-wrapper\" id=\"awards-wrapper\">\n        <!-- Bilgi kutusu -->\n        <div class=\"info-box\" id=\"info-box\">\n            <div class=\"info-title\" id=\"info-title\">Fark Yaratan \u0130\u015f Orta\u011f\u0131 \u00d6d\u00fcl\u00fc<\/div>\n            <div class=\"info-desc\" id=\"info-desc\">Sangfor taraf\u0131ndan d\u00fczenlenen 2025 \u0130lk Yar\u0131 Y\u0131l\u0131 Ba\u015far\u0131 \u00d6d\u00fclleri'nde \"Fark Yaratan \u0130\u015f Orta\u011f\u0131\" \u00f6d\u00fcl\u00fcne lay\u0131k g\u00f6r\u00fcld\u00fck.<\/div>\n            <div class=\"info-year\" id=\"info-year\">2025 - SANGFOR<\/div>\n        <\/div>\n\n        <!-- Carousel + Platform -->\n        <div class=\"carousel-container\">\n            <div class=\"carousel-wrapper\">\n                <div class=\"carousel\" id=\"carousel\">\n                    <!-- \u00d6D\u00dcL 1 - Sangfor -->\n                    <div class=\"carousel-item\" data-index=\"0\">\n                        <img src=\"https:\/\/avasya.com.tr\/wp-content\/uploads\/2025\/12\/odul-1.webp\" alt=\"Sangfor \u00d6d\u00fcl\u00fc\" class=\"award-image\">\n                    <\/div>\n                    <!-- \u00d6D\u00dcL 2 - Dell Y\u0131l\u0131n \u0130\u015f Orta\u011f\u0131 -->\n                    <div class=\"carousel-item\" data-index=\"1\">\n                        <img src=\"https:\/\/avasya.com.tr\/wp-content\/uploads\/2025\/12\/odul-2.webp\" alt=\"Dell Y\u0131l\u0131n \u0130\u015f Orta\u011f\u0131\" class=\"award-image\">\n                    <\/div>\n                    <!-- \u00d6D\u00dcL 3 - Dell \u00d6zel Proje -->\n                    <div class=\"carousel-item\" data-index=\"2\">\n                        <img src=\"https:\/\/avasya.com.tr\/wp-content\/uploads\/2025\/12\/odul-3.webp\" alt=\"Dell \u00d6zel Proje\" class=\"award-image\">\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Platform -->\n            <div class=\"platform\"><\/div>\n\n            <!-- Navigation dots -->\n            <div class=\"carousel-nav\">\n                <div class=\"nav-dot active\" data-index=\"0\"><\/div>\n                <div class=\"nav-dot\" data-index=\"1\"><\/div>\n                <div class=\"nav-dot\" data-index=\"2\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <script>\n        \/\/ ==========================================\n        \/\/ \u00d6D\u00dcL B\u0130LG\u0130LER\u0130 - BURADAN DE\u011e\u0130\u015eT\u0130R\n        \/\/ ==========================================\n        const odulBilgileri = [\n            {\n                baslik: \"Fark Yaratan \u0130\u015f Orta\u011f\u0131 \u00d6d\u00fcl\u00fc\",\n                aciklama: \"Sangfor taraf\u0131ndan d\u00fczenlenen 2025 \u0130lk Yar\u0131 Y\u0131l\u0131 Ba\u015far\u0131 \u00d6d\u00fclleri'nde \\\"Fark Yaratan \u0130\u015f Orta\u011f\u0131\\\" \u00f6d\u00fcl\u00fcne lay\u0131k g\u00f6r\u00fcld\u00fck.\",\n                yil: \"2025 - SANGFOR\"\n            },\n            {\n                baslik: \"Y\u0131l\u0131n \u0130\u015f Orta\u011f\u0131 \u00d6d\u00fcl\u00fc\",\n                aciklama: \"2024 Dell \u0130\u015f Ortaklar\u0131 \u00d6d\u00fclleri'nde \\\"Son Kullan\u0131c\u0131 \u00c7\u00f6z\u00fcmleri Cirosu\\\" kategorisinde Y\u0131l\u0131n \u0130\u015f Orta\u011f\u0131 \u00f6d\u00fcl\u00fcne lay\u0131k g\u00f6r\u00fcld\u00fck.\",\n                yil: \"2024 - DELL\"\n            },\n            {\n                baslik: \"\u00d6zel Proje \u00d6d\u00fcl\u00fc\",\n                aciklama: \"2024 Dell \u0130\u015f Ortaklar\u0131 \u00d6d\u00fclleri'nde Do\u011fu\u015f Projesi ile \\\"\u00d6zel Proje\\\" kategorisinde \u00f6d\u00fcle lay\u0131k g\u00f6r\u00fcld\u00fck.\",\n                yil: \"2024 - DELL\"\n            }\n        ];\n        \/\/ ==========================================\n\n        const carousel = document.getElementById('carousel');\n        const dots = document.querySelectorAll('.nav-dot');\n        const infoTitle = document.getElementById('info-title');\n        const infoDesc = document.getElementById('info-desc');\n        const infoYear = document.getElementById('info-year');\n\n        let currentAward = 0;\n\n        function updateInfo(index) {\n            const odul = odulBilgileri[index];\n            infoTitle.textContent = odul.baslik;\n            infoDesc.textContent = odul.aciklama;\n            infoYear.textContent = odul.yil;\n            dots.forEach((d, i) => d.classList.toggle('active', i === index));\n        }\n\n        \/\/ Dot t\u0131klama\n        dots.forEach((dot, index) => {\n            dot.addEventListener('click', () => {\n                carousel.style.animation = 'none';\n                carousel.style.transform = `rotateY(${index * -120}deg)`;\n                currentAward = index;\n                updateInfo(index);\n            });\n        });\n\n        \/\/ Hover'da durdur\n        carousel.addEventListener('mouseenter', () => {\n            carousel.style.animationPlayState = 'paused';\n        });\n\n        carousel.addEventListener('mouseleave', () => {\n            if (carousel.style.animation !== 'none') {\n                carousel.style.animationPlayState = 'running';\n            }\n        });\n\n        \/\/ Touch deste\u011fi - mobil i\u00e7in\n        let touchStarted = false;\n        document.addEventListener('touchstart', (e) => {\n            if (e.target.closest('.carousel-container')) {\n                carousel.style.animationPlayState = 'paused';\n                touchStarted = true;\n            }\n        });\n\n        document.addEventListener('touchend', () => {\n            if (touchStarted) {\n                setTimeout(() => {\n                    if (carousel.style.animation !== 'none') {\n                        carousel.style.animationPlayState = 'running';\n                    }\n                }, 2000);\n                touchStarted = false;\n            }\n        });\n\n        \/\/ Otomatik d\u00f6nerken yaz\u0131y\u0131 g\u00fcncelle\n        setInterval(() => {\n            const isPaused = carousel.style.animationPlayState === 'paused';\n            const isNone = carousel.style.animation === 'none';\n            \n            if (!isPaused && !isNone) {\n                const transform = getComputedStyle(carousel).transform;\n                if (transform && transform !== 'none') {\n                    try {\n                        const matrix = new DOMMatrix(transform);\n                        const angle = Math.atan2(matrix.m13, matrix.m33) * (180 \/ Math.PI);\n                        const normalizedAngle = (((-angle) % 360) + 360) % 360;\n                        \n                        let newAward;\n                        if (normalizedAngle >= 0 && normalizedAngle < 60 || normalizedAngle >= 300) {\n                            newAward = 0;\n                        } else if (normalizedAngle >= 60 && normalizedAngle < 180) {\n                            newAward = 1;\n                        } else {\n                            newAward = 2;\n                        }\n                        \n                        if (newAward !== currentAward) {\n                            currentAward = newAward;\n                            updateInfo(currentAward);\n                        }\n                    } catch(e) {}\n                }\n            }\n        }, 100);\n    <\/script>\n<\/body>\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Avasya \u00d6d\u00fcller Fark Yaratan \u0130\u015f Orta\u011f\u0131 \u00d6d\u00fcl\u00fc Sangfor taraf\u0131ndan d\u00fczenlenen 2025 \u0130lk Yar\u0131 Y\u0131l\u0131 Ba\u015far\u0131 \u00d6d\u00fclleri&#8217;nde &#8220;Fark Yaratan \u0130\u015f Orta\u011f\u0131&#8221;&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-fullwidth.php","meta":{"footnotes":""},"class_list":["post-3453","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/pages\/3453","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/comments?post=3453"}],"version-history":[{"count":44,"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/pages\/3453\/revisions"}],"predecessor-version":[{"id":3527,"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/pages\/3453\/revisions\/3527"}],"wp:attachment":[{"href":"https:\/\/avasya.com.tr\/en\/wp-json\/wp\/v2\/media?parent=3453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}