
        /* Reset ve Temel Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('img/hero1.webp') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        /* Header Stilleri */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.5s ease;
        }
        
        header.transparent {
            background-color: transparent;
            color: white;
        }
        
        header.scrolled {
            background-color: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            color: #333;
            padding: 15px 5%;
        }
        

        
        header.scrolled nav ul li a {
            color: #333;
        }
        
        header.scrolled .side-toggle i {
            color: #333;
        }
        
        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }
        
        .logo img {
            height: 50px;
            transition: all 0.3s;
        }
        
        /* Navigation */
        nav {
            flex-grow: 1;
            display: flex;
            justify-content: center;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 15px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            color: #4caf50;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #4caf50;
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Dropdown Menü */
        .dropdown-menu {
            position: absolute;
            flex-direction: column;
            top: 100%;
            left: 0;
            background:rgba(255,255,255,0.75);
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
            transform: translateY(10px);
        }
        
        nav ul li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            margin: 0;
            padding: 0;
            width: 100%;
        }
        
        .dropdown-menu li a {
            color: #333 !important;
            padding: 12px 20px;
            display: block;
            transition: all 0.3s;
        }
        
        .dropdown-menu li a:hover {
            background: #f5f5f5;
            color: #4caf50 !important;
        }
        
        .dropdown-menu li a::after {
            display: none;
        }
        
        /* Side Toggle Button */
        .side-toggle {
            display: flex;
            align-items: center;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }
        
        .side-toggle i {
            font-size: 24px;
            color: white;
            transition: all 0.3s;
        }
        
        .side-toggle:hover i {
            color: #4caf50;
        }
        
        /* Side Panel */
        .side-panel {
            position: fixed;
            top: 0;
            right: -350px;
            width: 350px;
            height: 100vh;
            background: #fff;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1002;
            transition: right 0.4s ease;
            overflow-y: auto;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .side-panel.active {
            right: 0;
        }
        
        .side-panel-logo {
            text-align: center;
            margin-bottom: 30px;
            position: sticky;
            top: 0;
            background: white;
            padding: 20px 0;
            z-index: 1;
        }
        
        .side-panel-logo img {
            height: 50px;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #555;
        }
        
        .contact-item i {
            width: 30px;
            color: #4caf50;
            font-size: 18px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #4caf50;
            border-radius: 50%;
            margin: 0 8px;
            color: #fff;
            transition: all 0.3s;
            text-decoration: none;
        }
/* Side Panel Sosyal Medya Butonları - Platforma Özgü Renkler */
.social-links a.facebook:hover {
    background: #3b5998 !important; /* Facebook mavisi */
    transform: translateY(-3px);
    color: #fff;
}

.social-links a.twitter:hover {
    background: #000000 !important; /* X (Twitter siyahı) */
    transform: translateY(-3px);
}

.social-links a.twitter:hover img {
    filter: brightness(0) invert(1); /* SVG'yi beyaz yapar */
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important; /* Instagram gradient */
    transform: translateY(-3px);
    color: #fff;
}

.social-links a.whatsapp:hover {
    background: #25D366 !important; /* WhatsApp yeşili */
    transform: translateY(-3px);
    color: #fff;
}

/* Twitter SVG için ek stil */
.social-links a.twitter img {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Normal durumda gri ton */
}

.social-links a.twitter:hover img {
    filter: brightness(0) invert(1); /* Hover durumunda beyaz */
}
        
        .side-panel-buttons {
            display: flex;
            flex-direction: column;
        }
        
        .panel-btn {
            display: inline-block;
            text-align: center;
            padding: 12px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 10px;
        }
        
        .panel-btn.primary {
            background: #4caf50;
            color: white;
        }
        
        .panel-btn.secondary {
            background: #f5f5f5;
            color: #333;
        }
        
        .panel-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .panel-btn.primary:hover {
            background: #2e7d32;
        }
        
        .panel-btn.secondary:hover {
            background: #e0e0e0;
        }
        
        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero İçerik */
        .hero-content {
            margin-top: auto;
            padding: 0 7% 100px;
            color: white;
            max-width: 800px;
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            color: rgba(243, 248, 246, 0.733);
        }
        
        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background: #4caf50;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background: #2e7d32;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: white;
            z-index: 1001;
        }
        
        /* Hero Slider */
        .hero-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            /* filter: grayscale(25%) brightness(85%); /* hafif grimsi ve biraz koyu */ 
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        /* Responsive Tasarım */
        @media (max-width: 1200px) {
            .side-panel {
                width: 300px;
            }
        }
        
        @media (max-width: 992px) {
            /* Mobile Menu Styles */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 80px 20px 30px;
    display: flex;
    flex-direction: column;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.nav-menu li a {
    color: #333 !important;
    padding: 15px 0;
    display: block;
    font-size: 16px;
}

.nav-menu li a:hover {
    color: #4caf50 !important;
}

/* Dropdown in mobile */
.has-dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 15px;
    margin-bottom: 10px;
    border-radius: 0;
}

.has-dropdown.active .dropdown-menu {
    display: block;
}

.has-dropdown .dropdown-menu li {
    border-bottom: none;
}

.has-dropdown .dropdown-menu li a {
    padding: 10px 0;
    font-size: 14px;
}

.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-dropdown > a .dropdown-icon {
    transition: transform 0.3s;
}

.has-dropdown.active > a .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    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;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}
            
            
            .mobile-menu-btn {
                display: block !important;
                position: relative;
                z-index: 1001;
                color: #333; /* scroll sonrası görünür olması için */
            }
            header.transparent .mobile-menu-btn i { color: #fff; }

            header.scrolled .mobile-menu-btn i { color: #333; }
            
            .side-toggle {
                display: none;
            }
            
            header.scrolled nav ul li a {
                color: #333;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 16px;
            }

          .hero .hero-big-text {
            font-size: 80px;
            }

                        .hero-content{
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo img {
                height: 30px;
            }

            .hero-content{
                margin-bottom: 5.5rem;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content {
                padding-bottom: 80px;
            }
            
            .btn {
                padding: 10px 25px;
                font-size: 14px;
            }
            
            .side-panel {
                width: 280px;
                padding: 20px;
            }
                   .hero .hero-big-text {
            font-size: 60px;
            white-space: normal;
            line-height: 1;
        }
        }
        
        /* Ana İçerik (Scroll için) */
        .main-content {
            padding: 100px 5%;
        }
        
        .section {
            margin-bottom: 80px;
        }
        
        .section h2 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #2e7d32;
            font-family: 'Inter', sans-serif;
        }

    .hero-big-text {
        position: absolute;
        top: 45%;
        left: 7%;
        transform: translateY(-50%);
        font-size: 120px;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        line-height: 0.9;
        z-index: 1;
        pointer-events: none;
        white-space: nowrap;
        letter-spacing: 2px;
    }
.hero-content {
    position: relative;
    z-index: 2; /* metin bunun üstünde gözüksün */
}

 .video-play-btn {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        font-size: 16px;
        margin-left: 15px;
        backdrop-filter: blur(5px);
    }
    
    .video-play-btn i {
        margin-right: 8px;
        font-size: 14px;
    }
    
    .video-play-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .hero-buttons {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }
    
    /* Video Modal Stilleri */
    .video-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2000;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .video-modal.active {
        display: flex;
        opacity: 1;
    }
    
    .video-modal-content {
        position: relative;
        width: 80%;
        max-width: 900px;
        background: #111;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        color: white;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .video-close-btn:hover {
        color: #4caf50;
        transform: rotate(90deg);
    }
    
    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .hero-buttons {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .video-play-btn {
            margin-left: 0;
            margin-top: 15px;
        }
        
        .video-modal-content {
            width: 95%;
        }
    }
    
    @media (max-width: 576px) {
        .video-play-btn {
            padding: 10px 20px;
            font-size: 14px;
        }
    }







.stats {
    background-color: rgba(78, 172, 216, 0.8);


    height: 10rem;
    width: 80%;
    max-width: 70rem;
    position: relative;
    z-index: 10;
    margin-left: 17rem;
    margin-top: -1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.stats-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    color: white;
}

.logo-item {
    margin-right: 2rem;
}

.stats-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.stat-icon {
    margin-right: 15px;
}

.stat-icon img {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
        transition: all 0.3s ease-out;
    font-variant-numeric: tabular-nums; /* Sayıların sabit genişlikte olması */
}

.stat-text {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .stats {
        height: auto;
        padding: 1.5rem;
        margin-top: -3rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        width: 50%;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .logo-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .stats-logo {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .stats {
        width: 90%;
        margin-top: -2rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 13px;
    }
    
    .stat-icon svg {
        width: 30px;
        height: 30px;
    }
}





/* About Section Styles */
.about-section {
    padding: 100px 0;
    position: relative;

    margin-top: 100px;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    position: relative;
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;

    padding: 0; /* Info-box'ın taşan kısmı için alan */
    margin: 15px 0 0 15px; /* Taşan kısım için denge */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.info-box {
    position: absolute;
    bottom: -15px; /* Fotoğrafın altından biraz dışarı taşacak */
    left: -15px; /* Fotoğrafın solundan biraz dışarı taşacak */
    background: #4caf50;
    padding: 15px;
    
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3; /* Fotoğrafın üzerinde görünsün */
    border: 2px solid white; /* Beyaz border ekleyelim */
    
    min-width: 150px; /* Kare formu için sabit genişlik */
    min-height: 150px;
}

.info-box img {
    width: 60px; /* Biraz daha büyük ikon */
    height: 60px;
    margin-right: 30px; /* Yazı ile arasında daha fazla boşluk */
    filter: brightness(0) invert(1); /* Beyaz ikon için */
    z-index: 1;
    margin-left: 20px;

}

.info-box span {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap; /* Yazının tek satırda kalması */
    z-index: 2;
    text-align: center;
    margin-left: -25px;
    color:#333;
}


.about-text {
    flex: 1;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding: 0 20px;
    
    display: flex;
    flex-direction: column;   /* Alt alta dizer */
    align-items: center;      /* Ortalar */
    justify-content: center;  /* Dikey ortalama */
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.title-bg {
    font-size: 65px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(228, 10, 10, 0.562);
    text-transform: uppercase;
    line-height: 0.9;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 2px;
    margin-top: -105px;
}

.about-section .title-bg {
    position: absolute;
    top: -33px; /* İstediğiniz yüksekliği ayarlayın */
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 65px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(228, 10, 10, 0.562);
    text-transform: uppercase;
    line-height: 0.9;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
}

.feature-item i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
.section-title h2 {
        font-size: 30px;
    }
    
    .title-bg {
        font-size: 60px;
        top: -30px;
    }
    
    /* About section için özel düzenleme */
    .about-section .title-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -95px;
        font-size: 60px;
    }
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .title-bg {
        font-size: 60px;
        top: -30px;
    }
    
}


@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        margin-top: 50px;
    }
        .about-section .title-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -83px;
        font-size: 50px;
    }
    
    .title-bg {
        font-size: 50px;
        top: -20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .info-box {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .info-box img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 488px) and (max-width: 520px){
    .title-bg {
        font-size: 40px;
        top: -15px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .feature-item {
        font-size: 14px;
    }

        .about-section .title-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -78px;
        font-size: 40px;
    }

    .about-text p{
        margin-top: 100px;
    }
}

@media (max-width: 488px) {
    .title-bg {
        font-size: 40px;
        top: -15px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .feature-item {
        font-size: 14px;
    }

        .about-section .title-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -120px;
        font-size: 40px;
    }

    .about-text p{
        margin-top: 100px;
    }
}









/* References Section Styles */
.references-section {
    padding: 80px 0;
    padding-bottom: 0;
    background-color: #f9f9f9;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}



.references-track {
    display: flex;
    width: max-content;
    will-change: transform;
    background: rgba(78, 172, 216, 0.8);
    cursor: default;
    height: 10rem;
}

.reference-item {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: auto;
}
.reference-item:hover {
    background: rgba(228, 10, 10, 0.562);
    height: auto;
}

.reference-item:hover .reference-logo img {
    filter: brightness(1) invert(0);
}

.reference-logo img {
    max-width: 100%;
    max-height: 80px;
    transition: all 0.3s ease;
    filter: grayscale(100%) contrast(50%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .references-section {
        padding-top: 60px;
    }
    
    .reference-item {
        width: 180px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .references-section {
        padding-top: 40px;
    }
    
    .reference-item {
        width: 150px;
        height: 170px;
    }
    
    .references-track {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .reference-item {
        width: 130px;
        height: 80px;
        padding: 15px;
    }
    
    .reference-logo img {
        max-height: 50px;
    }
}










/* Services Section Styles - Taller Version */
.services-section {
    padding: 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services-track {
    display: flex;
    width: 100%;
    background: #f9f9f9;
    height: 40rem; /* Increased from 10rem to 16rem for taller section */
    align-items: center;
}

.service-item {
    position: relative;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    overflow: hidden;
    flex-shrink: 0;
}


.service-number {
    position: absolute;
    top: 30%;
    left: 35%;
    font-size: 150px; /* Büyük boyut */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2); /* Daha soluk renk */
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
    line-height: 0.8;
    opacity: 1;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Better image cropping */
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.5s ease;
}

.service-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0 40px; /* More padding for taller layout */
    color: white;
}

.service-title {
    font-size: 22px; /* Slightly larger text */
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.service-plus {
    color: white;
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.service-plus::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent; /* Başlangıçta transparent */
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
    box-sizing: border-box;
}

.service-plus:hover {
    color: rgba(228, 10, 10, 0.685);
    transform: scale(1.1); /* Hafif büyüme efekti */
}

.service-plus:hover::before {
    width: 100%;
    height: 100%;
    border: 2px solid white; /* Beyaz çerçeve */
    background-color: transparent; /* İçi boş */
}

/* Daha büyük daire için (isteğe bağlı) */
.service-plus.large-circle::before {
    width: 100%;
    height: 100%;
    border: 2px solid white;
    background-color: transparent;
}

/* + işaretini tam ortalamak için */
.service-plus span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Hover Effects */
.service-item:hover {
    width: 30%;
}

.service-item:hover .service-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05); /* Slight zoom effect */
}

.service-item:hover .service-number {
        opacity: 0 !important;
    visibility: hidden !important;
}

.service-item:hover .service-title {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .services-track {
        height: 14rem;
    }
}

@media (max-width: 992px) {
    .services-track {
        height: 12rem;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-plus {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .services-track {
        height: auto;
        flex-direction: column;
    }
    
    .service-item {
        width: 100% !important;
        height: 250px; /* Taller mobile items */
    }
    
    .service-item:hover {
        height: 280px; /* Even taller on hover */
    }
    
    .service-content {
        padding: 0 30px;
    }
    
    .service-number {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .service-item {
        height: 200px;
    }
    
    .service-item:hover {
        height: 220px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-plus {
        font-size: 22px;
    }
}















/* Projects Section Styles */
.projects-section {
    padding: 170px 0;
    background-color: #f9f9f9;
    position: relative;
}

.projects-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}



.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 172, 216, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-info:hover{
    color: #333;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    color: white;
    transform: translateY(20px);
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info p {
    font-size: 16px;
    opacity: 0.9;
}

.project-plus {
    position: absolute;
    top: 70px;
    right: 70px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4eacd8;
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(-20px);
    opacity: 0;
    z-index: 2; /* + işareti en üstte olacak */
}

/* Dış çember (arada boşluk olacak şekilde) */
.project-plus::before {
    content: '';
    position: absolute;
    width: 0; /* Başlangıçta küçük */
    height: 0;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1); /* Küçük başlangıç */
    z-index: 1;
    background: transparent;
}

.project-item:hover .project-plus::before {
    opacity: 1;
    width: 120px; /* Son boyut */
    height: 120px;
    transform: translate(-50%, -50%) scale(1); /* Tam boyuta büyüme */
}

.project-item:hover .project-plus {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

/* Dönüş efekti (180 derece) */
.project-plus:hover {
    transform: rotate(180deg) !important; 
    background: white;
    color: #4eacd8;
}


.projects-btn {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-grid {
        gap: 20px;
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-item {
        height: 220px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
    
    .project-info p {
        font-size: 14px;
    }
    
    .project-plus {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 20px;
        right: 20px;
    }
}





/* References Section Title Düzenlemesi */
.references-section .section-title {
    position: relative;
    padding-bottom: 50px; /* Arka plan metni için boşluk */
}

.references-section .section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.references-section .title-bg {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 65px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(228, 10, 10, 0.562);
    text-transform: uppercase;
    line-height: 0.9;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 2px;
}

/* Projects Section Title Düzenlemesi */
.projects-section .section-title {
    position: relative;
    padding-bottom: 50px; /* Arka plan metni için boşluk */
}

.projects-section .section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.projects-section .title-bg {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 65px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(228, 10, 10, 0.562);
    text-transform: uppercase;
    line-height: 0.9;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 2px;
}

/* Mobil Düzenlemeler */
@media (max-width: 992px) {
    .references-section .section-title h2,
    .projects-section .section-title h2 {
        font-size: 30px;
    }
    
    .references-section .title-bg,
    .projects-section .title-bg {
        font-size: 60px;
        top: -30px;
    }
}

@media (max-width: 768px) {
    .references-section .section-title,
    .projects-section .section-title {
        padding-bottom: 40px;
    }
    
    .references-section .section-title h2,
    .projects-section .section-title h2 {
        font-size: 28px;
    }
    
    .references-section .title-bg,
    .projects-section .title-bg {
        font-size: 50px;
        top: -20px;
    }
}

@media (max-width: 576px) {
    .references-section .section-title h2,
    .projects-section .section-title h2 {
        font-size: 26px;
    }
    
    .references-section .title-bg,
    .projects-section .title-bg {
        font-size: 40px;
        top: -15px;
    }
}













/* Blog Section Styles */
.blog-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); /* Kartlar daha dar */
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px; /* Sağ-sol boşluk için */
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.blog-card {
    display: block;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 500px; /* Kartlar daha uzun */
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 250px; /* Görsel alanı daha büyük */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Tüm kategori etiketleri aynı renk */
.blog-category {
    position: absolute;
    top: 0; /* Üst kısma yapışık */
    left: 40px;
    padding: 7px 11px;
    
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
    background: rgba(78, 172, 216, 0.9); /* Tüm kategoriler için aynı renk */
}

/* Hover'da kategori rengi değişimi */
.blog-card .blog-category:hover {
    background: #4caf50;
}

/* Daha Fazla butonu - ortası boşluklu */
.blog-read-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    font-weight: 300; /* Daha ince çizgi */
    letter-spacing: 2px; /* Daha ferah boşluk */
    font-family: 'Montserrat', sans-serif;
    
    /* Ortası boş, stroke efektli */
    color: transparent;
    -webkit-text-stroke: 1.5px #fff; /* Stroke biraz daha kalın */
    text-align: center;

    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.blog-read-more i{
    font-size: 60px;

}



.blog-card:hover .blog-read-more {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    text-shadow: 0 3px 6px rgba(0,0,0,0.5); /* arka planda okunabilirlik için */
    -webkit-text-stroke: 1.2px #fff;
}




.blog-content {
    padding: 25px;
    height: 200px; /* İçerik alanı sabit yükseklikte */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #4caf50;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1; /* Açıklama metni alanı büyüyebilir */
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.blog-meta span {
    margin-right: 8px;
}

.blog-btn {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .blog-card {
        height: auto; /* Mobilde otomatik yükseklik */
    }
    
    .blog-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
}


@media (max-width: 992px) {
    
    /* About section için özel düzenleme */
    .blog-section .title-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -95px;
        font-size: 60px;
    }
}











/* CTA Section */
.cta-section {
  position: relative;
  height: 250px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -40px; /* footer üzerine binsin */
  z-index: 20;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section {
  background: url('img/unnamed.png') center center / cover fixed no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
}

.cta-left {
  flex: 1;
  min-width: 250px;
}

.cta-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-left p {
  font-size: 16px;
  opacity: 0.9;
}

.cta-right {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 7/24 yazısı */
.cta-title-bg {
  font-size: 200px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Buton ortada ve 7/24’ün üstünde */
.cta-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.650); /* yeşil ama transparan */
  backdrop-filter: blur(1px);
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 50px;
  color: #0a0a0aef;
  z-index: 2;
}

.cta-btn:hover {
  background: rgba(19, 19, 19, 0.973);;
  color: #f8f3f3b6
}

/* Footer */
.site-footer {
  background: #0a0a0a; /* Daha zengin, derin siyah */
  color: #e0e0e0; /* Daha yumuşak gri-beyaz metin rengi */
  padding: 80px 20px 30px;
  position: relative;
  margin-top: -30px;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 200px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-links ul {
  list-style: none;
}

/* Footer link hover efekti */
.footer-links ul li {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    display: block;
    padding-left: 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links ul li:hover {
    padding-left: 15px; /* Linkin sağa kayması */
}

.footer-links ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Footer link renklerini düzelt */
.footer-links ul li a {
    color: #ddd !important; /* Normal durum */
    text-decoration: none;
}

.footer-links ul li a:visited {
    color: #ddd !important; /* Ziyaret edilmiş linkler */
}

.footer-links ul li a:hover {
    color: #4caf50 !important; /* Hover durumu */
}

.footer-links ul li a:active {
    color: #2e7d32 !important; /* Tıklanma anı */
}

.footer-links ul li:hover::before {
    opacity: 1;
}

.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 8px 8px 0;
  background: #222;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  transition: all 0.3s;
}

.footer-social .twitter .x {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* SVG'yi beyaz yapar */
    transition: all 0.3s ease;
    margin-bottom: -3px;
}


.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* Tasarım Kredisi Stili */
.design-credit {
  margin-left: 10px;
  font-size: 14px;
}

.design-credit i {
  margin-right: 5px;
  color: #4caf50;
}

.design-credit a {
  color: #4caf50;
  text-decoration: none;
  transition: all 0.3s ease;
}

.design-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive ayar */
@media (max-width: 576px) {
  .footer-bottom p {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .design-credit {
    margin-left: 0;
    margin-top: 5px;
  }
}

/* Footer Sosyal Medya Butonları - Platforma Özgü Renkler */
.footer-social .facebook:hover {
    background: #3b5998 !important; /* Facebook mavisi */
    transform: translateY(-3px);
}


.footer-social .instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important; /* Instagram gradient */
    transform: translateY(-3px);
}

.footer-social .wp:hover {
    background: #25D366 !important; /* WhatsApp yeşili */
    transform: translateY(-3px);
}

.footer-social .twitter:hover {
    background: #000000 !important; /* X (Twitter siyahı) */
    transform: translateY(-3px);
}

/* Responsive CTA */
@media (max-width: 768px) {

      .cta-section {
    height: auto;   /* yüksekliği içeriğe göre ayarlansın */
    padding: 40px 20px; /* üstten alttan boşluk ver */
    margin: 0 25px;
  }
.cta-container {
    flex-direction: column;
    text-align: center;
    gap: 10px; /* kutular arasında boşluk */
  }

  .cta-left {
    flex: unset;
    min-width: unset;
    width: 100%;
  }

  .cta-left h2 {
    font-size: 22px;
  }

  .cta-left p {
    font-size: 14px;
  }

  .cta-right {
    flex: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .cta-title-bg {
    font-size: 80px; /* mobilde daha okunaklı boy */
  }

  .cta-btn {
    position: relative; /* absolute kaldır, alt alta gelsin */
    top: unset;
    left: unset;
    margin-top: 15px;
    transform: none;
  }

  .footer-container {
  gap: 50px;
}
}











/* Yukarı Çık Butonu */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 90px; /* Yukarı çık butonunun solunda */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 1.5s infinite;
}

/* WhatsApp pulsate animasyonu */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Dil Değiştirme Butonları */
.language-switcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 999;
}

.language-switcher a {
    text-decoration: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    text-decoration: none;
}

.lang-btn img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

.lang-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.lang-btn.active {
    background: #4caf50;
    border-color: #4caf50;
}

.lang-btn.active span {
    color: white;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .language-switcher {
        flex-direction: row; /* Mobilde yan yana */
    }
    
    .lang-btn {
        padding: 8px 12px;
    }
    
    .lang-btn span {
        display: none; /* Mobilde sadece bayrak göster */
    }
    
    .lang-btn img {
        margin-right: 0;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 65px; /* Mobilde daha yakın */
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .language-switcher {
        bottom: 20px;
        left: 15px;
        flex-direction: row; /* Mobilde yan yana */
    }
    
    .lang-btn {
        padding: 8px 12px;
    }
    
    .lang-btn span {
        display: none; /* Mobilde sadece bayrak göster */
    }
    
    .lang-btn img {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        right: 65px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .language-switcher {
        bottom: 15px;
        left: 15px;
    }
    
    /* Çok küçük ekranlarda butonları daha da yakınlaştır */
    @media (max-width: 350px) {
        .whatsapp-btn {
            right: 60px;
        }
    }
}