body {
    font-family: poppins;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ekran yüksekliğini kaplar */
    margin: 0;
    /* Varsayılan boşlukları sıfırlar */
    padding-top: 5%;

}

@media screen and (max-width: 768px) {

    .hakkımızda,
    .markalarımız,
    .iletisim {
        padding-top: 70px;
    }
}

.carousel-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(90, 102, 129, 0.7), rgba(0, 26, 91, 0.7));
    z-index: 1;
}

.navbar {
    background-color: #fff;
}

.navbar .nav-link {
    color: #03254c;
}

@media (max-width: 768px) {
    .navbar {
        background-color: #03254c;
    }

    .navbar .nav-link {
        color: #fff;
    }

    .nav buttton {
        padding: 10px;
    }

    .navlogo {
        background-color: #03254c !important;
        width: 200px;
        height: 100px;
    }

    .navlogo img {
        padding-top: 10%;
    }

}

.navbar-brand img {
    max-width: 100%;
    height: auto;

}

.collapse {
    padding-left: 30px;
}

.navbar-nav .nav-link {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}


/* Carousel Ayarları */
.carousel-inner img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.carousel-caption {
    margin: 200px auto;
    color: white;
    z-index: 2;
}

.carousel-caption h5 {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.carousel-caption p {
    font-family: Poppins;
    font-size: 25px;
    font-weight: 300;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.carousel-indicators {
    padding-left: 65%;
    padding-bottom: 2%;

}


.carousel-indicators [data-bs-target] {

    width: 13px;
    height: 15px;
    background-color: white;
}

.carousel-indicators button.active {
    width: 22px;
    height: 25px;
    background-color: rgb(194, 194, 194);
}

@media screen and (max-width: 768px) {
    .carousel-indicators {
        display: none;
        /* İndikatörleri gizler */
    }

    .carousel-inner img {
        height: 600px;
        object-fit: cover;



    }

    .carousel-caption {
        margin: 200px auto;

    }

    .carousel-caption h5 {
        font-size: 25px;
        /* Daha küçük ekranlarda metin boyutunu küçült */
        line-height: 1.2;

    }

    .carousel-caption p {
        font-size: 17px;
        line-height: 1.2;
    }


}


/* Hakkımızda Start */

.hakkımızda {
    flex: 1;
    /* Geri kalan boşluğu doldurur */
}

.hakkımızda hr {
    border: none;
    background-color: rgb(0, 48, 102) !important;
    height: 5px;
    width: 10%;
    margin: 10px auto;
}

.container-fluid2 {
    font-family: poppins;
    display: flex;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
    flex-wrap: wrap;

}

.image-container {
    background-color: #03254c;
}

.image-container img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    height: 100%;

}



.justify-content-start {
    flex: 1;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .container-fluid2 {
        flex-direction: column;
        /* Tüm içerikleri alt alta diz */
        padding: 10px;
        /* İçerik kenar boşluklarını küçült */
        padding-bottom: 50px;
    }

    .justify-content-start {
        padding-left: 0;
        padding-top: 20px;
    }

    .justify-content-start p {
        font-size: 14px;
        /* Mobilde daha küçük metin */

    }

    .image-container img {
        max-width: 80%;
        /* Görseli küçült */
        margin: 0 auto;
        /* Ortala */
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .buttons button {
        font-size: 14px;
        /* Mobil için buton yazı boyutunu küçült */
        padding: 8px 10px;
        /* Buton iç boşluklarını azalt */
    }

    .hakkımızda .buttons {
        align-items: center;
    }
}

.justify-content-start p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
}

.buttons {
    gap: 20px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons .btn-primary {
    background-color: rgba(0, 26, 91, 1);
    color: #ffffff;
}

.buttons .btn-primary:hover {
    background-color: rgb(45, 61, 103);
}

.buttons .btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.buttons .btn-secondary:hover {
    background-color: #565e64;
}

.buttons a {
    color: white;
    text-decoration: none;
}


/* Hakkımızda End */

/* Markalarımız Start */

.markalarımız {
    background-color: #f7f7f7 !important;
    flex: 1;
    /* Geri kalan boşluğu doldurur */



}

.markalarımız hr {
    border: none;
    background-color: rgb(0, 48, 102) !important;
    height: 5px;
    width: 10%;
    margin: 0 auto;
}

.mheader {
    text-align: center;
    padding-top: 4%;
    font-weight: bold;
    font-family: sans-serif;

}

.container-fluid {
    padding-top: 10%;
    padding-bottom: 10%;
}



.container-fluid .col-6,
.col-lg-3,
.col-md-6 {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-fluid .col-6 img,
.col-lg-3 img,
.col-md-6 img {
    width: 60%;
}

 .modal-dialog {
    max-width: 800px;
    width: 800px;
    height: 800px;
}
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .modal-dialog {
        max-width: 600px;
        width: 90%;
        height: 600px;
    }
    .modal-header img{
        padding-left: 0 !important;
    }
}

/* Mobil (576px ve altı) */
@media (max-width: 576px) {
    .modal-dialog {
        justify-content: center;
        max-width: 100%;
        width: 97%;
        height: auto; /* Yükseklik içeriğe göre ayarlanır */
       
    }

    .modal-content {
        height: auto; /* İçerik için uygun yükseklik */
    }
    .modal-header img{
        padding-left: 0 !important ;
    }
    
}








.modal-header img {
    width: 700px;
    height: 64px;
    padding-left: 80px;
}

.modal-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .row img {
        height: 150px;
        width: 800px;
    }
}

.custom-btn {
    background-color: #03254c !important;  /* Arka plan rengi */
    color: white; /* Yazı rengini beyaz yap */
    border: none; /* Çerçeveyi kaldır */
}

.custom-btn:hover {
    background-color: rgb(45, 61, 103) !important; 
    color: white !important;


}

.text-center{
    margin-bottom: 20px;
}

.text-center p{
    background-color: #03254c !important;  
    color: white; 
    font-size: 20px;
    border-radius: 5px;
    display: inline;
    padding: 10px;
    

}



/* Markalarımız End */

.iletisim {
    margin: 0;
    text-align: center;
    flex: 1;
    /* Geri kalan boşluğu doldurur */

}



.iletisim hr {
    border: none;
    background-color: rgb(0, 48, 102) !important;
    height: 5px;
    width: 10%;
    margin: 0 auto;
}

.container-fluid3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iletisimcontainer {
    padding: 7%;
    width: 100%;
    flex-wrap: wrap;
    word-wrap: break-word;
}

.container-fluid3 hr {
    width: 2px;
    height: 100px;
    background-color: black;
    border: none;
}

@media screen and (max-width: 768px) {
    .container-fluid3 {
        flex-direction: column;
        /* Flex öğeleri dikey hizalar */
    }

    .iletisimcontainer {
        width: 100%;
        /* Tüm genişliği kaplar */
        padding: 5%;
        /* Kenar boşluğu ayarlanabilir */
    }

    .container-fluid3 hr {
        width: 41%;
        /* Ayracı daraltır */
        height: 1px;
        /* Yatay ayracı küçültür */
        margin: 10px auto;
        /* Ortalar */
    }
}

/* Footer Start */

footer {

    background-color: rgb(3 37 76);

}

footer .nav {
    font-size: 20px;
    gap: 10px;
    padding-right: 100px;
}

.nav .nav-link {
    color: white !important;

}

footer span {
    color: white !important;
    padding-left: 3%;
    font-size: 15px;
}

footer hr {
    height: 2px;
    color: white !important;
}


@media screen and (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer .d-flex {
        flex-direction: column;
        /* Mobilde alt alta yerleştirir */
        align-items: center;
        /* Mobilde ortalar */
    }



    footer .nav {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0;
    }


    footer .col-md-4 {
        width: 100%;
        /* Mobil için logo boyutu */
        align-items: center;
        justify-content: center;
    }

    footer span {
        font-size: 12px;
    }

    footer .nav-item {
        font-size: 15px;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        background-color: #03254c;
    }

    .navbar .nav-link {
        color: #fff;
    }

    .nav buttton {
        padding: 10px;
    }

    .navlogo {
        background-color: #03254c !important;
        width: 200px;
        height: 100px;
    }

    .navlogo img {
        padding-top: 10%;
    }

    .carousel-indicators {
        display: none;
        /* İndikatörleri gizler */
    }

    .carousel-inner img {
        height: 600px;


    }

    .carousel-caption {
        margin: 200px auto;

    }

    .carousel-caption h5 {
        font-size: 25px;
        /* Daha küçük ekranlarda metin boyutunu küçült */
        line-height: 1.2;

    }

    .carousel-caption p {
        font-size: 17px;
        line-height: 1.2;
    }

    .container-fluid2 {
        flex-direction: column;
        /* Tüm içerikleri alt alta diz */
        padding: 10px;
        /* İçerik kenar boşluklarını küçült */
        padding-bottom: 50px;
    }

    .justify-content-start {
        padding-left: 0;
        padding-top: 20px;
    }

    .justify-content-start p {
        font-size: 18px;
        /* Mobilde daha küçük metin */

    }

    .image-container img {
        max-width: 80%;
        /* Görseli küçült */
        margin: 0 auto;
        /* Ortala */
        margin-bottom: 20px;
        height: 150px;
    }

    .buttons button {
        font-size: 18px;
        /* Mobil için buton yazı boyutunu küçült */
        padding: 8px 10px;
        /* Buton iç boşluklarını azalt */
    }

    .hakkımızda .buttons {
        align-items: center;
    }

    footer {
        text-align: center;
    }

    footer .d-flex {
        flex-direction: column;
        /* Mobilde alt alta yerleştirir */
        align-items: center;
        /* Mobilde ortalar */
    }



    footer .nav {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0;
    }


    footer .col-md-4 {
        width: 100%;
        /* Mobil için logo boyutu */
        align-items: center;
        justify-content: center;
    }

    footer span {
        font-size: 12px;
    }

    footer .nav-item {
        font-size: 20px;
    }

}

/* Animasyon tanımı */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container-fluid {
    opacity: 0;
    /* Başlangıçta görünmez */
    animation: fadeInUp 2s ease-in-out forwards;
    /* Animasyon uygula */
}


.container-fluid .col-6 {

    transition: transform 0.5s ease;
    /* Hover efekti için */
}



/* Hover efekti */
.container-fluid .col-6:hover {
    transform: scale(1.2);
}