/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header .logo {
    font-size: 0;
}

@font-face {
    font-family: 'ITF Devanagari Marathi';
    src: url('/font/itf-devanagari-marathi-medium.otf') format('otf');
}
/* General Styles */
body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header .logo img {
    max-height: 160px; /* Logo maksimum yüksekliği */
    width: auto; /* Genişlik otomatik ayarlansın */
    margin-top: 15px;
}

header {
    background: #ddd;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

header .logo {
    font-size: 30px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

.nav-links li {
    display: inline;
    margin-left: 40px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}


nav ul li a:hover {
    color: #007bff;
}

.contact-container {
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1000px;
}

.contact-form-container,
.map-container {
    flex: 1;
    margin: 10px;
}

.contact-form-container {
    max-width: 400px;
}

.contact-form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start */
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    padding: 10px 15px;
    margin-bottom: 15px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-container button[type="submit"] {
    display: block;
    margin: 0 auto;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container textarea:focus {
    border-color: #ff4b2b;
    box-shadow: 0 0 8px rgba(255, 75, 43, 0.1);
    outline: none;
}

.contact-form-container textarea {
    resize: none;
    height: 120px;
}

.map-container {
    margin-top: 60px; /* Adjust this value to move the map down */
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

.contact-info {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 15px;
    margin: 10px;
    display: flex;
    align-items: center;
    min-height: 150px;
    flex-direction: column; /* Stack icon and text vertically */
    text-align: center; /* Center text */
}

.contact-info img {
    margin-bottom: 10px; /* Add space between icon and text */
    height: 24px;
    width: 24px;
}

button[type="submit"] {
    padding: 10px 20px;
    background: #044f95;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, box-shadow 0.3s;
}

button[type="submit"]:hover {
    background: #c82333;
    box-shadow: 0 0 10px rgba(255, 75, 43, 0.2);
}

form {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        width: 100%;
    }

    .map-container {
        width: 100%;
        margin-bottom: 20px;
    }
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }

    .footer-links ul {
        flex-direction: column;
        align-items: left;
    }

    .footer-links {
        margin-right: 70%;
    }
    .footer-links li {
        margin: 10px 0;
    }
}

footer {
    background-color: #f8f8f8;
    padding: 10px 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    text-align: end; /* Center align text */
    flex: 1; /* Equal width distribution */
    font-size: small;
    order: 2; /* Place it at the end of the flex container */
}

.footer-links {
    text-align: left;
    flex: 1; /* Equal width distribution */
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Display items in a row */
}

.footer-links li {
    margin-right: 20px; /* Space between links */
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-links a:hover {
    color: #007bff;
}

.social-icons {
    text-align: left; /* Align icons to the left */
    margin-left: 20px; /* Add some margin for spacing */
}

.social-icons a {
    display: inline-block;
    margin-right: 10px; /* Space between icons */
}

.social-icons img {
    width: 40px; /* Increase icon size */
    height: auto;
}

.footer-login {
    text-align: right;
}

.transparent-btn {
    border: 2px solid transparent;
    background-color: transparent;
    color: #333;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.transparent-btn:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366; /* WhatsApp yeşili */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: transparent; /* Menü ikonunun rengi */
    margin: 4px 0;
}

/* Mobil uyumlu düzenlemeler */
@media (max-width: 768px) {
    /* Menü ikonu */
    .menu-icon {
        display: block; /* Menü ikonu mobilde görünür */
        font-size: 30px;
        cursor: pointer;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 20; /* Menü ikonunun üst üste binmemesi için */
        background-color: transparent; /* Arka plan rengi */
        padding: 10px; /* İkon etrafında boşluk bırakın */
        border-radius: 5px; /* Köşeleri yuvarlayın */
    }

    /* Menü */
    nav ul {
        display: none; /* Başlangıçta gizli */
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px; /* Menü yüksekliği kadar aşağıda */
        right: 0;
        background: rgba(0, 0, 0, 0.5); /* Hafif siyah şeffaf arka plan */
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    nav ul.show {
        display: flex; /* Menü görünür */
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }
    header .logo img {
        max-height: 160px;
        width: auto;
        margin-left: 50px;
    }
}
@media (min-width: 769px) {
    .menu-icon {
        display: none;
    }

}