
body {
    line-height: 1.6;
}

p{
    font-weight: 400;
    margin: 0;
    line-height: 1.8rem;
}
.nav-submenu {
    min-width: 250px;
}

.footer_logo {
    max-width: 250px;
}

.pt120 {
    padding-top: 120px;
}

.pb120 {
    padding-bottom: 120px;
}

.fh2 {
    perspective: 100px;
    font-size: 50px;
    font-weight: 700;
    line-height: 3.5rem;
}

.text-heading {
    color: #000000 !important;
}

.fnp_bg_dark {
    background-color: #155598 !important;
}
.mw-550 {
    max-width: 550px;
}
.mw-650 {
    max-width: 650px;
}
.fhead {
    border-right: 1px solid #000;
    margin-right: 35px;
}

.clientCom {
    font-size: 16px;
    line-height: 26px;
}

.brand-slider img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}


.brand-slider img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-slider img:hover {
    filter: grayscale(0%);
    transform: scale(1);
}

.brand-slider .swiper-slide img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;

    transform: scale(0.75); /* %25 küçültme */
}

.brand-slider img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.brand-slider .swiper-slide .text-center {
    display: flex;
    align-items: center;
    justify-content: center;
}


.brand-slider-wrapper {
    position: relative;
}

/* Ortak ayarlar */
.brand-slider-wrapper::before,
.brand-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;              /* gradient genişliği */
    height: 100%;
    z-index: 5;
    pointer-events: none;     /* swipe engellenmesin */
}

/* Sol fade */
.brand-slider-wrapper::before {
    left: 0;
    background: linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
    );
}

.brand-slider .swiper-slide img {
    max-width: 75%;
    height: auto;
}


/* Sağ fade */
.brand-slider-wrapper::after {
    right: 0;
    background: linear-gradient(
            to left,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
    );
}

@media (max-width: 768px) {
    .brand-slider-wrapper::before,
    .brand-slider-wrapper::after {
        display: none;
    }
}

.brand-slider-wrapper:hover::before,
.brand-slider-wrapper:hover::after {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.fnp_banner_font {
    font-size: 1rem;
    line-height: 1.8rem;
}


.feature-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.feature-list ul li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Yuvarlak ikon */
.feature-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-color: #f1f3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
}


.pl-20 {
    padding-left: 20px;
}

.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}

.language-selector {
    z-index: 9; /* Kapatma butonunun altında kalmaması için */
    display: flex;
    align-items: center;
}

.flag-item {
    transition: transform 0.2s;
    opacity: 0.8;
}

.flag-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.cardtitle {
    font-size: 20px !important;
    font-weight: 500 !important;
}
.carddesc {
    font-size: 18px !important;
    font-weight: 400 !important;
}

.tw-w-120-px {
    width: 120px;
}
.tw-h-120-px {
    height: 120px;
}

.topbar-links a {}
.topbar-links a:hover {
    color: #efefef;
    text-decoration: underline;
}

.btn-main-two2:hover {
    color: #000000 !important;
}
.btn-main-two2 {
    border-color: #ffffff !important;
    color: #ffffff !important;
}
.btn-main-two {
    background-color: #155598 !important;
}
.btn-main:hover {
    background-color: #155598 !important;
}
.btn-main {
    background-color: #155598 !important;
}
:root{ --primary:#155598; }

.solution-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border:1px solid rgba(11,18,32,.10);
    border-radius:22px;
    overflow:hidden;
    box-shadow: 0 14px 40px rgba(11,18,32,.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height:100%;
}

.solution-card:hover{
    transform: translateY(-3px);
    border-color: #155598 !important;
    box-shadow: 0 22px 60px rgba(11,18,32,.12);
}

.solution-media{
    position:relative;
    height: 210px;
    background: rgba(19,81,216,.06);
    overflow:hidden;
}

.solution-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform: scale(1);
    transition: transform .35s ease;
    filter: saturate(1.03);
}

.solution-card:hover .solution-media img{
    transform: scale(1.04);
}

/* soft gradient overlay */
.solution-media::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(11,18,32,.0) 30%, rgba(11,18,32,.18));
    pointer-events:none;
}

.solution-chip{
    position:absolute;
    left:14px;
    top:14px;
    padding:8px 12px;
    border-radius:999px;
    font-weight:800;
    font-size: 12px;
    color:#fff;
    background: #155598 !important;
    box-shadow: 0 10px 25px rgba(68,115,126,.28);
}

.solution-body{
    padding: 18px 18px 18px;
}

.solution-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom: 8px;
}

.solution-title{
    margin:0;
    color:#155598 !important;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.01em;
}


.solution-arrow{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    color: var(--primary);
    background: rgba(68,115,126,.10);
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
}

.solution-card:hover .solution-arrow{
    transform: translateX(2px);
    background: #155598 !important;;
}

.solution-text{
    margin:0 0 14px;
    color: #155598 !important;;
    font-size: 14.8px;
    line-height: 1.65;
}

.solution-tags{
    display:flex;
    flex-wrap:wrap;
    gap: 8px;
}

.tag{
    font-size: 12.5px;
    font-weight: 800;
    color: #155598 !important;
    background: rgba(11,18,32,.06);
    border: 1px solid rgba(11,18,32,.08);
    padding: 7px 10px;
    border-radius: 999px;
}

@media (max-width: 991px){
    .solution-media{ height: 190px; }
}
.splitTextStyleOne span {
    margin-right: 7px;
}
.banner-visual-wrap {
    min-height: 520px;
}

/* Arka plan görsel */
.banner-bg-img {
    position: absolute;
    top: 40px;
    right: 0;
    max-width: 85%;
    z-index: 0;
    pointer-events: none;
}
.banner-front-img {
    max-width: 100%;
    position: relative;
    z-index: 1;
}
.parallax-back,
.parallax-front {
    will-change: transform;
}
.parallax-back{
    animation: driftLeft 6s ease-in-out infinite alternate;
}
.parallax-front{
    animation: driftRight 5s ease-in-out infinite alternate;
}
@keyframes driftLeft{
    0%   { transform: translateX(0px); }
    100% { transform: translateX(-24px); }
}
@keyframes driftRight{
    0%   { transform: translateX(0px); }
    100% { transform: translateX(24px); }
}
@media (max-width: 768px){
    .parallax-back,
    .parallax-front{ animation: none; }
}

.floating_btn, .tel_btn {
    position: fixed;
    bottom: 10px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.contact_icon, .tel_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: wp-pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: wp-pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: wp-pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: wp-pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}
@keyframes wp-pulsing {
    100% {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}
.nav-menu{
    gap: 25px;
}
.select_language {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 15px;
}
.select_language span{
    font-weight: 600;
    padding-left: 5px;
}
.select_language::before {
    position: absolute;
    content: "\e136";
    inset-inline-end: 0;
    inset-block-start: 50%;
    transform: translateY(-50%);
    font-family: "Phosphor";
    font-weight: 900;
    color: var(--neutral-400);
    transition: 0.2s linear;
    font-size: 12px;
}
.select_language:hover::before{
    color: var(--main-600);
    transform: translateY(-50%) rotate(180deg);
}
.select_language ul{
    min-width: 100px;
    width: 100%;
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transition: 0.4s ease;
    transform-origin: top center;
    z-index: 99;
    border-radius: 0.375rem;
    padding: var(--size-2);
    margin-block-start: var(--size-4);
    inset-inline-start: 0;
    position: absolute !important;
    top: 100% !important;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.select_language:hover ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
.select_language ul li{
    width: 100%;
}
.select_language ul li a{
    padding: 8px;
    border-radius: 4px;
    display: block;
}
.select_language ul li a:hover{
    background-color: #e5e7eb;
}
.select_language ul span {
    color: var(--main-two-600);
}
.fnp-btn{
    border: 2px solid #155598 !important;
    background: transparent !important;
    color: #155598 !important;
}

.bg-main-600 {
    background-color: #155598 !important;
}
.fnp-btn .button__flair::before {
    background-color: #155598 !important;

}
.fnp-btn:hover{
    color: #fff!important;
}

.fnp-list {
    display: flex;
    flex-direction: column;
    position: relative;
}

.fnp-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 28px;
    font-weight: 500;
    color: #efefef;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fnp-item p {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 15px;
}

.fnp-item:hover {
    color: #fff;
}

.fnp-item.fnp-active {
    color: #fff;
    font-weight: 600;
}

.fnp-num {
    font-size: 14px;
    color: #fff;
}

.fnp-preview-area {
    position: relative;
    height: 100%;
}


/* Responsive */
@media (max-width: 1100px) {
    .fnp-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fnp-preview-area {
        min-height: 420px;
    }

    .fnp-preview-card {
        position: relative;
        margin-top: 20px;
    }
}
.fnp-hover-preview {
    width: 480px;
    height: 360px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: fixed;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.12s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 99999;
}

.fnp-hover-preview.fnp-show {
    opacity: 1;
    transform: scale(1);
}

.fnp-hover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corevo-owner-pagination{
    margin-top: 18px;
    position: relative;
}
.corevo-owner-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    opacity: .25;

}



.corevo-owner-pagination .swiper-pagination-bullet-active, .industriesSwiper .swiper-pagination-bullet-active{
    background: hsl(343.83deg 53.99% 58.24%) !important;
    opacity: 1;
    transform: scale(1.15);
}
.show-case-slider .corevo-owner-pagination{
    margin-top: 60px;
}
.breadcrumb{
    padding: 0;
    height: 200px;
    align-items: center;
    background-color: #f0f0fc;
}
.breadcrumb.banner_image{
    height: 400px;
}
.side_Bar_contact{
    position: sticky;
    top: 120px  ;
}
.bg-neutral-light-half.style-two::before{
    display: none;
}
.bannerSwiper {
    width: 100%;
    height: 100%;
}

.bannerSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
}
.bannerSwiper .swiper-pagination {
    bottom: -10px !important;
}
.bannerThumbs {
    width: 60%;
    padding-bottom: 4px;
}

.bannerThumbs .swiper-slide {
    opacity: .5;
    transform: scale(.75);
    transition: all .3s ease;
    cursor: pointer;
}

.bannerThumbs .swiper-slide-active {
    opacity: .9;
    transform: scale(1);
}

.bannerThumbs .thumb-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}
.pt-160{
    padding-top: 160px;
}

.section-bg-one {
    background-color: #f9f9f9 !important;
}

.border-fnp {
    border-color: #ededed !important;
}

.bg-fnp {
    background-color: #ffffff !important;
}
.bg-hover-app-landing:hover p{
    color: #ffffff !important;
}
.bg-hover-app-landing:hover{
    background-color: #000000 !important;
}
.common-shadow-fifteen{}


.fnppoz {
    position: relative;
    z-index: 2;
}

.fnp_title2 {
    font-weight: 500 !important;
    font-size: 38px !important;
}

.fnp_h_ava{
    display: flex;
    align-items: center;
}

.corevo-owner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.fw-700 {
    font-weight: 700;
}

@media (min-width: 992px) {
    .py-120 {
        padding-block-start: 100px;
        padding-block-end: 100px;
    }
}

.nav-submenu__item.activePage .nav-submenu__link
{
    color: #000000 !important;
}

.border-main-600 {
    border-color: hsl(343.83deg 53.99% 58.24%) !important;
}

.accordion.arrow-bg-orange .accordion-button[aria-expanded=true]::before {
    background-color: hsl(343.83deg 53.99% 58.24%) !important;
    border-color: hsl(343.83deg 53.99% 58.24%) !important;
}

.fnp_txt_pe {
    color: #CF5A79;
}


.btn-main-pdf {
    background-color: #CF5A79;
}
.slider_count{
    left: -115px;
    bottom: 25px !important;
    right: auto;
    background: transparent !important;
    /*    background: #CF5A79!important;
    border-radius: 100% !important;
    padding: 50px 40px!important;
   background: #CF5A79!important; */
    background-image: url("/files/corevo-icon-year2.svg") !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 280px;
    width: 280px;
    height: 280px;
    padding: 0;
    animation: fnpSoftPulse 2.6s ease-in-out infinite;
}
.slider_count .inner_count{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -35%);
    transform-origin: center;
}
@keyframes fnpSoftPulse{
    0%   { transform: scale(1); }
    50%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.mt-75{
    margin-top: 75px;
}

#globe { width: 100%; max-width: 1000px; aspect-ratio: 1 / 1; margin: 0 auto;}
.land     { fill: #b5b8b8; stroke: #a2a2a2; stroke-width:.6; }
.borders  { fill:none; stroke:#fff; stroke-width:1; stroke-opacity:1; }
.graticule{ fill:none; stroke:#2b3a5f; stroke-opacity:.25; stroke-width:.6; }
.point  { fill: hsl(343.83deg 53.99% 58.24%) !important; stroke:rgba(0,0,0,.25); stroke-width:1; cursor:pointer; }
.halo   { pointer-events:none; fill:url(#haloGrad); }
.halo {
    animation: haloPulse 2s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes haloPulse {
    0%   { transform: scale(0.7); opacity: .35; }
    50%  { transform: scale(1); opacity: .65; }
    100% { transform: scale(0.7); opacity: .35; }
}
.label  { font-size:16px; fill: #161619; pointer-events:none; font-weight: 500; }
#globe svg { cursor: grab; }
#globe svg.dragging { cursor: grabbing; }

.fnp-parallax{
    position: relative;
    overflow: hidden;
    background-image: url("/files/parallax.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fnp-parallax::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #155598;
    opacity: 0.75;
    z-index: 1;
}
.fnp-parallax-content{
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}
@media (max-width: 991px){
    .fnp-parallax{
        background-attachment: scroll;
    }
}

.fnp-parallax .rand_btn{
    background-color: #fff!important;
    color: #155598!important;
}
.fnp-parallax .rand_btn:hover{
    color: #fff !important;
}
#World-Map p:first-child{
    font-size: 19px;
    font-weight: 600;
}
.group-item:hover .group-hover-item-text-invert{
    filter: none!important;
    background: transparent!important;
}

.fnp-gallery-page{
    background: #fff;
}

.fnp-gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fnp-gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    display: block;
    aspect-ratio: 4 / 3;
    background: #f4f4f7;
}

.fnp-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease, filter .35s ease;
}

.fnp-gallery-item:hover img{
    transform: scale(1.06);
    filter: brightness(.92);
}

.fnp-gallery-caption{
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #fff;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 1200px){
    .fnp-gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
    .fnp-gallery-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px){
    .fnp-gallery-grid{ grid-template-columns: 1fr; }
}
.preloader .cssload-loading i{
 background: #155598 !important;
}
.slider_section{
    padding: 80px;
}
.industriesSwiper .swiper_pagination_ust{
    margin-top: 60px;
}
.section_youtube iframe{
    width: 100% !important;
    height: 400px !important;
}
.tw-rounded-2xl.bg-hover-app-landing:hover{
    background-color: #F0F0FC!important;
}

.tw-rounded-2xl.bg-hover-app-landing:hover .group-hover-text-white, .tw-rounded-2xl.bg-hover-app-landing:hover p{
    color: var(--black) !important;
}
.fnp_detail_inner ul{
    padding: 10px;
    padding-left: 20px;
    list-style: disc;
}
.fnp_detail_inner h2, .fnp_detail_inner h3 {
    font-family: var(--heading-font);
    font-weight: 500 !important;
    font-size: 38px !important;
    color: #000000 !important;
    line-height: 1.2;
    margin-bottom: 15px;
}
.fnp_detail_inner  p {
    margin-bottom: 10px;
}