body{
    font-family: "Public Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    overflow-x: hidden;

}

body a{
    text-decoration: none;
    color: inherit;
}
body a:hover{
    color: rgb(81, 81, 81);
}





.page-loader{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.85);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity .2s ease;

    z-index: 99999;
}

.page-loader.active{
    opacity: 1;
    visibility: visible;
}

.loader-spinner{
    width: 60px;
    height: 60px;

    border: 4px solid rgba(255,255,255,.15);
    border-top: 4px solid white;

    border-radius: 50%;

    animation: spin .8s linear infinite;
}

@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}






.navigationb{
    background-color: #15191c;
    color: white !important;
}
.nav-link{
    color: white !important;
    font-size: 14px !important;
    font-weight: 600;
}

.wp-btn{
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* ANA SAYFA BAŞLIYOR (İNDEX) */

.main{
    position: relative;
}
.main::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    /* Sağ ve soldan gece mavisi karartma */
    background:
        linear-gradient(
            to right,

            rgba(2, 8, 25, 0.99) 0%,
            rgba(4, 12, 35, 0.99) 18%,
            rgba(8, 18, 45, 0.85) 50%,
            rgba(4, 12, 35, 0.45) 82%,
            rgba(2, 8, 25, 0.4) 100%
        );


}
.mh{
    object-fit: cover;
    height: 630px;
    width: 100%;
}
.welcome-text{
    width: 95%;
    position: absolute;
    top: 10%;
    left: 5%;
    color: white;
    z-index: 2;
    font-weight: 350;
    font-size: 70px;
    letter-spacing: -3px;
}
.welcome-text-two{
    width: 700px;
    position: absolute;
    top: 25%;
    left: 5%;
    color: white;
    z-index: 2;
    font-weight: 700;
    font-size: 80px;
    letter-spacing: -3px;
}
.welcome-text-two-kurumsal{
    top: 22%;
    width: 770px;
    font-size: 60px;
}
.highlight{
     color: #0034cf;

}
.welcome-text-under{
    width: 25%;
    position: absolute;
    top: 44%;
    left: 5%;
    color: white;
    font-size: 15px;
    font-weight: 350;
    z-index: 2;
}
.welcome-text-under p{
    margin: 0%;
}
.welcome-btn{
    position: absolute;
    top: 55%;
    left: 5%;
    z-index: 2;

}
.welcome-btn .btn{
    font-size: 13px;
    font-weight: 600;
    border-radius: 0%;
}
.btn-product{
    transition: all 0.25s ease !important;
}
.arrow-chevron{
    display: inline-block;
    transform: translateX(0);
    transition: all 0.3s ease;
}
.btn-product:hover .arrow-chevron{
    transform: translateX(5px);
    transition: all 0.3s ease;
}
.btn-d{
    width: 200px;
    border: 1px solid !important;
    color: white !important;
    background-color: transparent;
    transition: all 0.25s ease !important;
}
.btn-d:hover , .btn-product:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.welcome-info-case{
    position: absolute;
    display: flex;
    bottom: 0%;
    left: 5%;
    z-index: 2;
    background-color: rgba(21, 25, 28, 0.85);
    opacity: 1;
    border-radius: 5px;
    color: white;
    padding: 8px;
}
.welcome-info-box{
    display: flex;
    align-items: center;
    border-right: 1px solid rgb(96, 96, 96);
    padding: 10px;
    font-size: 30px;

}
.last{
    border: none !important;
}
.info-box-in{
    display: block;

}
.info-box-in-first{
    color: white !important;
    font-weight: 600;
    font-size: 10px;

}
.info-box-in-second{
    font-weight: 400;
    font-size: 10px;
    opacity: 0.8;

}
.info-box-in-second p {
    margin: 0%;
}

/* İNDEX RESPONSİVE KISMI BAŞLANGIÇ */

/* 1200px için */
@media (min-width: 769px) and (max-width:1286px){
    .mh {
        height: 600px;
        object-fit: cover;
    }
    .main {
        display: flex;
        flex-direction: column;
    }

    /* Yazıların boyutlarını ekrana göre ölçeklendiriyoruz */
    .welcome-text {
        top: 10%;
    }
    .welcome-text-kurumsal{
        top: 13%;
    }
    .welcome-text-two {
        width: 60vw;
        top: 29%;
        line-height: 1;
    }
    .welcome-text-two-kurumsal{
        width: 60vw;
        top: 26%;
        line-height: 1;
    }
    .welcome-text-under {
        font-size: 13px;
        width: 35vw;
        top: 48%;
    }

    .welcome-btn {
        top: 60%;
    }

    /* Alt bilgi kutularını esnek hale getirip tam yayıyoruz */
    .welcome-info-case {
        left: 5%;
        right: 5%;
        bottom: 0%;
        display: flex;
        justify-content: space-around; /* Kutuları eşit dağıtır */
        padding: 1vw;
    }

    .welcome-info-box {
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 10px;
        justify-content: center;
        font-size: 1.8vw; /* İkon boyutu */
    }

    .info-box-in-first {
        font-size: 0.8vw;
    }

    .info-box-in-second {
        font-size: 0.75vw;
    }
}
/* 768px için */
@media (max-width: 768px) {
    /* Görsel yüksekliğini mobilde sabitliyoruz ki içerik sığsın */
    .mh {
        height: 700px;
        object-fit: cover;
    }

    .welcome-text {
        font-size: 45px;
        top: 8%;
    }

    .welcome-text-two {
        font-size: 50px;
        width: 50%;
        display: flex;
        flex-direction: column;
        top: 15%;
    }
    .welcome-text-two-kurumsal{
        width: 75%;
        line-height: 90%;
        top: 17%;
        
    }
    .highlight{
        width: 50%;

    }
    .highlight-two{
        width: 50%;
        margin-top: -20px;
    }

    .welcome-text-under {
        width: 85%;
        top: 32%;
        font-size: 14px;
    }

    .welcome-btn {
        top: 45%;
        display: flex;
        flex-direction: column; /* Butonlar alt alta */
        gap: 10px;
        width: 90%;
    }
    .btn-product{
        width: 50%;
    }
    .btn-d{
        width: 60%;
    }
    .welcome-btn .btn {
        margin-right: 0 !important;
    }

    /* Alt bilgi kutularını görseldeki gibi 2x2 yapıyoruz */
    .welcome-info-case {
        bottom: 0%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background-color: rgba(21, 25, 28, 0.95);
        width: 90%;
        left: 5%;
    }

    .welcome-info-box {
        border-right: none !important;
        border-bottom: 1px solid rgb(96, 96, 96);
        padding: 10px;
    }

    /* Son iki kutunun alt çizgisini kaldır */
    .welcome-info-box:nth-child(3),
    .welcome-info-box:nth-child(4) {
        border-bottom: none;
    }

    .info-box-in-first {
        font-size: 9px;
    }

    .info-box-in-second {
        font-size: 9px;
    }
}
/* 480px için */
@media (max-width: 480px) {
    .logo{
        width: 200px;
        height: 60px;
    }
    .welcome-text{
        font-size: 40px;
    }
    .welcome-text-two {
        font-size: 45px;
    }
    .welcome-text-two-kurumsal{
        font-size:40px ;
    }
    .welcome-info-case {
        grid-template-columns: 1fr 1fr;
        padding: 5px;
    }

    .info-box-in-first {
        font-size: 8px;
    }
}
/* İNDEX RESPONSİVE KISMI BİTİŞ VE MAİN BİTİŞ */
/* CONTENT CARDS BAŞLIYOR */
.head-text-case{
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin: 30px 0 20px 0 ;
}
.head-text{
    display: flex;
    align-items: center;
    justify-content: center;
}
.head-text::after{
    content: "";
    margin-top: 20px;
    position: absolute;
    width: 60px;
    height: 2px;
    background: #0034cf;
}
.content-case{
    display: grid;
    grid-template-columns: repeat(5, 270px);
    justify-content: center;
    gap: 10px;
    margin: 50px 0 50px 0 ;
    padding: 10px;
    width: 100%;
}
.content-box{
    border: 2px solid rgb(172, 172, 172 , 0.2);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transition: all 0.25s ease ;
}
.content-box:hover{
    transform: translateY(-4px);
}
.cb-in-case{
    display: flex;
    flex-direction: column;
}
.cb-in img{
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 3px 3px 0 0px;
}
.cb-in-bottom-head{
    font-size: 12px;
    font-weight: 700;
}
.cb-in-bottom-head p{
    margin: 0%;
}
.cb-in-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.content-box:hover .cb-in-bottom-arrow{
    transform: translateX(10px);
}
.cb-in-bottom-arrow{
    transition: all 0.3s ease;
    transform: translateX(0px);
}
/* CONTENT CARDS RESPONSİVE KISMI */
@media (max-width: 1286px){
    .content-case{
        grid-template-columns: repeat(4, 270px);
    }
}
@media  (max-width: 1120px){
    .content-case{
        grid-template-columns: repeat(3, 270px);
    }
}
@media (max-width: 900px){
    .content-case{
        grid-template-columns: repeat(2, 270px);
    }
}

@media (max-width: 600px){
    .content-case{
        grid-template-columns: repeat(2, 160px);
        padding: 10px 0;
    }
}
/* CONTENT CARDS BİTİŞ */

/* FOOTER BAŞLANGIÇ */
.footer-case{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.footer-box-top{
    display: flex;
    border-bottom: 2px solid rgb(81, 81, 81 , 0.85);
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    background-color: #15191c;
}

.fbt-in-one{
    padding: 10px;
    font-size: 16px;
    font-weight: 650;
}
.fbt-in-one p , .fbt-in-three p{
    margin: 0%;
}
.fbt-in-one small{
    font-size: 12px;
    opacity: 0.8;
}
.fbt-in-two{
    display: flex;
    align-items:center ;
    justify-content: center;
    border-left: 2px solid rgb(81, 81, 81 , 0.85);
}
.footer-about{
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: 600;
    padding: 10px;
    display: flex;
}
.footer-about-icon{
    margin-right: 20px;
}
.footer-about-p-one{
    margin-bottom: -25px !important;
}
.footer-about-p-two{
    margin-top: -25px !important;
}
.footer-about p {
    font-size: 30px;
    margin: 0%;
}
.footer-about small{
    font-size: 11px;
    opacity: 0.8;
}
.fbt-in-three{
    display: flex;
    background-color: #223c89;
    width: 25%;
    height: 135px;
    margin-right: -31px;
    padding: 20px 0 2px 20px;
    font-size: 15px;
    font-weight: 650;
}

.fbt-in-three small{
    font-size: 12px;
    opacity: 0.9;
}
.fbt-in-three .btn{
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 0%;
}
.fbtit-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    margin-top: -20px;
    font-size: 40px;
}
.footer-box-lower{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background-color: #15191c;
    padding: 20px 0 0 0; 

}
.footer-case ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-logo{
    width: 20%;
}
.fast-links{
    display: flex;
    justify-content: space-between;
    width: 52%;
}
.fast-links p {
    font-size: 14px;
    font-weight: 650;
    margin: 0%;
}
.fast-links small{
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}
.social-media{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 20%;
    padding: 10px;
    border-left: 2px solid rgb(81, 81, 81 , 0.85);
}
.social-media p{
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px 0  ;
}


.social-btn{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* SMOOTH ANİMASYON */
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

.social-btn i{
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* hover büyüme (kasma fix) */
.social-btn:hover{
    transform: translateY(-2px) scale(1.12);
}

/* 🔥 SHINE EFFECT (içeriden geçen ışık) */
.social-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transition: left 0.7s ease;
}

.social-btn:hover::before{
    left: 120%;
}

/* INSTAGRAM */
.social-btn.insta:hover{
    border-color: rgba(255, 0, 150, 0.5);
    box-shadow: 0 0 18px rgba(255, 0, 150, 0.25);
}

/* LINKEDIN */
.social-btn.linkedin:hover{
    border-color: rgba(0, 119, 181, 0.5);
    box-shadow: 0 0 18px rgba(0, 119, 181, 0.25);
}

/* WHATSAPP */
.social-btn.whatsapp:hover{
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.25);
}


.footer-copyright{
    border-top: 2px solid rgb(81, 81, 81 , 0.85);
    padding: 10px;
    font-size: 12px;
    text-align: center;
    width: 100%;
    background-color: #15191c;
    color: white;
}
.footer-copyright a{
    text-decoration: underline;
}
@media (min-width:1201px) and (max-width:1286px) {
    .fbt-in-three{
        width: 27%;
        padding: 20px;
    }
    .fbt-in-three small{
        font-size: x-small;
    }
    .fbtit-icon{
        margin-left: 30px;
    }
}
@media (max-width: 1200px) {

    .footer-box-top{
        flex-direction: column;
        text-align: center;
    }

    .fbt-in-two{
        border-left: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fbt-in-three{
        text-align: start;
        width: 350px;
        margin-right: 0;
        
    }
}

@media (max-width: 992px) {

    .fbt-in-three{
        text-align: start;
        width: 350px;
        margin-right: 0;
        padding: 10px 0 0 20px;
        
    }
    .fbt-in-three .btn{
        width: 150px;

        margin-top: 15px;
    }
    .fbt-in-three small{
        font-size: 11px;
        
    }
    .footer-box-lower{
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .footer-logo{
        width: 100%;
    }

    .fast-links{
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .social-media{
        width: 100%;
        border-left: none;
        border-top: 2px solid rgb(81, 81, 81 , 0.85);
    }
}

@media (max-width: 576px) {

    .footer-about{
        font-size: 28px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .footer-about-icon{
        margin-right: 0% ;
    }
    .footer-about-p-one{
        margin-bottom: 0% !important;
    }
    .footer-about-p-two{
        margin-top: 0% !important;
    }
    .footer-about p{
        font-size: 22px;
    }

    .fbt-in-one{
        font-size: 14px;
    }

    .fbt-in-three{
        text-align: start;
        width: 320px;
        margin-right: 0;
        padding: 10px 0 0 20px;
        
    }
    .fbt-in-three .btn{
        width: 150px;

        margin-top: 10px;
    }
    .fbt-in-three p{
        font-size: 13px;
    }
    .fbtit-icon{
        margin-left: 20px;
    }
    .fbt-in-three small{
        font-size: 11px;
        
    }
    .fast-links{
        flex-direction: column;
        align-items: center;
    }
}

/* FOOTER BİTİŞ */

/* PENBAZAAR BAŞLANGIÇ */
.pb-ads{
    position: relative;
    overflow: hidden;

    padding: 10px 0;

    background:
        radial-gradient(circle at 85% 20%,
        rgba(0,102,255,.18),
        transparent 35%),

        radial-gradient(circle at 15% 80%,
        rgba(0,102,255,.12),
        transparent 40%),

        linear-gradient(
        135deg,
        #010815 0%,
        #02142d 30%,
        #041f47 60%,
        #010815 100%);
}
.pb-ads::before{
    content:"";

    position:absolute;
    inset:0;

    background:

    linear-gradient(
        140deg,
        transparent 0%,
        transparent 35%,
        rgba(255,255,255,.04) 35.3%,
        transparent 36%
    ),

    linear-gradient(
        130deg,
        transparent 0%,
        transparent 58%,
        rgba(255,255,255,.03) 58.3%,
        transparent 59%
    ),

    linear-gradient(
        120deg,
        transparent 0%,
        transparent 75%,
        rgba(255,255,255,.04) 75.3%,
        transparent 76%
    ),

    linear-gradient(
        -140deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,.03) 40.3%,
        transparent 41%
    );

    pointer-events:none;
}   
.pb-ads::after{
    content:"";

    position:absolute;

    width:120%;
    height:120%;

    left:-10%;
    top:-10%;

    background:

    linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,.025) 40%,
        rgba(255,255,255,.025) 60%,
        transparent 60%
    ),

    linear-gradient(
        45deg,
        transparent 0%,
        transparent 55%,
        rgba(255,255,255,.02) 55%,
        rgba(255,255,255,.02) 70%,
        transparent 70%
    );

    pointer-events:none;
}
.pb-left{
    display: flex;
    justify-content: center;
    position: relative;
    width: 50%;
    min-width: 0;
}

.pb-comp{
    width: 90%;
    display: block;
    position: relative;
    z-index: 1;
}

.pb-phone{
    position: absolute;

    right: -90px;
    bottom: 40px;

    width: 35%;

    z-index: 2;
}

.pb-container{
    max-width: 1400px;
    margin: 0 auto;

    padding: 70px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.pb-right{
    width: 45%;
    color: white;
}

.pb-subtitle{
    color: #3c8cff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pb-title{
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin: 15px 0 25px;
}

.pb-title span{
    color: #fc552e;
}

.pb-description{
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
}
.btn-pb{
    font-weight: 600 !important;
    width: 50%;
    color: white !important;
    border: 1px solid !important;
    border-radius: 0% !important;
}
.btn-pb-arrow{
    display: inline-block;
    transition: transform .3s ease;
}

.btn-pb:hover .btn-pb-arrow , .btn-hk-act:hover .btn-pb-arrow{
    transform: translateX(10px);
}

@media(max-width:992px){

    .pb-container{
        flex-direction: column;
        text-align: center;
    }

    .pb-left{
        width: 100%;
        max-width: 700px;
    }

    .pb-right{
        width: 100%;
    }

}

@media(max-width:768px){

    .pb-phone{
        width: 25%;
        right: 0;
        bottom: 20px;
    }

    .pb-title{
        font-size: 48px;
    }

    .pb-description{
        font-size: 18px;
    }

}
/* PENBAZAAR BİTİŞ */

/* NEWS BAŞLANGIÇ */

.news-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0 50px 0 ;
    width: 100%;
}
.news-case{
    padding: 5px;
    display: flex;
    gap: 20px;
    border: 2px solid rgba(172, 172, 172, 0.2);
    border-radius: 5px;
    width: 400px;
    height: 180px;
    transition: all 0.25s ease;
}
.news-case:hover{
    transform: translateY(-4px);

}
.news-case-l{
    width: 40%;
}
.news-case-r{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0 0 0 ;
}
.news-case-l img{
    border-radius: 4px 4px 4px 4px ;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.news-date{
    margin: 0%;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.7;
}
.news-title{
    margin: 0%;
    font-weight: bold;
    font-size: 16px;
}
.news-product{
    position: relative;
    top: 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    opacity: 0.9;
}
.btn-news-more{
    width: 150px;
    margin-top: -10px;
    border-radius: 5px !important;
    border: 1px solid !important;
    padding: 2px !important;
    font-size: 14px !important;
    color: #0034cf !important;
}
.news-more-arrow{
    font-size: 13px;
    display: inline-block;
    transition: transform .3s ease;
}
.btn-news-more:hover .news-more-arrow{
    transform: translateX(10px);
}
@media (max-width:845px){
    .news-case{
        width: 350px;
    }
    .news-product{
        font-size: 11px;
    }

}
@media (max-width:745px){
    .news-case{
        width: 400px;
    }
    .news-product{
        font-size: 12px;
    }

}
@media (max-width:425px){
    .news-case{
        width: 350px;
    }
    .news-product{
        font-size: 11px;
    }

}
@media (max-width:368px){
    .news-case{
        width: 300px;
    }
    .news-product{
        font-size: 9px;
    }

}
/* NEWS BİTİŞ */

/* KURUMSAL BAŞLANGIÇ */
.hakkımızda{
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 40px;
    margin: 30px 0 30px 0 ;
}

.hk-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    width: 45%;
}
.hk-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hk-highlight{
    font-size: 15px;
    font-weight: 600;
    color:#3c8cff;
}
.hk-right .hk-img-top{
    border-radius: 6px;
    max-width: 700px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hk-img-bottom{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;

}
.hk-img-bottom img{
    border-radius: 6px;
    width: 30%;
    max-width: 225px;
}
.head-text-case-hk{
    display: flex;
    font-weight: 700;
    font-size: 35px;
}
.head-text-hk{
    display: flex;
    align-items: start;
    justify-content: start;
}
.head-text-hk::after{
    content: "";
    margin-top: 50px;
    position: absolute;
    width: 35px;
    height: 3px;
    background: #0034cf;
}
.hk-text-one , .hk-text-two{
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    opacity: 0.8;
}
.btn-hk-act{
    width: 200px;
}


/* Mobil */
@media (max-width: 1024px){

    .hakkımızda{
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .hk-left,
    .hk-right{
        width: 100%;
    }

    .head-text-case-hk{
        font-size: 30px;
    }

    .hk-text-one br,
    .hk-text-two br{
        display: none;
    }

    .hk-img-top{
        height: auto !important;
        max-width: none !important;
    }

    .hk-img-bottom{
        gap: 10px;
    }

    .hk-img-bottom img{
        width: calc(33.333% - 7px);
        max-width: none !important;
    }

    .btn-hk-act{
        width: 100%;
    }
}

.vizmis{
    margin: 60px 0 60px 0 ;
    width: 100%;
    display: flex ;
    padding: 0 20px;
    gap: 30px;
    justify-content: space-around;
    

}

.vizyon p , .misyon p {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 20px;
}

/* Tablet */
@media (max-width: 992px){

    .vizyon p br,
    .misyon p br{
        display: none;
    }
}


/* Mobil */
@media (max-width: 768px){

    .vizmis{
        flex-direction: column;
        gap: 40px;
    }

    .vizyon,
    .misyon{
        width: 100%;
    }

    .vizyon p,
    .misyon p{
        font-size: 14px;
    }
}


/* Küçük telefonlar */
@media (max-width: 480px){

    .vizmis{
        padding: 0 15px;
    }

    .vizyon p,
    .misyon p{
        font-size: 13px;
        line-height: 1.7;
    }
}

.values{
    display: grid;
    grid-template-columns: repeat(6, 230px);
    justify-content: center;
    gap: 0px;
    background-color: rgb(237, 238, 242);
    padding: 40px 20px;
}
.values-contact{
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: center;
    gap: 30px;
    padding: 80px;
}
.values-card-contact{
    border: 2px solid rgb(81, 81, 81 , 0.1);
    width: 300px;
    text-align: start;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 10px 10px 10px 30px;
}
.values-card{
    background-color: white;
    margin-bottom: 60px;
    width: 200px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 10px;
}
.values-card-icon{
    font-size: 40px;
    color: #0034cf;
}
.values-card-icon-heart-1,.values-card-icon-heart-2,.values-card-icon-heart-3{
    position: relative;
    font-weight: 600;
}
.values-card-icon-heart-1{
    font-size: 12px;
    bottom: 17px;
}
.values-card-icon-heart-2{
    bottom: 12px;
    font-size: 13px;
    left: 3px;
}
.values-card-icon-heart-3{
    font-size: 14px;
    left: -24px;
}
.values-card-head{
    font-weight: bold;
    font-size: 17px;
}
.values-card-text{
    font-size: 12px;
    opacity: 0.8;
    font-weight: 600;

}
.values-card-text-contact{
    margin: 0%;
    font-size: 13px;
    opacity: 0.8;
    font-weight: 600;

}

@media (max-width: 1286px){

    .values{
        grid-template-columns: repeat(6, 180px);
        gap: 10px;
    }
    .values-card{
        width: 180px;
    }
    .values-contact{
        grid-template-columns: repeat(4, 250px);
        gap: 30px;

    }
    .values-card-contact{
        width: 250px;
    }
}
@media (max-width: 1152px){
    .values{
        grid-template-columns: repeat(5, 180px);
        gap: 10px;
    }
    .values-card{
        margin-bottom:0% ;
    }
    .values-contact{
        grid-template-columns: repeat(4, 200px);
        gap: 30px;

    }
    .values-card-contact{
        width: 200px;
    }
}
@media (max-width: 995px){
    .values{
        grid-template-columns: repeat(3, 180px);
    }
    .values-contact{
        grid-template-columns: repeat(3, 190px);

    }
    .values-card-contact{
        width: 190px;
    }

}
@media (min-width: 475px) and (max-width:655px){
    .values{
        grid-template-columns: repeat(2, 220px);
    }
    .values-card{
        width: 220px;
    }
    .values-contact{
        grid-template-columns: repeat(2, 220px);
        gap: 15px;
    }
    .values-card-contact{
        width: 220px;
    }

}
@media (min-width: 412px) and (max-width:475px){
    .values{
        grid-template-columns: repeat(2, 180px);
    }
    .values-card{
        width: 180px;
    }
    .values-contact{
        grid-template-columns: repeat(2, 185px);
        gap: 6px;
    }
    .values-card-contact{
        padding-left: 10px;
        width: 185px;
    }

}
@media (max-width: 411.9px){
    .values{
        grid-template-columns: repeat(2, 150px);
    }
    .values-card{
        width: 150px;
    }
    
    .values-contact{
        grid-template-columns: repeat(2, 165px);
        gap: 2px;
    }
    .values-card-contact{
        padding-left: 10px;
        width: 165px;
    }
}



/* =========================================
   CONTACT CARD
========================================= */

.contact-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 42px;
    border-radius: 24px;

}

/* =========================================
   HEADER
========================================= */

.contact-header {
    margin-bottom: 16px;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 10px;
}

.contact-header p {
    max-width: 550px;
    font-size: 15px;
    line-height: 1.8;
    color: #7a7a7a;
}

/* =========================================
   FORM
========================================= */

#contact-form , #contact-form-bayilik {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #dddddd;
    border-radius: 14px;
    background: #fff;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    transition: .25s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

/* =========================================
   VALIDATION
========================================= */

.input-error {
    display: none;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}

/* =========================================
   BUTTON
========================================= */

#contact-form button , #contact-form-bayilik button {
    width: 190px;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#contact-form button:hover , #contact-form-bayilik button:hover{
    background: #1d4ed8;
    transform: translateY(-2px);
}

#contact-form button:active , #contact-form-bayilik button:active {
    transform: scale(.98);
}

#contact-form button:disabled , #contact-form-bayilik button:disabled{
    opacity: .75;
    cursor: not-allowed;
    transform: none;
}

/* =========================================
   LOADING SPINNER
========================================= */

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px) {

    .contact-wrapper {
        margin: 35px 18px;
        padding: 24px;
        border-radius: 20px;
    }

    .contact-header {
        text-align: center;
    }

    .contact-header h2 {
        font-size: 25px;
    }

    .contact-header p {
        max-width: none;
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #contact-form button {
        width: 100%;
    }

}

.product-menu{
    font-size: 12px !important;
    background-color: #1b1b1b !important;
    padding: 3px 0 3px 0 !important;
    border-radius: 12px !important;
}
.product-menu a{
    color: white ;
    border-radius: 12px;

}
.product-menu a:hover{
    background-color: #272727;
    color: white;

}
.product-menu hr{
    margin: 2px;
    color: white;

}