html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}



.nw_our_industries .nw_our_industries_content {
    margin-bottom: 50px !important;
    gap: 25px
}

.nw_post_title {
    margin-bottom: 50px !important;
}

.nw_icon i {
    font-size: 75px;
}

.detay-link {
    text-decoration: none;
    font-weight: 600;
    color: #FCD20A;
    transition: 0.3s;
    font-size: 20px;
}

    .detay-link i {
        font-size: 13px;
        transition: 0.3s;
    }

    .detay-link:hover {
        color: #000;
    }

        .detay-link:hover i {
            transform: translate(3px,-3px);
        }

.count-number::after {
    content: "+";
    margin-left: 3px;
}


.msds_text_left h3 {
    text-align: left !important;
    font-size: 30px;
}

.msds_text_left p {
    text-align: left !important;
    font-size: 16px;
    color: black;
}



.yonetmelik-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .yonetmelik-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }

.yonetmelik-icon {
    font-size: 40px;
    color: #f1c40f;
    margin-bottom: 15px;
}

.yonetmelik-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center !important;
}

.yonetmelik-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.yonetmelik-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f1c40f;
    color: #000;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
}

    .yonetmelik-btn:hover {
        background: #d4ac0d;
    }




/*.navbar.navbar-default.nw_navbar_custom {
    position: fixed;
    width: 100%;
}*/


/* Sticky navbar başlangıç */
#mainNavbar {
    transition: all .4s ease;
}

/* Scroll sonrası navbar */
.navbar-fixed-custom {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    /* animasyon */
    .navbar-fixed-custom.show {
        top: 0;
    }

.nw_header_style .navbar.navbar-default.nw_navbar_custom {
    position: fixed;
    width: 100%;
}


@media(max-width:992px) {
    .top_d_flex {
        display: none;
        align-items: center !important;
    }
}

@media(min-width:992px) {
    .top_d_flex {
        display: flex;
        align-items: center !important;
    }
}


.navbar_logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar_h1_logo {
    color: #595a5c !important;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar_h1_logo_span {
    font-size: 14px;
    color: #FCD20A !important;
    font-weight: 700;
}


.my_text_center {
    text-align: center !important;
}

.foote_h1_logo {
    color: #595a5c !important;
    font-size: 30px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.foote_h1_logo_span {
    font-size: 18px;
    color: #FCD20A !important;
    font-weight: 700;
}






.whatsapp-fixed-container {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Yazı balonu */
.whatsapp-text {
    background: #2b2b2b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    animation: whatsappTextAnim 5s infinite;
}

/* Yazı animasyonu */
@keyframes whatsappTextAnim {

    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    10% {
        opacity: 1;
        transform: translateX(0);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    90% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
    }
}

/* WhatsApp Butonu */
.whatsapp-link {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .whatsapp-link i {
        font-size: 30px;
        z-index: 2;
        color: white;
    }

    /* Dalga Animasyonu */
    .whatsapp-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(37, 211, 102, 0.5);
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .whatsapp-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .whatsapp-link .wave:nth-child(3) {
            animation-delay: 1s;
        }

/* Dalga Animasyonu */
@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



.phone-fixed-container {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.phone-link {
    display: inline-block;
    background-color: #FCD20A;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .phone-link i {
        font-size: 18px;
        z-index: 2;
        color: white;
    }

    .phone-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #FCD20A;
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .phone-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .phone-link .wave:nth-child(3) {
            animation-delay: 1s;
        }



@media (max-width: 991px) {

    .nw_submenu_items {
        display: none;
    }

    .nw_submenu.open .nw_submenu_items {
        display: block;
    }
}

/* navbar breakpoint 768 yerine 992 yap */

@media (max-width: 1199px) {

    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

        .navbar-collapse.collapse {
            display: none !important;
        }

            .navbar-collapse.collapse.in {
                display: block !important;
            }

    .navbar-nav {
        float: none !important;
    }

        .navbar-nav > li {
            float: none;
        }

    .footer_mt5_small {
        margin-top: 25px;
    }
}


@media (min-width: 1199px) {

    .navbar-toggle {
        display: none;
    }

    .navbar-collapse {
        display: block !important;
    }

    .footer_mt5_small {
        margin-top: 0;
    }

    .nw_menu {
        display: flex !important;
        justify-content: right !important;
        width: 100% !important;
    }
}




.menu-item.active-service {
    background: #f5f5f5 !important;
    border-left: 4px solid #0c8b6b !important;
}

    .menu-item.active-service a {
        color: #FCD20A !important;
        font-weight: 600 !important;
    }

@media(max-width:1200px) {
    .navbar_header_left {
        width: 95%;
    }

    .navbar-toggle {
        position: relative;
        z-index: 9999;
    }
}

@media(min-width:1200px) {
    .navbar_header_left {
        width: 25%;
    }
}


/*@media (max-width: 1200px) {
    #navbar .nw_menu li {
        display: grid !important;
        padding: 5px;
    }
}*/


.header_logo_a {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 5px;
    margin-bottom: 0 !important;
}

.header_h1_logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px !important;
    color: #FCD20A;
    font-weight: 900;
}

.header_h1_logo_span {
    color: #595a5c;
    font-weight: 700;
}

/*.nw_navbar_custom_row{
    display:flex;
    align-items:center;
}*/


.msds-hero {
    padding: 150px 0;
    background: url(../img/test1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
/*    height:100vh !important;
*/    display:flex;
    align-items:end;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: black;
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;

}
.hero-desc {
    font-size: 14px;
    color: #777;
    font-style: italic;
    padding: 8px 15px;
    margin: 0;
    font-weight:700;
}

.blodddd{
    font-weight:900;
    color:black;
}

.hero-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

    .hero-list i {
        color: #f4b400;
        margin-right: 8px;
    }

@media(max-width:992px) {
    .hero-stats {

        gap: 20px;
        margin-bottom: 25px;
    }

    .expertise-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 10px 40px;
    }
}

@media(min-width:992px){
    .hero-stats {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
    }

    .expertise-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 10px 40px;
    }
}

.expertise-list li {
    text-shadow: 1px 1px 2px white;
}


.stat {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .stat span {
        color: black;
    }


    .stat strong {
        color: black;
        font-weight:900;
        font-size:16px;
    }

    .stat i {
        font-size: 22px;
        color: #f4b400;
        margin-right: 10px;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-offer {
    background: #f4b400;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.btn-detail {
    border: 1px solid #ddd;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    font-weight:700;
    font-size:16px;
}

.hero-image {
    max-width: 100%;
}



.msds-expertise {
    margin-top: 40px;
}

    .msds-expertise h3 {
        font-weight: 600;
        margin-bottom: 15px;
    }



    .expertise-list li {
        position: relative;
        padding-left: 18px;
        font-size: 15px;
        font-weight:600;
    }

        .expertise-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #f4b400;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 8px;
        }


.anasayfa_d_hizmet_3{
    display:flex;
    gap:10px;
}


.m-0{
    margin:0;
}

.p-0{
    padding:0;
}


.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.mt-succes-3 {
    margin-top: 20px !important;
}

.mt_3{
    margin-top:10px;
}




@media(min-width:992px){

    .nw_our_industries {
        display: flex;
        flex-wrap: wrap;
    }


    .nw_services {
        display: flex;
        flex-wrap: wrap;
    }


    .nw_our_industries_content {
        width: 33.33%;
        padding: 10px;
    }

    .nw_services_row {
        width: 33.33%;
        padding: 10px;
    }
}

@media(max-width:992px) {
    .nw_our_industries {
        display: flex;
        flex-wrap: wrap;
        padding:20px;
    }


    .nw_services {
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
    }

    .nw_our_industries_content {
        width: 50%;
        padding: 10px;
    }

    .nw_services_row {
        width: 100%;
        padding: 10px;
    }
}



    .nw_our_industries_content .nw_icon {
        width: 25%;
        display:flex;
        justify-content:center
    }