body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 70px; /* Navbar'ın içeriği örtmesini engellemek için */
}

/* Genel Başlık Stilleri */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar-brand img {
    max-height: 50px;
}
.navbar-nav .nav-link {
    font-weight: 600;
    color: #343a40; /* Koyu gri */
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #007bff; /* Mavi */
}
.navbar-nav .nav-link.active {
    color: #007bff; /* Mavi */
}

/* Hero Section */
#hero {
    position: relative;
    color: white;
    min-height: 80vh; /* Minimum yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Hafif karartma */
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
}

.custom-btn {
    background-color: #007bff; /* Bootstrap mavisi */
    border-color: #007bff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px; /* Yuvarlak kenarlar */
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px); /* Hafif yukarı hareket */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Services Section - Kartlar */
#services .card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
#services .card-body {
    padding: 30px;
}
#services .fa-4x {
    font-size: 4em;
    color: #007bff; /* Mavi ikonlar */
}

/* About Section */
#about img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact .list-unstyled li {
    font-size: 1.1rem;
}
#contact .list-unstyled i {
    color: #007bff;
}

#contact iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form stilleri */
#contact .form-control {
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #212529 !important; /* Koyu gri/siyah */
}