body {
    background-color: #f2f2f2;
}

/* Genel navbar tasarımı */
.custom-navbar {
    background-color: white;
    padding: 0;
    border-bottom: 3px solid #ddd;
}

/* Logo */
.logo {
    max-height: 150px; /* Mobil için küçültüldü */
    width: auto; /* Orantılı küçülme için */
}

/* Menü stilleri */
.navbar-nav .nav-link {
    color: #003366 !important;
    font-size: 16px; /* Mobil için küçültüldü */
    font-weight: bold;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
}

/* Hover efekti */
.navbar-nav .nav-link:hover {
    color: white !important;
    background-color: #003366 !important;
    border-radius: 5px;
    padding: 10px 15px;
}

/* Aktif menü */
.navbar-nav .nav-link.active {
    color: white !important;
    background-color: #003366 !important;
    border-radius: 5px;
}

h5 {
    font-size: 40px; /* Mobil için küçültüldü */
    color: black;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.contact-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.contact-container {
    width: 95%; /* Daha esnek */
    max-width: 1400px;
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info {
    background: #003399;
    color: white;
    padding: 40px; /* Mobil için küçültüldü */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    padding: 40px; /* Mobil için küçültüldü */
    flex: 1.5;
}

.btn-custom {
    background: #003399;
    color: white;
}

.btn-custom:hover {
    background: #002266;
}

.highlight-box {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight-box i {
    font-size: 2rem;
    color: #003399;
    margin-right: 15px;
}

.card-hover-effect {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-hover-effect:hover {
    background: linear-gradient(135deg, #f9fafc, #e4e9f0);
}

.makina-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.makina-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.makina-card img {
    transition: transform 0.3s ease;
}

.makina-card:hover img {
    transform: scale(1.0);
}

.makina-card .makina-title {
    font-size: 1.1rem; /* Mobil için küçültüldü */
    font-weight: bold;
    text-align: center;
    margin-top: 20px; /* Mobil için küçültüldü */
    color: #003399;
}

.makina-card .makina-info {
    text-align: center;
    font-size: 0.8rem; /* Mobil için küçültüldü */
    color: #666;
}

.col-md-6 {
    margin-top: 10px; /* Mobil için küçültüldü */
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-icerik {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px; /* Mobil için küçültüldü */
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-icerik h2 {
    color: #2ecc71;
    font-size: 1.5rem; /* Mobil için küçültüldü */
}

.kapat {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px; /* Mobil için küçültüldü */
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.kapat:hover {
    color: #333;
}

/* Mobil uyumlu hale getirme */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        margin: 5px 0;
    }

    .navbar-icons {
        flex-direction: column;
    }
}

/* Ekstra küçük cihazlar (telefonlar - 576px'den küçük) */
@media (max-width: 575.98px) {
    h5 {
        font-size: 24px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }
}


