             /* Container StillarÄ± */
        .pp-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
            min-height: 80vh;
        }

        .pp-section {
            display: none;
            padding: 28px;
        }

        .pp-section--active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        .flex-skill-active {
            flex: 1 !important;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .pp-section__header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 40px;
            text-align: center;
            margin: -40px -40px 40px -40px;
        }

        .pp-section__title {
            margin: 0;
            font-size: 2.5em;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .pp-section__subtitle {
            margin: 2px 0 0 0;
            font-size: 1.2em;
            opacity: 0.9;
        }

        /* Profil BÃ¶lÃ¼mÃ¼ StillarÄ± */
        .pp-profile {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: start;
        }

        .pp-profile__card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            border-left: 4px solid #3498db;
        }

        .pp-profile__avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3498db, #2980b9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            color: white;
            margin: 0 auto 20px;
        }

        .pp-profile__details {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8em;
        }

        .pp-profile__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .pp-profile__tag {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 500;
        }

        /* Yetenekler BÃ¶lÃ¼mÃ¼ */
        .pp-skills {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pp-skills__category {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 27px;
            border-left: 4px solid #e74c3c;
        }

        .pp-skills__title {
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pp-skills__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        .pp-skills__item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .pp-skills__item:hover {
            background: #3498db;
            color: white;
            border-color: #2980b9;
            transform: translateY(-2px);
        }

        /* Ä°letiÅŸim BÃ¶lÃ¼mÃ¼ */
        .pp-contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .pp-contact__card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            border-left: 4px solid #27ae60;
        }

        .pp-contact__methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .pp-contact__item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #2c3e50;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .pp-contact__item:hover {
            background: #3498db;
            color: white;
            transform: translateX(5px);
        }

        .pp-contact__icon {
            font-size: 1.5em;
            width: 30px;
            text-align: center;
        }

        /* CV BÃ¶lÃ¼mÃ¼ */
        .pp-cv {
            display: grid;
            gap: 40px;
        }

        .pp-cv__section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            border-left: 4px solid #9b59b6;
        }

        .pp-cv__title {
            color: #2c3e50;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5em;
        }

        .pp-timeline {
            position: relative;
        }

        .pp-timeline__item {
            display: flex;
            margin-bottom: 30px;
            padding-left: 30px;
            border-left: 3px solid #3498db;
            position: relative;
        }

        .pp-timeline__item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 14px;
            height: 14px;
            background: #3498db;
            border-radius: 50%;
        }

        .pp-timeline__content {
            flex: 1;
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-left: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .pp-timeline__date {
            color: #3498db;
            font-weight: 600;
            font-size: 0.9em;
            margin-bottom: 5px;
        }

        .pp-timeline__title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1em;
        }

        /* Responsive */
        @media (max-width: 768px) {

          
          .pp-container {
        padding: 15px; /* Mobilde padding'i azalt */
        margin: 10px; /* Kenarlardan küçük margin */
        max-width: calc(100vw - 20px); /* Ekran genişliğinden margin'leri çıkar */
    }
    
    .pp-section {
        padding: 15px; /* Section padding'ini de azalt */
    }
    
    .pp-section__header {
        padding: 25px 15px; /* Header padding'ini mobil için ayarla */
        margin: -15px -15px 25px -15px; /* Negatif margin'leri düzelt */
    }
    
    .pp-contact__card {
        padding: 20px 15px; /* Card padding'ini azalt */
    }
    
    .pp-contact__item {
        padding: 12px 15px; /* Item padding'ini azalt */
        word-break: break-word; /* Uzun metinlerin taşmasını önle */
    }
    
    /* Uzun linklerin taşmasını önlemek için */
    .pp-contact__item p {
        word-break: break-all;
        overflow-wrap: break-word;
    }
            .pp-sidebar {
                transform: translateX(-100%);
                width: 100vw;
            }
            
            .pp-sidebar--mobile-open {
                transform: translateX(0);
            }
            
            .pp-main {
                margin-left: 0;
                padding: 20px;
            }
            
            .pp-profile,
            .pp-contact {
                grid-template-columns: 1fr;
            }
            
            .pp-menu-btn {
                display: block;
                position: fixed;
                top: 20px;
                left: 20px;
                z-index: 101;
                background: white;
                border: none;
                padding: 10px;
                border-radius: 5px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                cursor: pointer;
            }
        }

        .pp-menu-btn {
            display: none;
        }
    
       
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: margin-left 0.3s ease;
        }

        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: rgba(44, 62, 80, 0.95);
            backdrop-filter: blur(10px);
            transition: left 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar-header {
            padding: 30px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .sidebar-header h2 {
            color: white;
            font-size: 1.5em;
            margin-bottom: 5px;
        }

        .sidebar-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9em;
        }

        .sidebar-menu {
            padding: 20px 0;
        }

        .menu-section {
            margin-bottom: 10px;
        }

        .menu-section-title {
            color: white;
            padding: 15px 20px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-left: 4px solid transparent;
        }

        .menu-section-title:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #3498db;
        }

        .menu-section-title.active {
            background: rgba(52, 152, 219, 0.2);
            border-left-color: #3498db;
        }

        .menu-icon {
            font-size: 1.2em;
            margin-right: 10px;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .dropdown-arrow.rotated {
            transform: rotate(180deg);
        }

        .menu-items {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.2);
        }

        .menu-items.active {
            max-height: 300px;
        }

        .menu-item {
            color: rgba(255, 255, 255, 0.8);
            padding: 12px 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 60px;
        }

        /* Hamburger Button */
        .menu-toggle {
            position: fixed;
            top: 25px;
            left: 25px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* Container Ã¼zerindeyken buton rengi deÄŸiÅŸsin */
        .menu-toggle.over-container {
            background: rgba(255, 255, 255, 0.9);
        }

        .menu-toggle.over-container .hamburger span {
            background: #2c3e50;
        }

        .hamburger {
            width: 24px;
            height: 18px;
            position: relative;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 8px;
        }

        .hamburger span:nth-child(3) {
            top: 16px;
        }

        .menu-toggle.active .hamburger span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }

        .menu-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8px;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Main Content Styles */
        .container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .header h1 {
            color: #2c3e50;
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .header p {
            color: #7f8c8d;
            font-size: 1.2em;
        }

        .architecture {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .component {
            flex: 1;
            min-width: 200px;
            height: 300px;
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .component:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .component-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

        .guardium {
            border-left: 5px solid #e74c3c;
        }

        .guardium .component-icon {
            color: #e74c3c;
        }

        .syslog {
            border-left: 5px solid #3498db;
        }

        .syslog .component-icon {
            color: #3498db;
        }

        .api {
            border-left: 5px solid #f39c12;
        }

        .api .component-icon {
            color: #f39c12;
        }

        .viewer {
            border-left: 5px solid #2ecc71;
        }

        .viewer .component-icon {
            color: #2ecc71;
        }

        .component h3 {
            color: #2c3e50;
            font-size: 1.3em;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .component p {
            color: #7f8c8d;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .tech-stack {
            background: #34495e;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8em;
            margin-top: 10px;
            display: inline-block;
        }

        .arrow {
            font-size: 2em;
            color: #95a5a6;
            animation: pulse 2s infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .data-flow {
            margin-top: 40px;
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
        }

        .data-flow h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }

        .flow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .flow-step {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #3498db;
            transition: all 0.3s ease;
        }

        .flow-step:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            background: #3498db;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8em;
            font-weight: bold;
            margin-right: 10px;
        }

        .benefits {
            margin-top: 40px;
            text-align: center;
        }

        .benefits h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .benefit-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .benefit-tag {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9em;
            transition: transform 0.3s ease;
        }

        .benefit-tag:hover {
            transform: scale(1.05);
        }

        .copyright {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.75em;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            cursor: pointer;
        }

        .copyright:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.05);
        }

        .copyright::before {
            content: "©";
            margin-right: 4px;
            font-weight: bold;
        }

        @media (max-width: 768px) {

          
            .architecture {
                flex-direction: column;
            }
            
            .arrow {
                transform: rotate(90deg);
            }
            
            .header h1 {
                font-size: 2em;
            }

            .copyright {
                bottom: 15px;
                right: 15px;
                font-size: 0.7em;
                padding: 6px 10px;
            }

            .sidebar {
                width: 280px;
                left: -280px;
            }
        }


        .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #2c3e50;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 0.8em;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 1000;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #2c3e50;
        }

        .component:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }
