 :root {
            --dark-bg: #121212;
            --dark-card: #2d2d2d; /* Daha yumuşak bir kart rengi */
            --dark-border: #444444; /* Daha açık border rengi */
            --primary: #8B5CF6;
            --secondary: #7C3AED;
            --text-primary: #e0e0e0;
            --text-secondary: #a0a0a0;
            --navbar-bg: #1a1a1a; /* Yeni navbar arkaplan rengi */
        }
   
      html,   body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            padding-top: 30px;
			 text-decoration: none;
			 overflow-x: hidden;
        }
		
		
	.hakkinda_resim{width:100%;} 
	.hakkinda_yazi{margin-top:100px;}
	.harita_yazi{margin-top:100px; }
	
	
	a {
    color: #fff; 
    text-decoration: none;
   
}
		
		
		
        
        .navbar {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
            background-color: var(--navbar-bg) !important; /* Yeni navbar rengi */
            transition: all 0.3s ease;
        }
        
        .navbar-brand, .nav-link {
            color: var(--text-primary) !important;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        /* Hero Section - Daha Geniş ve Görsel */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                        url('../images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
			/* Daha yüksek padding */
            margin-bottom: 40px;
            position: relative;
            border: none;
            min-height: 100vh; /* Ekran yüksekliği kadar */
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.4) 100%);
            z-index: 1;
        }
        
        .hero-section h1 {
            font-size: 3.8rem; /* Daha büyük başlık */
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        
        .hero-section p {
            font-size: 1.5rem; /* Daha büyük paragraf */
            max-width: 800px;
            margin: 0 auto 3rem; /* Daha fazla boşluk */
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.6;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            background-color: var(--primary);
            color: white;
        }
        
       .card {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: none;
            overflow: hidden;
			background-color:#212429;
			color:#fff;
        }
        
        .card-header {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border-bottom: none;
            padding: 20px;
        }
        
        .currency-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .currency-card:hover {
            transform: translateY(-5px);
        }
        
        .currency-flag {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            margin-right: 15px;
        }
        
 
        
        .form-control, .form-select {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        
        .result-box {
            background: linear-gradient(to right, #f7bf08 0%, #f3d66b 100%);
            color: black;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .switch-button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px auto;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .switch-button:hover {
            background-color: var(--primary-color);
            transform: rotate(180deg);
        }
        
        .last-update {
            font-size: 0.85rem;
            color: #7f8c8d;
            text-align: right;
            margin-top: 10px;
        }
        
        .currency-badge {
            font-size: 0.9rem;
            padding: 5px 10px;
            border-radius: 20px;
        }
        
        .buy-rate { background-color: #d4edda; color: #155724; }
        .sell-rate { background-color: #f8d7da; color: #721c24; }
        
        @media (max-width: 768px) {
            .currency-card {
                padding: 15px;
            }
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.8rem 1.8rem;
            font-weight: 600;
            border-radius: 8px;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-2px);
        }
        
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.3);
            color: var(--text-primary);
        }
        
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .pricing-card {
            text-align: center;
            padding: 2rem;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1.5rem 0;
        }
        
        footer {
            background-color: var(--dark-card);
            color: var(--text-primary);
            padding: 60px 0 30px;
            margin-top: 60px;
            border-top: 1px solid var(--dark-border);
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .testimonial {
            background-color: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 12px;
            padding: 2rem;
            margin: 1rem 0;
        }
        
        .testimonial img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #f0c30d;
            margin-top: 15px;
            border-radius: 2px;
        }
        
        .section-title.text-center:after {
            margin-left: auto;
            margin-right: auto;
        }
        
        .bg-light {
            background-color: var(--dark-card) !important;
            color: var(--text-primary);
        }
        
        .text-muted {
            color: var(--text-secondary) !important;
        }
        
        .bg-primary {
            background-color: var(--primary) !important;
        }
		
		.arkaplan{
width:100%;
height:100%;



}

.kuryaniyazibg{
margin-top:100px;
opacity: 1;
background: #fff;
color:#000;
width:auto;
height:auto;
}
.kuryaniyazi{
padding:5px;
color:#000;
text-align: center;

}
.tablo_yapisi{margin-top:-150px;}

.table{color:#000;  background-color: rgba(255, 255, 251,251); width:85%; margin:auto; }
.kur_logo{width:40px; height:40px;}
.kur_logo img{width:40px; height:40px;}
.tablo_yazi {margin-top:10px;}
   
        @media (max-width: 992px) {
            .hero-section {
                padding: 150px 0;
                min-height: 80vh;
            }
            
            .hero-section h1 {
                font-size: 3rem;
            }
            
            .hero-section p {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
			body{
				padding:0px; margin-top:100px;}
			.hero-content{width:100%;}
            .hero-section {padding:0px;min-height: 70vh; }
            .hero-section h1 { font-size: 2.0rem;}
            .hero-section p { font-size: 1.0rem;}
			.tablo_yazi{font-size:13px;}
			.table{width:100%; }
			
			.harita{width:30%;}
			
        }
		
		@media (min-width:769px) and (max-width:1024px){
			body{padding:0px; margin-top:90px;}
			.hero-content{width:100%;}
            .hero-section {padding:0px;min-height: 70vh; }
            .hero-section h1 { font-size: 2.0rem;}
            .hero-section p { font-size: 1.0rem;}
			
			.table{width:100%; }
			
			.harita{width:30%;}
}

/* (1280x1024) SXGA Display */
@media  screen and (max-width: 1280px) {
   body{padding:0px; margin-top:80px;}
   .table{margin-top:-30px;}
   .kur_logo img{width:35px; height:35px;}
}