body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #00d4ff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #00d4ff !important;
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #2a2a2a;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    color: #fff !important;
    font-weight: 600;
}

.card-text {
    color: #fff !important;
    font-size: 1.1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.btn-primary {
    background-color: #00d4ff;
    border-color: #00d4ff;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
}

.cta {
    background: linear-gradient(90deg, #007bff, #00d4ff);
}

/* Üyelerimiz Ne Diyor? Bölümü */
.testimonials {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.testimonials .card {
    background: transparent;
    border: 1px solid #00d4ff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.testimonials .card-text {
    color: #fff !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonials .card-title {
    color: #00d4ff !important;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #1a1a1a;
}

footer h5 {
    color: #00d4ff;
}

footer a.text-white:hover {
    color: #00d4ff !important;
    text-decoration: underline;
}

/* Fiyat Listesi */
.pricing {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.pricing .card {
    background: transparent;
    border: 2px solid #00d4ff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
}

.pricing .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    top: -20px; /* Badge'i yukarı taşıyarak başlık ile çakışmayı önlüyorum */
    z-index: 10; /* Başlığın üstünde görünmesi için */
}

.pricing .card-body {
    padding: 2rem;
}