/* :root - Global Değişkenler */
:root {
    --primary-color: #1A2A49; /* Ana renk */
    --secondary-color: #CA2528; /* İkincil renk */
    --font-size-base: 16px; /* Temel yazı boyutu */
    --font-family: "Poppins", serif; /* Yazı tipi */
    --font-weight: 400;
    --max-width: 1200px; /* Maksimum genişlik */
}

/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, textarea {
    font: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}
@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

/* body - Genel Stil */
body {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--primary-color);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
p {
    margin-bottom: 10px;
    line-height: 2em;
}
header{
    width: 100%;
    height:auto;
    color: var(--primary-color);
    padding: 10px 0;
}
h1{
    font-size: 61px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
h2{
    font-size: 45px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
h3{
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
h4{
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
h5{
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
h6{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
.btn-green{
    background-color: #05B193;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;

}
.btn-green:hover{
    background-color: #068a74;

}
.btn-dark-blue{
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;

}
.btn-dark-blue:hover{
    background-color: #068a74;

}
.btn-dark-blue img{
    width: 39px;
    height:29px;
    display:inline-block;
    vertical-align: middle;

}
.btn-white{
    background-color:transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;

}
.logo{
    margin-top: 15px;
}

.language a{
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size:16px;
    background-color: #f5f5f5;
    color: #fff;
}

.language a:hover{
    background-color:  var(--secondary-color);
}

.language a.active{
    background-color:  var(--secondary-color);
}


.social a{
    display: inline-block;
    margin: 0 2px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.social a:hover{
    background-color: var(--secondary-color);
    color: #fff;
}

nav {
    position: fixed;
    width: 100%;
    margin: 0 auto;
}
main {
    width: 100%;
}
main .cta{
    padding-top:85px;
    padding-bottom:85px;
}
.cta-cards{
    width: 325px;
    height:100%;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
    padding:15px;
    text-align: left !important;
}
.cta-cards img{
    height:45px;
    width: auto;
    margin-bottom: 20px;
}
.cta-cards h3{
    text-align: left !important;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.cta-cards p{
    font-size: 11px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
main .cta-dark{
    background-color: var(--primary-color);
    padding-top:85px;
    padding-bottom:0;
    color:#fff !important;
}

main .cta-light{
    background-color: #F4F1ED;
    padding-top:85px;
    padding-bottom:85px;
    color:var(--primary-color);
}


.cta-dark h1{
    color:#fff !important;
}

.cta-dark h2{
    color:#fff !important;
}
.cta-dark img{
    margin: auto;
}
.owl-carousel .nav-btn{
    height: 47px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: 100px !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 0.2;
}

.owl-carousel .prev-slide{
    background: url(../images/arrow-left.svg) no-repeat scroll 0 0;
    left: -33px;
}
.owl-carousel .next-slide{
    background: url(../images/arrow-right.svg) no-repeat scroll -24px 0px;
    right: -33px;
}


.borderRightBold{
    border-right: 10px solid var(--secondary-color);
    padding-left: 20px;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-title-content{
    padding-top: 10px;
    padding-bottom: 70px;
    text-align: center;
    color:var(--primary-color);
}
.blog-main .card{
    border: 1px solid #fff;
    border-radius: 0px;
    margin-bottom: 20px;
    background-color: transparent !important;
    -webkit-box-shadow: 2px 2px 12px 4px rgba(0,0,0,0.35);
    -moz-box-shadow: 2px 2px 12px 4px rgba(0,0,0,0.35);
    box-shadow: 2px 2px 12px 4px rgba(0,0,0,0.35);
}

.blog-main .card .card-body{
    background-color: transparent !important;
}

footer{
    width: 100%;
    height: auto;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding-top:100px;
}

.copyright{
    background-color: #353535;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}


.callus-form input, .callus-form textarea, .callus-form select{
    width: 100%;
    padding: 20px 5px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
}


#contact-form input, #contact-form textarea, #contact-form select{
    width: 100%;
    padding: 20px 5px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
}


.callus-form input::placeholder, .callus-form textarea::placeholder, .callus-form select::placeholder{
    color: var(--primary-color);
    font-weight: 600;
}

#contact-form input::placeholder, #contact-form textarea::placeholder, #contact-form select::placeholder{
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    body {
        padding: 0 20px; /* Küçük ekranlarda yatay boşluk */
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 14px; /* Daha küçük yazı boyutu */
    }
    body {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
        padding: 0 10px; /* Daha az boşluk */
    }
}