body{ font-family: 'Open Sans', sans-serif; }

header { padding:20px 0; position: absolute; left: 0; right: 0; top: 0; z-index: 9;}
header .logo {
    max-width: 300px;
}
header .logo img {
    width: 100%;
    height: auto;
    display: block;
}

header .center { display: flex; justify-content: space-between; align-items: center; }
header nav ul {display: flex; list-style: none;align-items: center;}
header nav ul li a { color: #000; font-size: 16px; display: block;  padding: 10px 30px; font-weight: 600;}
header nav ul li a:hover { color: #666; }
header nav ul li:last-child a { background:#0097fe; color: #fff; border-radius: 3px;}
header nav ul li:last-child a:hover { background:#073656 ; }
header nav ul li:last-child small, .contact ul li:last-child small { display: block; }

.contact { background:; }
.contact ul { list-style: none; line-height: 20px;}
.contact ul li a { font-size: 16px; color: #666; display: inline-block; padding: 10px 20px; }
.contact ul li:last-child a { background:#0097fe; color: #fff; border-radius: 3px;}
.contact ul li:last-child a:hover { background: #073656; }

.box img { margin-bottom: 20px; }

.contact h2 { font-size: 44px; }

.home-about .center { max-width: 990px; }

.services { background: #f7f7f7; }

.slider { position: relative;overflow: hidden;}
.slider .owl-item.active span {-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;animation-name: fadeInDown;animation-delay: 0.2s;}
.slider .owl-item.active p { display:inline-block;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;animation-name: fadeInUp;animation-delay: 0.6s;}
.slider .owl-item.active .btn-green {-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;animation-name: fadeInUp;animation-delay: 1s;}
.slider .overlay { position: absolute; top: 0; left: 0; right: 0; bottom:0; background-image: linear-gradient(270deg, rgba(0,52,120,0.00) 1%, #003478 100%);}
.slider .overlay .center { display: flex; align-items: center; width: 100%; height: 100%; }
.slider .overlay span { font-size:50px; line-height:54px; color:#fff; font-weight: 700; margin-bottom: 10px; display: inline-block;font-family: 'Poppins', sans-serif; }
.slider .overlay span:before { content: attr(data-text); position: absolute; top: -50px; font-size: 12px; letter-spacing: 2px; font-weight: 500; }
.slider .overlay p { display: block; width: 100%; font-size: 16px; color: #fff; font-weight: 500;}
.slider .overlay i { font-style: normal; }
.slider .slide-content { max-width:720px; }
.slider .slide-image { text-align: center; }
.slider .owl-item.active .slide-image { text-align: center; display:inline-block;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;animation-name: fadeInRight;animation-delay: 0.3s;}
.slider .slide-content img { width: auto !important; display: inline-block !important;}
.slider .slide-content .btn { margin-top: 20px }
.slider .owl-theme .owl-nav { margin-top: 0 !important }
.slider .owl-theme .owl-dots .owl-dot { width: auto; }
.slider .owl-dots { position: absolute; top:0; height: 100%; align-items: center; display: inline-flex; left:20px; width: 10px; flex-direction: column; align-content: stretch; justify-content: center;}
.slider .owl-theme .owl-dots .owl-dot.active span, .slider .owl-theme .owl-dots .owl-dot:hover span { opacity: 1 !important }

/* Mobil ve tablet */
@media only screen and (max-width: 1249px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .box img { margin-bottom: 0; }
    .box { padding-bottom: 30px; }

    header .logo {
        max-width: 200px;
    }
    header .logo img {
        width: 100%;
        height: auto;
    }

    header nav ul li:last-child {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }
    header nav ul li:last-child a {
        border-radius: 0;
        padding: 20px;
        text-align: center;
    }
    header nav ul li:last-child strong {
        font-size: 24px;
    }
}
@media only screen and (max-width:375px) {
   
}
/* === Hamburger Menü Simgesi === */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: 100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    display: block;
}

/* === Mobil Görünümde Menü === */
@media only screen and (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    header nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }

    header nav.active {
        left: 0;
    }

    header nav ul {
        flex-direction: column;
        gap: 20px;
    }

    header nav ul li a {
        font-size: 20px;
        padding: 10px 20px;
    }

    header nav ul li:last-child {
        position: static;
    }

    header nav ul li:last-child a {
        font-size: 18px;
        border-radius: 5px;
        padding: 12px 24px;
    }

    header .center {
        justify-content: space-between;
    }
}
