﻿body {
    margin: 0;
    background-color: #f8f9fa;
    font-family: karla;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

.bgcolor-white {
    background-color: white;
}

.text-color-black
{
    color:black;
}


.text-header-link {
    
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 1px;
}


.nav-link {
    transition: all 0.3s;
}

    /* Varsayılan aktif stil */
    .nav-link.active-link {
      color:black;
        font-weight: bold;
    }

    .active-link {
        color: black;
        font-weight: bold;
    }

       

    /* Hover sırasında sadece hoverlanan link aktif stil alsın */
    .nav-link:hover {
       
        font-weight: bold;
    }

/* Tüm nav-link'ler arasında hover varsa .active-link devre dışı olsun */
nav:hover .nav-link.active-link {
    
    font-weight: normal;
  
}



.notblok {
    position: relative;
  
    min-height: 400px;
    padding: 20px;
    margin:20px;
    padding-left: 45px;
    background: #fff8b3;
    border: 1px solid #e6e600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /*  background-image: repeating-linear-gradient(to bottom, transparent 0px, transparent 23px, #e5e5e5 24px); */
    border-radius: 6px;
}

    /* Sol kırmızı çizgi */
    .notblok::before {
        content: '';
        position: absolute;
        top: 0;
        left: 40px;
        width: 2px;
        height: 100%;
        background: #d22;
        opacity: 0.3;
    }

/* Raptiye PNG */
.pin {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 40px;
    height: 40px;
    background: url('/img/raptiye.png') no-repeat center center;
   
    background-size: contain;
    pointer-events: none;
    z-index: 10;
}

.notayar
{
    padding-top:5px;
}

.note-baslik {
    font-weight: bold;
    font-size: 22px;
    text-align:center;
}

.notblok ul {
    margin-left:-30px;
}

.notblok ul li {
    display: block; /* default zaten block ama yazmak kesinlik için */
    width: 100%;
    box-sizing: border-box; /* padding varsa taşma olmasın */
}

.notblok ul li {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.4;
    padding: 4px 0;
    background-color: #ffffff61;
    margin: 4px;
}
.notblok .notayar ul li a {
    font-size: 18px;
    padding: 5px;
    line-height: 18px;
    display:block;
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: start;
    align-items: start;
}

.txtbaslik {
    
}
.circle-slice {
    width: 200px;
    height: 90px;
    background-color: #198754;
    border-bottom-left-radius: 400px;
    border-bottom-right-radius: 400px;
    top: 0;
    opacity: 0.08;
   
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-lg {
    width: 120px;
    height: 120px;
    margin-left: 20px;
}

.circle-md {
    width: 80px;
    height: 80px;
    margin-left: 50px;
    margin-top: -50px;
}

.circle-sm {
    width: 20px;
    height: 20px;
    margin-left: 50px;
    opacity: 0.5;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.bg-circle-1 {
    width: 250px;
    height: 250px;
    background-color: #4690fc;
    top: -20px;
    left: 100px;
}

.bg-circle-2 {
    width: 180px;
    height: 180px;
    background-color: #871919;
    bottom: -60px;
    right: 130px;
}

.bg-circle-3 {
    width: 90px;
    height: 90px;
   
    bottom: -14px;
    right: 50%;
}

.bg-circle-4 {
    width: 180px;
    height: 180px;
    
    bottom: -60px;
    right: 50%;
}
.bg-circle-5 {
    width: 360px;
    height: 360px;
    
    bottom: -60px;
    right: 50%;
}



.bglineer {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 40%, #f8f9fa 100%);
}

.circlecolor3 {
    background-color: #871919;
}


.circlecolor1 {
    background-color: #871919;
}


.circlecolor2 {
    background-color: #cdfd0d;
}
.topcustum
{
    top:-100px;
}
.drop-panel {
    position: fixed;
    top: 115px;
    left: 0;
    margin-left: 80px;
    width: 88%;
    height: auto;
    background-color: rgb(255 255 255);
    z-index: 9999;
    border-top: 4px solid #198754;
    border-bottom: 2px solid #eeeff0;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    visibility: hidden;
    background-color: #f8f9fa;
}

    .drop-panel.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

.triangle-up {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #198754;
    z-index: 10;
    filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.1));
}



.fs36 {
    font-size: 36px;
    font-weight: 600;
}

.fs32 {
    font-size: 32px;
    font-weight: 600;
}

.fs18 {
    font-size: 18px;
    font-weight: 400;
}

.liant {
    margin: 15px !important;
}

.cekicon {
    padding-left: 25px;
}

    .cekicon::before {
        content: "";
        position: absolute;
        border-color: black;
        border-style: solid;
        border-width: 0 0.3em 0.25em 0;
        height: 1em;
        top: 1.3em;
        left: 0.6em;
        margin-top: -.5em;
        transform: rotate(45deg);
        width: 0.5em;
    }

.leadx {
    font-size: 1.25rem;
}

ul, li {
    list-style: none;
    
}

li {
    padding: 10px;
}

.section-title {
    position: relative;
    padding: 10px 0 35px 0;
    text-align: center;
}

.text-primary {
    color: #33211d !important;
   
}
.pad20 {
    margin-bottom: 20px;
}

.newbox {
     background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
.h2, h2 {
    font-size: 2rem;
    font-weight: 700 !important;
}

.bgalice {
    background-color: #e9f4fb;
}

.refe{
    background-color:antiquewhite;
}

.hero-section {
    background-color: #f8f9fa;
 
    padding: 15px 0;
    text-align: center;
}

.bgduzelt {
    background-color: #f8f9fa;
}

    .hero-section h1 {
        font-weight: bold;
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
        color: #6c757d;
    }

.service-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
}

    .service-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 16px rgba(0,0,0,0.05);
        border-color: #0d6efd;
    }

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.menu-icon {
   
    padding:10px;
}


.mycard {
    min-height: 400px;
    border-radius: 10px;
    padding: 10px;
    border: solid 2px yellow;
}

.more {
    padding: 15px 15px;
    height: 40px;
    background-color: yellow;
    color: black;
    font-weight: 600;
    font-size: 22px;
    border-radius: 30px;
    text-align: center;
    display: flex;
    justify-content: center; /* yatay ortalama */
    align-items: center; /* dikey ortalama */
    cursor: pointer;
    border: none;
    line-height: normal;
}

    .more:hover, .mycard:hover {
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    }

.inline-blok {
    display: inline-block;
}
.fixed-col {
    width: 80px; /* sabit genişlik */
    
    padding: 10px;
    box-sizing: border-box;
}

.flexible-col {
    flex: 1; /* kalan alanı kapla */
    
    padding: 10px;
    box-sizing: border-box;
    text-align:start;
}
.w-200 {
    width: 200px;
}
.w-120 {
    width: 120px;
}
.pd-20
{
    padding-top:40px;
}
.btngiris:hover {
    background-color: #8cc63f;
}

.btngiris {
    background-color: #cacaca;
   
    border: solid 1px #e1e1e1;
}

footer {
   
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


.alt-cizgili {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.alt-cizgili::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: yellow;
    border-radius: 2px;
}

footer ul li {
    padding:2px;
}

footer ul li a
{
    color:white;
}

    footer ul li a:hover {
        color: azure;
    }

.overlay-top::before, .overlay-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    left: 0;
    z-index: 1
}

.whatsapp-float {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 8px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    font-size: 24px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
    .whatsapp-float:hover {
        background-color: #1ebd5a;
    }

.whatsapp-icon {
    display: inline-block;
}

.overlay-top::before {
    top: -1px;
    background: url(../img/overlay-top.png)
}
.mlast {
    min-height: 300px;
}

.more a
{
    font-size:20px;
}
a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

    a:hover {
        text-decoration: none;
        color: black;
    }

.anaekran {
    min-height: calc(100vh - 81px);
    
}



.faq-item {
    border-left: 4px solid #73e81a;
    background-color: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.sidebar-link {
    display: block;
    padding: 0.5rem 1rem;
    background-color: #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
}

    .sidebar-link:hover {
        background-color: #dee2e6;
    }

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
    background-color: #fafafa;
    padding:10px;
}

    .breadcrumb a {
        color: #333;
        text-decoration: none;
        position: relative;
    }

.news-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    padding: 20px;
    border-left: 4px solid #0d6efd;
}

    .news-card:hover {
        transform: translateY(-5px);
    }

.news-card-body {
    flex-grow: 1;
}

.news-date {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 10px;
}

.news-snippet {
    font-size: 15px;
    color: #333;
}

.news-footer {
    margin-top: 15px;
    text-align: right;
}

.read-more {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

    .read-more:hover {
        text-decoration: underline;
    }

.news-date-box {
    width: 60px;
    background-color: #e6515b;
    color: white;
    padding: 10px 5px;
    border-radius: 8px;
}

    .news-date-box .day {
        font-size: 22px;
        font-weight: bold;
    }

    .news-date-box .month {
        font-size: 14px;
    }

    .news-date-box .year {
        font-size: 12px;
    }

.news-row {
    padding-bottom: 15px;
    background-color: #afafaf0a;
}

.news-content-box a.btn {
    font-size: 13px;
    padding: 4px 12px;
}

#newsSlider {
    transition: transform 0.5s ease;
}

.separator {
    color: #aaa;
    font-size: 18px;
    user-select: none;
}

.custom-search .form-control,
.custom-search .btn {
    border-width: 1.5px;
    border-color: #ced4da;
    height: 36px;
}

    .custom-search .form-control:focus {
        box-shadow: none;
        border-color: #86b7fe;
    }

.custom-search .btn {
    padding-top: 5px;
    padding-bottom: 5px;
}

.siyahbeyaz {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

    .siyahbeyaz:hover {
        filter: grayscale(0%);
    }

.boyutlu {
    width: 120px;
    height: 120px;
    object-fit: contain; /* veya contain */
}

.line-effect {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #198754;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
}

.acilir.loading .line-effect {
    opacity: 1;
    width: 80px; /* Sağ ve sola genişleme */
    transition: width 1s ease;
}

.section-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
 
}

    .section-header h1 {
        font-size: 2.4rem;
        font-weight: bold;
    }

.service-sidebar ul {
    padding-left: 0;
    list-style: none;
}

.service-sidebar li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #0a58ca;
    border-bottom: solid 1px #dedede;
}




.service-sidebar a {
    text-decoration: none;
    color: #0d6efd;
    transition: color 0.2s;
    display: block;
}



.service-sidebar i {
    margin-right: 8px;
    text-align: center;
}

.service-sidebar .heading {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

    .service-sidebar .heading i {
        margin-right: 10px;
    }



.faq, .documents {
    background-color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.03);
}

ul.custom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.custom-menu li {
        border-bottom: 1px solid #dee2e6; /* gri alt çizgi */
        transition: background-color 0.3s;
    }

        ul.custom-menu li:hover {
            background-color: #f8f9fa; /* beyaz arkaplan */
        }

        ul.custom-menu li a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            transition: color 0.3s;
        }

            ul.custom-menu li a:hover {
                color: #145c32; /* daha koyu yeşil */
            }

.service-sidebar {
    
}

.cp {
    font-size: 1.2rem !important;
    color: black !important;
}
.mobilmenucolor {
    background-color: #198754;
    background-color: #f8f9fa;
}

p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #212529;
}

.text-surdurulebilirlik {
    color: #0a58ca;
}

.section-blog {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    height:150px;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: none; /* İsteğe bağlı: varsayılan kenarlığı korur */
}
header.fixed-top {
    position: sticky;
    top: 0;
    z-index: 999;
}
@font-face {
    font-family: karla;
    src: url(/fonts/Karla/Karla-Regular.ttf);
}

/* RESPONSIVE */




