        /* Özel Hero Stilleri */
        .hero {
            height: 85vh;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        /* Arka plan koyulaştırma */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        }
        
        /* Yazıların konumu ve hizalaması */
        .hero-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 0 15%;
            max-width: 650px;
            text-align: left; /* Sola hizalama */
        }
        
        /* Başlık stilleri */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            animation: fadeInDown 0.8s ease-out;
        }
        
        /* Açıklama stilleri */
        .hero-desc {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 85%;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            animation: fadeInLeft 0.8s ease-out 0.2s both;
        }
        
        /* Buton stilleri */
        .hero-btn {
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        /* Navigasyon butonları */
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            margin: 0 20px;
            transition: all 0.3s;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            background: rgba(255,255,255,0.3);
        }
        
        /* Animasyonlar */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive ayarlamalar */
        @media (max-width: 992px) {
            .hero-content {
                padding: 0 10%;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-desc {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                height: 70vh;
            }
            
            .hero-content {
                padding: 0 8%;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-desc {
                font-size: 1rem;
                max-width: 100%;
            }
            
            .hero-btn {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-desc {
                margin-bottom: 1.5rem;
            }
        }