/* Bootstrap entegrasyonu */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Genel ayarlar */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #3b5172; /* Bootstrap dark blue */
    color: white;
}

header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

header img.rounded-circle {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #fff;
}

/* Navbar */
nav ul.nav {
    margin: 0;
    padding: 0;
}

nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 10px;
}

nav .nav-link:hover {
    text-decoration: underline;
    color: #ffc107 !important;
}

/* Slider */
.slider {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

/* İçerik kutuları */
.content-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: center;
}

.content-box {
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
}

/* İletişim formu */
.contact-form {
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    max-width: 500px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #3b5172;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}
/* Slider 
.carousel-item img {
    height: 40vh;   
    object-fit: cover;
}
*/

.carousel-item img {
    height:450px;   
    object-fit: cover;
}  
    

/* İçerik kutuları */ 
.content-box {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.2s ease;
}

.content-box:hover {
    transform: translateY(-5px);
}
.carousel-item {
  transition: transform 3s ease-in-out;
}


.card {
    border-radius: 12px;
}

.card-body {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.card-title {
    color: #3b5172;
    font-weight: 600;
}

.card {
    border-radius: 12px;
}

.card-title {
    color: #3b5172;
    font-weight: 600;
}



.custom-header {
  background-color: #3b5172; /* istediğin renk kodu */
}
