        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
        }
        
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            height: 100vh;
            min-height: 600px;
            max-height: 800px;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(44, 62, 80, 0.85) 0%, 
                rgba(52, 152, 219, 0.7) 50%, 
                rgba(231, 76, 60, 0.6) 100%);
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 800px;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.8s ease-in-out 0.3s;
        }

        .slide.active .slide-content {
            opacity: 1;
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 3;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.1);
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }
        
        .reliability-badge {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .reliability-badge:hover {
            transform: scale(1.1);
            color: var(--accent-color);
        }
        
        .service-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--warning-color);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-block;
        }

        .stat-number.animated {
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
        }
        
        .why-choose-us {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        .contact-info {
            background: var(--dark-bg);
            color: white;
            padding: 50px 0;
        }
        
        .btn-primary {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }
        
        .lookup-card {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        /* Hover efekti */
        .stats-section .col-md-3:hover .stat-number {
            transform: scale(1.1);
            color: #ffd700;
        }

        /* Animation for slide content */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .slide.active .slide-content {
            animation: slideInUp 0.8s ease-out;
        }

        /* Yükleme animasyonu */
        @keyframes countUp {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.8);
            }
            50% {
                opacity: 1;
                transform: translateY(-5px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .stat-number {
            animation: countUp 1s ease-out;
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .hero-slider {
                height: 70vh;
                min-height: 500px;
                max-height: 600px;
            }
            
            .slide-content h1 {
                font-size: 2.5rem !important;
                margin-bottom: 1rem !important;
            }
            
            .slide-content .lead {
                font-size: 1.1rem;
                margin-bottom: 2rem !important;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
            }
            
            .slider-dots {
                bottom: 20px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stats-section {
                padding: 60px 0;
            }
            
            .lookup-card {
                margin-top: -50px;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 60vh;
                min-height: 400px;
                max-height: 500px;
            }
            
            .slide-content h1 {
                font-size: 2rem !important;
            }
            
            .slide-content .lead {
                font-size: 1rem;
            }
            
            .btn-lg {
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }
            
            .slider-nav {
                padding: 0 10px;
            }
            
            .nav-btn {
                width: 35px;
                height: 35px;
            }
            
            .nav-btn i {
                font-size: 0.8rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
		/* Hakkımızda Bölümü Stilleri */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Hakkımızda bölümü için özel stiller */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Değerlerimiz badge stilleri */
.badge {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .team-img {
        width: 120px;
        height: 120px;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    #about .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 2rem;
    }
}
