@charset "utf-8";
/* CSS Document */
.bas-secenek {
	
	margin:20px auto;
    display: flex;
    align-items: center;
    gap: 15px;
	 background: linear-gradient(90deg, rgba(16, 26, 56, 0.8) 0%, rgba(10, 14, 23, 0.9) 100%);
    margin-bottom: 25px;
    padding: 10px;
	border-radius: 15px;
}

.column {
    flex: 1;  /*iki taraf eşit genişlikte*/             
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bas-secenek h2{
	margin: 0;
		text-align: center;
}

.bilim-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
	display: flex;        
    justify-content: center; 
    gap: 150px;             
    align-items: flex-start;
}

.glass-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, rgba(16, 26, 56, 0.8) 0%, rgba(10, 14, 23, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	gap:20px;
}

.glass-card:hover .card-title {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5); 
}

.glass-card:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, rgba(25, 40, 80, 0.9) 0%, rgba(16, 26, 56, 1) 100%);
    border-color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.glass-card img{
	width:60px;
	height:60px;
	border-radius: 15px;
	padding:5px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.card-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bas-secenek h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    color: #fff;
}