body {
    margin: 0px;
    font-family: "Poppins", sans-serif !important;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75px;
    background-color: #2b0653;
}
h1 {
    color: #2b0653 !important;
}

.navBarIcon {
    position: absolute;
    left: 75px;
    height: 100%;
    display: flex;
    align-items: center;
}

    .navBarIcon img {
        height: 40px;
        width: auto;
    }

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 15vw;
    height: 100vh;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
}

    .menu.open {
        transform: translateX(0);
    }

    .menu.open {
        left: 0;
    }

    .menu a {
        display: block;
        margin: 20px 0;
        padding-top: 20px;
        text-decoration: none;
        color: #000;
        font-size: 18px;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .menu a:hover {
            color: #d32f2f;
        }

.navBarIcon img {
    cursor: pointer;
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

    .navBarIcon img:hover {
        transform: scale(1.1);
    }

.menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.containerMenu {
    margin-top: 75px;
}

.menu .close-btn:hover {
    color: #d32f2f;
}

.kayraOcalImg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .kayraOcalImg img {
        height: 70px;
        width: auto;
        object-fit: contain;
    }

/* Form stilini özelleştir */
form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form gruplarını düzenle */
.form-group {
    margin-bottom: 20px;
}
.container h1{
    margin-top: 50px;
    text-align:center;
}
/* Etiket stilini özelleştir */
label {
    font-size: 16px;
    
    color: #2b0653; /* Özel renk */
}

/* Input alanları */
input[type="text"],
input[type="email"],
input[type="phone"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

    /* Input alanlarına odaklanma (focus) */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="phone"]:focus {
        border-color: #2b0653; /* Özel renk */
        outline: none;
    }

/* Gönder butonunu özelleştir */
button[type="submit"] {
    background-color: #2b0653; /* Özel renk */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    /* Buton hover etkisi */
    button[type="submit"]:hover {
        background-color: #4e0d76; /* Hover rengi */
    }

/* Bilgilendirme mesajını stilize et */
.alert {
    background-color: #2b0653;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}


/*footer cssi*/
.footer {
    background-color: #2b0653;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 200px;
}

.footerContent {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footerLogo img {
    height: 50px;
}

.footerLinks ul {
    list-style: none;
    padding: 0;
}

    .footerLinks ul li {
        margin: 10px 0;
    }

        .footerLinks ul li a {
            color: white;
            text-decoration: none;
        }

            .footerLinks ul li a:hover {
                text-decoration: underline;
            }

.footerSocial a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

    .footerSocial a:hover {
        text-decoration: underline;
    }



@media (min-width: 769px) {
    .navBarIcon {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .navBarIcon {
        
        left: 20px;
    }

        .navBarIcon img {
            width: 32px;
        }

    .kayraOcalImg img {
        height: 60px;
    }

    .menu {
        width: 100%;
    }

        .menu a {
            font-size: 16px;
        }

    .containerMenu {
        text-align: center;
    }
}


