*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* HEADER */

.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:20px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

.logo img{
    width:55px;
    height:55px;
}

.menu{
    display:flex;
    list-style:none;
    gap:40px;
}

.menu a{
    color:#01428e;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
    position:relative;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;

    width:0;
    height:2px;
    background:#00d9ff;

    transition:.3s;
}

.menu a:hover{
    color:#00d9ff;
}

.menu a:hover::after{
    width:100%;
}

.btn-teklif{
    padding:12px 25px;
    background:#00d9ff;
    color:#000;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn-teklif:hover{
    transform:translateY(-3px);
}
/*banka bilgileri için */
/* =========================
   Genel
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fb;
    color:#333;
}

/* =========================
   Header
========================= */

.header{
    height:80px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 70px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    width:60px;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#0d6efd;
}

.btn-teklif{
    text-decoration:none;
    background:#0d6efd;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    transition:.3s;
}

.btn-teklif:hover{
    background:#084298;
}

/* =========================
   İç Sayfa
========================= */

.inner-page{
    width:100%;
    padding:60px 0;
}

.row{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.page-content{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* =========================
   Başlıklar
========================= */

.page-content h3{
    margin-bottom:20px;
    color:#0d6efd;
    font-size:24px;
}

/* =========================
   Banka Kartı
========================= */

.item-banka{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px;

    border:1px solid #e5e5e5;
    border-radius:10px;

    transition:.3s;
}

.item-banka:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.item-banka ul{

    list-style:none;
    width:70%;

}

.item-banka li{

    padding:10px 0;

    border-bottom:1px solid #ececec;

}

.item-banka li:last-child{

    border:none;

}

.item-banka span{

    font-size:16px;

    font-weight:600;

}

/* =========================
   Logo
========================= */

.item-banka .logo{

    width:180px;
    text-align:center;

}

.item-banka .logo img{

    width:120px;
    max-width:100%;

}

/* =========================
   Ayraç
========================= */

hr{

    margin:40px 0;
    border:none;
    border-top:1px solid #ddd;

}

/* =========================
   Responsive
========================= */

@media(max-width:768px){

    .header{

        flex-direction:column;
        height:auto;
        padding:20px;

    }

    .menu{

        flex-direction:column;
        margin:20px 0;
        gap:15px;

    }

    .item-banka{

        flex-direction:column;
        text-align:center;

    }

    .item-banka ul{

        width:100%;
        margin-bottom:25px;

    }

}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}.page-content{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-left:80px;   /* Soldan boşluk */
}
/*
*/
.loading-text{
    color:#fff;
    font-size:15px;
    font-weight:bold;
    
}

.dots span{
    opacity:0;
    animation:blink 1.5s infinite;
}

.dots span:nth-child(1){
    animation-delay:0s;
}

.dots span:nth-child(2){
    animation-delay:.3s;
}

.dots span:nth-child(3){
    animation-delay:.6s;
}

@keyframes blink{

    0%,20%{
        opacity:0;
    }

    40%,100%{
        opacity:1;
    }

}
/*====================
        Mobil Uyumlu
======================*/
  /* Loading */

@media screen and (max-width:768px){

    .loading-text{
        font-size:28px !important;
    }

}
@media screen and (max-width:768px){

    .hero-overlay .loading-text{
        font-size:28px;
    }

}