/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    transform-origin: center center;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(111, 66, 193, 0.2);
    border-radius: 50px;
    padding: 20px 10px;
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(111, 66, 193, 0.15);
    transform: translateY(-50%) translateX(-5px);
    will-change: transform;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #6f42c1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: 2px solid transparent;
}

.nav-item:hover {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-item i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-item:hover i {
    transform: scale(1.1);
}

/* ===== TOOLTIP ===== */
.nav-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item::after {
    content: '';
    position: absolute;
    right: -115px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover::before,
.nav-item:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 700px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        left: -100px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .navbar.mobile-open {
        left: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(-50%) !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 50%;
        left: 15px;
        padding: 15px 8px;
    }
    
    .nav-item {
        width: 45px;
        height: 45px;
    }
    
    .nav-item i {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        gap: 10px;
    }
    
    .nav-item::before {
        right: -100px;
        font-size: 0.75rem;
    }
    
    .nav-item::after {
        right: -95px;
    }
}

@media (max-width: 576px) {
    .navbar {
        top: 50%;
        left: 10px;
        padding: 12px 6px;
    }
    
    .nav-item {
        width: 40px;
        height: 40px;
    }
    
    .nav-item i {
        font-size: 1rem;
    }
    
    .navbar-nav {
        gap: 8px;
    }
    
    .nav-item::before {
        font-size: 0.7rem;
        padding: 4px 8px;
        right: -90px;
    }
    
    .nav-item::after {
        right: -85px;
    }
}

/* ===== NAVBAR RIPPLE EFEKTİ ===== */
.nav-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: nav-ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes nav-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== GENEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.1"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== BAŞLIK STİLLERİ ===== */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.title-main {
    display: block;
    color: #6f42c1;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.word-container {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    height: 1.5em;
    overflow: hidden;
    transition: height 0.5s ease;
}

/* ===== RESPONSIVE WORD CONTAINER ===== */
@media (max-width: 768px) {
    .word-container {
        height: 2em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .word-container {
        height: 2.5em;
        margin-bottom: 10px;
    }
}

.word-text {
    display: inline-block;
    color: #6f42c1;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.8s ease-out;
    line-height: 1.2;
    text-align: center;
}

/* ===== RESPONSIVE WORD TEXT ===== */
@media (max-width: 768px) {
    .word-text {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .word-text {
        font-size: 2rem;
        line-height: 1.4;
    }
}

.word-text.show {
    transform: translateY(0);
    opacity: 1;
}

.word-text.hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* ===== AÇIKLAMA ===== */
.hero-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== BUTONLAR ===== */
.hero-buttons {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
    background: linear-gradient(135deg, #5a359a, #7d3c98);
}

.btn-outline-primary {
    color: #6f42c1;
    border: 2px solid #6f42c1;
    padding: 13px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.3);
    border-color: transparent;
}

/* ===== SOSYAL MEDYA İKONLARI ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
    color: white;
}

/* ===== SCROLL İNDİKATÖRÜ ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: #6f42c1;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-name {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 1.5rem;
    }
    
    .title-name {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
}

/* ===== EKSTRA ANİMASYONLAR ===== */
.hero-section {
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    }
    50% {
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    }
}

/* ===== HAKKIMDA SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.05"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="200" fill="url(%23b)"/><circle cx="900" cy="300" r="250" fill="url(%23b)"/><circle cx="500" cy="800" r="300" fill="url(%23b)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* ===== SECTION BAŞLIKLARI ===== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== FOTOĞRAF BÖLÜMÜ ===== */
.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.about-photo {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.3);
    transition: all 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(111, 66, 193, 0.4);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111, 66, 193, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2rem;
}

.image-decoration {
    display: none;
}

/* ===== YAZI BÖLÜMÜ ===== */
.about-content {
    animation: fadeInRight 1s ease-out 0.9s both;
    margin-left: 2rem;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #6f42c1;
    margin-bottom: 25px;
    position: relative;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== HAKKIMDA BOŞLUK ===== */
.about-spacing {
    height: 100px;
    margin: 30px 0;
}

/* ===== SCROLL-BASED ANIMATIONS ===== */
/* Başlangıç durumu - tüm animasyonlu elementler gizli */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animasyon aktif olduğunda */
.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Farklı animasyon türleri */
.animate-fade-in {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-in.animate-in {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale-up.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-rotate-in.animate-in {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Staggered animations için gecikme */
.animate-delay-1 { transition-delay: 0.2s; }
.animate-delay-2 { transition-delay: 0.4s; }
.animate-delay-3 { transition-delay: 0.6s; }
.animate-delay-4 { transition-delay: 0.8s; }
.animate-delay-5 { transition-delay: 1.0s; }
.animate-delay-6 { transition-delay: 1.2s; }

/* Hover durumunda animasyonun durmaması için */
.skill-card:hover,
.certificate-card:hover {
    transform: translateY(-8px) !important;
    transition: transform 0.3s ease !important;
}

/* Animasyonlu elementlerin hover durumunda transform'u koruma */
.animate-on-scroll.animate-in:hover,
.animate-fade-in.animate-in:hover,
.animate-slide-left.animate-in:hover,
.animate-slide-right.animate-in:hover,
.animate-scale-up.animate-in:hover,
.animate-rotate-in.animate-in:hover {
    transform: translateY(-8px) !important;
    transition: transform 0.3s ease !important;
}

/* ===== İLETİŞİM BİLGİLERİ ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(111, 66, 193, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #6f42c1;
}

.contact-item:hover {
    background: rgba(111, 66, 193, 0.2);
    transform: translateX(10px);
}

.contact-item i {
    color: white !important;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: #333;
    font-weight: 500;
}

/* ===== EK ANİMASYONLAR ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE HAKKIMDA ===== */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-photo {
        width: 250px;
        height: 250px;
        border-radius: 50%;
    }
    
    .image-decoration {
        display: block;
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        border: 3px solid #6f42c1;
        border-radius: 50%;
        opacity: 0.3;
        animation: rotate 20s linear infinite;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .about-content {
        margin-left: 1rem;
    }
    
    .image-decoration {
        display: none;
    }
    
    .about-text {
        text-align: left;
        font-size: 1rem;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .contact-item {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-photo {
        width: 200px;
        height: 200px;
        border-radius: 50%;
    }
    
    .image-decoration {
        display: block;
        position: absolute;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border: 2px solid #6f42c1;
        border-radius: 50%;
        opacity: 0.3;
        animation: rotate 30s linear infinite;
    }
    
    .about-content {
        margin-left: 0.5rem;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .image-decoration {
        display: none;
    }
    
    .contact-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ===== BOOTCAMPLER SECTION ===== */
.bootcamps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.bootcamps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="c" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.03"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23c)"/><circle cx="800" cy="400" r="200" fill="url(%23c)"/><circle cx="400" cy="800" r="180" fill="url(%23c)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
}

.bootcamps-section .container {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== BOOTCAMP KARTLARI ===== */
.bootcamp-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.bootcamp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bootcamp-card:hover::before {
    transform: scaleX(1);
}

.bootcamp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

/* ===== BOOTCAMP HEADER ===== */
.bootcamp-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
    animation: fadeInUp 1s ease-out;
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
    transition: all 0.3s ease;
}

.bootcamp-card:hover .company-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4);
}

.company-logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.bootcamp-info {
    flex: 1;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 5px;
}

.bootcamp-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.bootcamp-date {
    font-size: 0.9rem;
    color: #666;
    background: rgba(111, 66, 193, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* ===== BOOTCAMP CONTENT ===== */
.bootcamp-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.bootcamp-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== TEKNOLOJİ ETİKETLERİ ===== */
.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

/* ===== RESPONSIVE BOOTCAMPLER ===== */
@media (max-width: 768px) {
    .bootcamps-section {
        padding: 60px 0;
    }
    
    .bootcamp-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .bootcamp-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .company-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .bootcamp-name {
        font-size: 1rem;
    }
    
    .bootcamp-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .bootcamp-card {
        padding: 15px;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
    }
    
    .company-logo img {
        width: 30px;
        height: 30px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .bootcamp-name {
        font-size: 0.9rem;
    }
    
    .bootcamp-date {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

/* ===== PROJELERİM SECTION ===== */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="d" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.04"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="120" fill="url(%23d)"/><circle cx="700" cy="600" r="160" fill="url(%23d)"/><circle cx="100" cy="800" r="140" fill="url(%23d)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: 1;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

/* ===== PROJE KARTLARI ===== */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

/* ===== PROJE GALERİSİ ===== */
.project-gallery {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-image.active {
    opacity: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* ===== GALERİ İNDİKATÖRLERİ ===== */
.gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== PROJE İÇERİĞİ ===== */
.project-content {
    padding: 20px;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

/* ===== PROJE TEKNOLOJİLERİ ===== */
.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.project-technologies .tech-tag {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.project-technologies .tech-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(111, 66, 193, 0.3);
}

/* ===== PROJE BUTONLARI ===== */
.project-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-github {
    background: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(51, 51, 51, 0.3);
    flex: 1;
}

.btn-github:hover {
    background: #555;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.btn-details {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(111, 66, 193, 0.3);
    cursor: pointer;
    flex: 1;
}

.btn-details:hover {
    background: linear-gradient(135deg, #5a359a, #7d3c98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

.btn-details:active {
    transform: translateY(0);
}

/* ===== RESPONSIVE PROJELER ===== */
@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .project-gallery {
        height: 180px;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.85rem;
    }
    
    .project-technologies .tech-tag {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .project-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-github,
    .btn-details {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .project-gallery {
        height: 180px;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.85rem;
    }
    
    .gallery-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
}

/* ===== DİL VE TEKNOLOJİLER SECTION ===== */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="e" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.02"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23e)"/><circle cx="850" cy="300" r="120" fill="url(%23e)"/><circle cx="500" cy="700" r="140" fill="url(%23e)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.8;
    z-index: 1;
}

.skills-section .container {
    position: relative;
    z-index: 2;
}

/* ===== KATEGORİ BAŞLIKLARI ===== */
.skills-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6f42c1;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.skills-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    border-radius: 2px;
}

/* ===== TEKNOLOJİ KARTLARI ===== */
.skill-card {
    background: white;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(111, 66, 193, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(111, 66, 193, 0.2);
}

/* ===== TEKNOLOJİ İKONLARI ===== */
.skill-icon {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.skill-icon i {
    font-size: 3rem;
    color: #6f42c1;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon i {
    transform: scale(1.1);
    color: #8e44ad;
}

/* ===== TEKNOLOJİ İSİMLERİ ===== */
.skill-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* ===== ÖZEL İKON RENKLERİ ===== */
.skill-card:hover .skill-icon .fab.fa-js-square {
    color: #f7df1e;
}

.skill-card:hover .skill-icon .fab.fa-python {
    color: #3776ab;
}

.skill-card:hover .skill-icon .fab.fa-java {
    color: #007396;
}

.skill-card:hover .skill-icon .fab.fa-csharp {
    color: #239120;
}

.skill-card:hover .skill-icon .fab.fa-php {
    color: #777bb4;
}

.skill-card:hover .skill-icon .fab.fa-swift {
    color: #fa7343;
}

.skill-card:hover .skill-icon .fab.fa-react {
    color: #61dafb;
}

.skill-card:hover .skill-icon .fab.fa-vue {
    color: #4fc08d;
}

.skill-card:hover .skill-icon .fab.fa-angular {
    color: #dd0031;
}

.skill-card:hover .skill-icon .fab.fa-html5 {
    color: #e34f26;
}

.skill-card:hover .skill-icon .fab.fa-css3-alt {
    color: #1572b6;
}

.skill-card:hover .skill-icon .fab.fa-sass {
    color: #cf649a;
}

.skill-card:hover .skill-icon .fab.fa-node-js {
    color: #339933;
}

.skill-card:hover .skill-icon .fab.fa-microsoft {
    color: #00a4ef;
}

.skill-card:hover .skill-icon .fab.fa-laravel {
    color: #ff2d20;
}

.skill-card:hover .skill-icon .fab.fa-django {
    color: #092e20;
}

.skill-card:hover .skill-icon .fas.fa-server {
    color: #68a063;
}

.skill-card:hover .skill-icon .fas.fa-code {
    color: #ff6b6b;
}

.skill-card:hover .skill-icon .fas.fa-database {
    color: #336791;
}

.skill-card:hover .skill-icon .fab.fa-git-alt {
    color: #f05032;
}

.skill-card:hover .skill-icon .fab.fa-docker {
    color: #2496ed;
}

.skill-card:hover .skill-icon .fab.fa-aws {
    color: #ff9900;
}

.skill-card:hover .skill-icon .fab.fa-linux {
    color: #fcc624;
}

.skill-card:hover .skill-icon .fas.fa-terminal {
    color: #4a4a4a;
}

/* ===== RESPONSIVE DİL VE TEKNOLOJİLER ===== */
@media (max-width: 768px) {
    .skills-section {
        padding: 60px 0;
    }
    
    .skills-category-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .skill-card {
        padding: 20px 10px;
    }
    
    .skill-icon i {
        font-size: 2.5rem;
    }
    
    .skill-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .skills-category-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .skill-card {
        padding: 15px 8px;
    }
    
    .skill-icon i {
        font-size: 2rem;
    }
    
    .skill-name {
        font-size: 0.75rem;
    }
}

/* ===== EĞİTİM VE DENEYİMLER SECTION ===== */
.education-experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.education-experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="f" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.03"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="120" fill="url(%23f)"/><circle cx="800" cy="600" r="100" fill="url(%23f)"/><circle cx="400" cy="800" r="140" fill="url(%23f)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: 1;
}

.education-experience-section .container {
    position: relative;
    z-index: 2;
}

/* ===== ALT BÖLÜM BAŞLIKLARI ===== */
.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: #6f42c1;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    border-radius: 2px;
}

.subsection-title i {
    color: #8e44ad;
}

/* ===== EĞİTİM KARTLARI ===== */
.education-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.education-card:hover::before {
    transform: scaleX(1);
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

/* ===== DENEYİM KARTLARI ===== */
.experience-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8e44ad, #6f42c1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

/* ===== KART HEADER ===== */
.education-header,
.experience-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.education-logo,
.experience-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
    transition: all 0.3s ease;
}

.education-card:hover .education-logo,
.experience-card:hover .experience-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4);
}

.education-logo img,
.experience-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.education-info,
.experience-info {
    flex: 1;
}

.institution-name,
.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 5px;
}

.degree-name,
.position-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.education-date,
.experience-date {
    font-size: 0.9rem;
    color: #666;
    background: rgba(111, 66, 193, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* ===== KART İÇERİĞİ ===== */
.education-content,
.experience-content {
    margin-top: 20px;
}

.education-description,
.experience-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== YETENEK ETİKETLERİ ===== */
.education-skills,
.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

/* ===== RESPONSIVE EĞİTİM VE DENEYİMLER ===== */
@media (max-width: 768px) {
    .education-experience-section {
        padding: 60px 0;
    }
    
    .subsection-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .education-card,
    .experience-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .education-header,
    .experience-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .education-logo,
    .experience-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .institution-name,
    .company-name {
        font-size: 1.2rem;
    }
    
    .degree-name,
    .position-name {
        font-size: 1rem;
    }
    
    .education-description,
    .experience-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .education-card,
    .experience-card {
        padding: 15px;
    }
    
    .education-logo,
    .experience-logo {
        width: 60px;
        height: 60px;
    }
    
    .education-logo img,
    .experience-logo img {
        width: 35px;
        height: 35px;
    }
    
    .institution-name,
    .company-name {
        font-size: 1.1rem;
    }
    
    .degree-name,
    .position-name {
        font-size: 0.9rem;
    }
    
    .education-date,
    .experience-date {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

/* ===== SERTİFİKALARIM SECTION ===== */
.certificates-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.02"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="200" r="80" fill="url(%23g)"/><circle cx="900" cy="400" r="100" fill="url(%23g)"/><circle cx="300" cy="700" r="120" fill="url(%23g)"/><circle cx="700" cy="800" r="90" fill="url(%23g)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.8;
    z-index: 1;
}

.certificates-section .container {
    position: relative;
    z-index: 2;
}

/* ===== SERTİFİKA KARTLARI ===== */
.certificate-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.2);
}

/* ===== SERTİFİKA GÖRSELİ ===== */
.certificate-image {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.05);
}

/* ===== SERTİFİKA İÇERİĞİ ===== */
.certificate-content {
    padding: 15px;
}

.certificate-company {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.company-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 8px;
}

.company-name {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.certificate-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.certificate-date {
    font-size: 0.7rem;
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 500;
}

/* ===== RESPONSIVE SERTİFİKALAR ===== */
@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 0;
    }
    
    .certificate-image {
        height: 100px;
    }
    
    .certificate-content {
        padding: 12px;
    }
    
    .certificate-title {
        font-size: 0.8rem;
    }
    
    .company-name {
        font-size: 0.7rem;
    }
    
    .certificate-date {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .company-logo {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .certificate-image {
        height: 80px;
    }
    
    .certificate-content {
        padding: 10px;
    }
    
    .certificate-title {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
    }
    
    .company-name {
        font-size: 0.65rem;
    }
    
    .certificate-date {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    .company-logo {
        width: 16px;
        height: 16px;
    }
}

/* ===== POPÜLER BLOGLARIM SECTION ===== */
.blogs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="h" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.03"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="250" r="100" fill="url(%23h)"/><circle cx="850" cy="350" r="120" fill="url(%23h)"/><circle cx="400" cy="650" r="90" fill="url(%23h)"/><circle cx="600" cy="200" r="80" fill="url(%23h)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: 1;
}

.blogs-section .container {
    position: relative;
    z-index: 2;
}

/* ===== BLOG KARTLARI ===== */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

/* ===== BLOG GÖRSELİ ===== */
.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111, 66, 193, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-overlay i {
    transform: scale(1);
}

/* ===== BLOG İÇERİĞİ ===== */
.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    font-size: 0.85rem;
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.blog-date i {
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== BLOG FOOTER ===== */
.blog-footer {
    margin-top: auto;
}

.blog-btn {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.blog-btn:hover::before {
    left: 100%;
}

.blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

.blog-btn i {
    transition: transform 0.3s ease;
}

    .blog-btn:hover i {
    transform: translateX(3px);
}

/* ===== RIPPLE EFEKTİ ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE BLOGLAR ===== */
@media (max-width: 768px) {
    .blogs-section {
        padding: 60px 0;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .blog-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-description {
        font-size: 0.85rem;
    }
    
    .blog-date {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .blog-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* ===== İLETİŞİM SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="i" cx="50%" cy="50%"><stop offset="0%" stop-color="%236f42c1" stop-opacity="0.02"/><stop offset="100%" stop-color="%236f42c1" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="120" fill="url(%23i)"/><circle cx="800" cy="200" r="100" fill="url(%23i)"/><circle cx="400" cy="700" r="140" fill="url(%23i)"/><circle cx="600" cy="500" r="90" fill="url(%23i)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.8;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

/* ===== İLETİŞİM BİLGİLERİ ===== */
.contact-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    height: 100%;
    border: 1px solid rgba(111, 66, 193, 0.1);
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 20px;
}

.contact-info-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-item:hover {
    background: rgba(111, 66, 193, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    word-break: break-word;
}

.contact-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(111, 66, 193, 0.1);
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
    color: white;
}

/* ===== MESAJ FORMU ===== */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 30px;
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #6f42c1;
    background: white;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    transition: width 0.3s ease;
}

.form-control:focus + .form-focus-line {
    width: 100%;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== GÖNDER BUTONU ===== */
.submit-btn {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ===== RESPONSIVE İLETİŞİM ===== */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 12px;
        width: 100%;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .form-control {
        padding: 12px 15px;
        width: 100%;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        width: 100%;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .submit-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #6f42c1 0%, #8e44ad 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="j" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23j)"/><circle cx="800" cy="300" r="120" fill="url(%23j)"/><circle cx="400" cy="600" r="180" fill="url(%23j)"/><circle cx="600" cy="800" r="100" fill="url(%23j)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* ===== FOOTER BÖLÜMLERİ ===== */
.footer-section {
    margin-bottom: 40px;
}

/* Footer grid düzenlemesi - hafif boşluk */
.footer .row {
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer .col-lg-4 {
    flex: 0 0 28%;
    max-width: 28%;
}

.footer .col-lg-2 {
    flex: 0 0 18%;
    max-width: 18%;
}

.footer .col-lg-3 {
    flex: 0 0 22%;
    max-width: 22%;
}

.footer-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

/* ===== FOOTER PROFİL ===== */
.footer-profile {
    text-align: center;
    margin-bottom: 25px;
}

.footer-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-photo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.footer-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

/* ===== FOOTER LİNKLERİ ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 100%;
}

/* ===== FOOTER SOSYAL MEDYA ===== */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-social-link i {
    width: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social-link:hover i {
    transform: scale(1.2);
}

/* ===== FOOTER İLETİŞİM ===== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact-item i {
    width: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item:hover i {
    color: white;
}

/* ===== FOOTER ALT ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.policy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: white;
}

/* ===== POLICY MODALS ===== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
    line-height: 1.6;
}

.modal-body h6 {
    color: #6f42c1;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin-bottom: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    color: #555;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
}

.modal-footer .btn {
    border-radius: 8px;
    padding: 8px 20px;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .row {
        justify-content: center;
        gap: 15px;
    }
    
    /* Hakkımda bölümü - tam genişlik */
    .footer .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    /* Sayfalar ve Sosyal Medya - yan yana */
    .footer .col-lg-2,
    .footer .col-lg-3 {
        flex: 0 0 48%;
        max-width: 48%;
        margin-bottom: 25px;
    }
    
    /* İletişim bölümü - tam genişlik */
    .footer .col-lg-3:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-photo {
        width: 100px;
        height: 100px;
    }
    
    .footer-name {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-policies {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-photo {
        width: 80px;
        height: 80px;
    }
    
    .footer-name {
        font-size: 1.2rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-social-link,
    .footer-contact-item {
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===== RESPONSIVE CONTACT - 992px-1119px ===== */
@media (min-width: 992px) and (max-width: 1119px) {
    .contact-section .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contact-section .col-lg-4 {
        order: 1;
        margin-bottom: 40px;
        max-width: 600px;
        width: 100%;
        text-align: center;
    }
    
    .contact-section .col-lg-8 {
        order: 2;
        max-width: 700px;
        width: 100%;
    }
    
    .contact-info-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .contact-info-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-items {
        gap: 20px;
    }
    
    .contact-item {
        justify-content: center;
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .form-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
    }
}

/* ===== RESPONSIVE CONTACT COMPACT - 1120px-1199px ===== */
@media (min-width: 1120px) and (max-width: 1199px) {
    /* Yalnızca iletişim kartlarını kompakt hale getir */
    .contact-info { padding: 24px; }
    .contact-items { gap: 12px; }
    .contact-item { padding: 10px 12px; }
    .contact-icon { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
    .contact-details h4 { font-size: 0.95rem; margin-bottom: 2px; }
    .contact-details p { font-size: 0.85rem; line-height: 1.3; }
}

/* ===== GITHUB CONTRIBUTION GRAPH ===== */
.github-section {
    text-align: center;
}

.github-title {
    font-size: 2rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 30px;
    position: relative;
}

.github-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #8e44ad);
    border-radius: 2px;
}

.github-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.github-chart-img {
    max-width: 120%;
    width: 120%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.github-chart-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.3);
}

/* ===== RESPONSIVE GITHUB CONTRIBUTION ===== */
@media (max-width: 768px) {
    .github-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .github-chart-container {
        margin-top: 20px;
    }
    
    .github-chart-img {
        max-width: 110%;
        width: 110%;
    }
}

@media (max-width: 480px) {
    .github-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .github-chart-img {
        max-width: 105%;
        width: 105%;
    }
}
