/* ===================== Genel Ayarlar ===================== */
body {
    margin: 0;
    padding: 0;
}
   .font-main {
  font-family: 'Poppins', 'Open Sans', sans-serif !important;
}

    .inter-regular {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.inter-medium {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.inter-semibold {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.inter-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}


    .antonio {
  font-family: 'Antonio', sans-serif;
}

 .inter-semibold {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.inter-bold-italic {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
}
.inter-light {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(
        to bottom,
        #96a5f169 0%,      
        #8288e2 20%,      
        #f8f0f0 45%,    
        #faf6f6 70%,     
        #ffffff 100%    
    );
    background-attachment: fixed; 
    position: relative;
    overflow-x: hidden;
} */

/* Noise doku – yukarı yoğun, aşağıda siliniyor */
/* body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsSAAALEgHS3X78AAAANElEQVRoge3OIQEAAAwCoNm/9HI4gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8H4GAAE59tPsAAAAAElFTkSuQmCC");

    opacity: 0.25;
    mix-blend-mode: overlay;

   
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.6) 40%, 
        rgba(0,0,0,0.2) 70%, 
        rgba(0,0,0,0) 100%
    );
} */
/* body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;

    background: radial-gradient(
        circle at 50% 0%, 
        rgba(255, 255, 255, 0.65) 0%,   
        rgba(255, 255, 255, 0.25) 25%,  
        rgba(255, 255, 255, 0.08) 50%,  
        rgba(255, 255, 255, 0) 75%      
    );

    opacity: 0.65;
    mix-blend-mode: soft-light;  
} */
html, body {
    overflow-x: hidden;
}
a{
    text-decoration: none !important;
}

section {
    padding: 0 10px;
    
}
.butons{
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin-top: 80px;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    background:  #f70d0d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.secondary-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}
 
.secondary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, #ffffff, #f32222);
}

.secondary-cta:hover i {
    transform: rotate(20deg) translateX(2px);
}

/* Sosyal ikonlar */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; 
    width: 40px;    
    height: 40px;
    margin-right: 5px;
    border-radius: 50%; 
    transition: all 0.3s ease;
    background: none; 
}

.social-links a::after,
.secondary-cta::after {
    content: none !important;
}

.social-links a {
    text-decoration: none;
    background-image: none;
}
/* LinkedIn */
.social-links a[href*="linkedin"] {
    color: #0077b5;
}

/* Instagram */
.social-links a[href*="instagram"] {
    color: #e4405f;
}
/* Instagram */
.social-links a[href*="youtube"] {
    color:  #f51b1b;
}

/* Hover animasyonu ikonlar */
.social-links a:hover[href*="instagram"] {
    transform: translateY(-3px) scale(1.2);
    color: #f8cccd; 
}
.social-links a:hover[href*="linkedin"] {
    transform: translateY(-3px) scale(1.2);
    color:  #94d4f7;
}
.social-links a:hover[href*="youtube"] {
    transform: translateY(-3px) scale(1.2);
    color:  #f56161; 
}





/* Dil dropdown */

.lang-box {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 5px 0;
    width: 140px;
    display: none;
}

.lang-dropdown li {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-dropdown li:hover {
    background: #f0f0f0;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #7759ad;
    background: linear-gradient(90deg, #f5f2f2, #ffffff);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, #f5f2f2, #ffffff);
    
}
.cta-button:hover a {
   color: #fff !important; 
    -webkit-text-fill-color: initial !important;
    background: none !important;
    
}

.cta-button:hover i {
    transform: rotate(20deg) translateX(2px);
}
/* Navbar */


/* Logo */
.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-img {
    height: 30px;
    margin-right: 0;
}

.logo-pos {
    color: #c01719;
    margin: 0;
    padding: 0;
  
}

.logo-cube {
    color: #0e3641;
    margin: 0;
    padding: 0;
}
/* NAVBAR */
/* NAVBAR */
.navbar {
    width: 100%;
    display: flex;
    justify-content: center !important;   
    padding: 15px 0;
    background: transparent;
    position: sticky;
    top: 0;
    background-color: #ffffff;
 

}


/* NAVBAR BOX – Kaplamayan container */
.navbar-container {
    width: 75%;                
    max-width: 1200px;
    background: #fff;
    padding: 7px 12px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between; 
    
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
/* Logo */
.logo {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

/* Desktop Menüsü */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding-top: 15px !important;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links li a:hover {
    opacity: 0.7;
}

/* Hamburger */
.hamburger-menu {
    display: none;
    color: rgb(8, 8, 8);
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 900px) {
    .navbar-container {
        width: 90%;  
    }

    .nav-links,
    .lang-box {
        display: none !important;
    }

    .hamburger-menu {
        display: block;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    
}

.logo-img {
    width: 34px;
    height: 34px;
    margin: 10px !important;
}

.logo-pos {
    font-weight: 700;
    font-size: 22px;
    color: #c01719;
}

.logo-cube {
    font-weight: 700;
    font-size: 22px;
    color: #0e3641;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links li a:hover {
    color: #c01719;
}

/* LANG DROPDOWN */
.lang-box {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
}

.flag-icon {
    width: 20px;
    height: 14px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    min-width: 140px;
}

.lang-dropdown li {
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-dropdown li:hover {
    background: #f2f2f2;
}

/* Hover açılır */
.lang-box:hover .lang-dropdown {
    display: block;
}

/* Mobile Hamburger */
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .nav-links {
        display: none !important;
    }

    .lang-box {
        display: none !important;
    }

    .hamburger-menu {
        display: block !important;
    }

   
    .navbar-container {
        width: 90%;
        min-width: unset;
    }
}



/*  Mobil Navbar  */
.mobile-navbar {
    position: fixed;
    top: 80;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index:  10000;
}

.mobile-navbar.active {
    right: 0;
}

.mobile-navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navbar li {
    padding: 20px 25px;
}

.mobile-navbar a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
}

/* Aktif link efekt */
.mobile-navbar a.active {
    background: linear-gradient(90deg, #c01719, #0e3641, #c01719);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-navbar a.active::after {
    width: 100%;
}

/* Dil Butonu Temel Stil */
.lang-menu { position: relative; }
.lang-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.lang-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 6px 18px rgba(247,245,245,0.3); }
.lang-btn i { font-size: 12px; transition: transform 0.3s ease; }
.lang-btn.active i { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    width: 160px;
    transition: all 0.3s ease;
    z-index: 1000;
}
.lang-dropdown.show { max-height: 500px; opacity: 1; }

.lang-dropdown li {
  
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #0e3641;
    transition: background 0.2s ease, color 0.2s ease;
}
.lang-dropdown li:hover { background: #c01719; color: #fff; }

.flag-icon { width: 25px; height: 20px; object-fit: cover; margin-right: 8px; }

/* Hero Section */
.hero-section {
    width: 100%;
    overflow: hidden;
   background-color: #ffffff;
    padding: 50px 5%;
    animation: AnimateBG 10s ease infinite;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    padding: 25px 10%;   
    gap: 40px;
}
/* Sol kart */
.hero-card {
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s ease;
}

.hero-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-rightt::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0) 100%
    );
    filter: blur(18px);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

/* Efekt tetiklendiğinde ışık kartın içinden kayıyor */
.hero-rightt.light-sweep::after {
    left: 120%;
}
.hero-rightt img {
    width: 100%;
    height: 100%;
    object-fit: contain;   
    object-position: center;
    display: block;
}

.hero-rightt {
    margin-left: 80px;   }




.hero-rightt {
   
    width: 500px;
    height: 600px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
     margin-left: 80px;
    
    /* animasyon başlangıç halleri */
   opacity: 1;
    transform: translateX(0);
    transition: opacity .7s ease, transform .7s cubic-bezier(.25,.8,.25,1);
}
.fade-swap {
    opacity: 0;
    transform: translateX(60px) scale(0.96);
    filter: blur(4px);
    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.25,.8,.25,1),
        filter .6s ease;
}


.hero-rightt.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.25,.8,.25,1),
        filter .7s ease;

}

.hero-rightt.fade-out {
    opacity: 0;
    transform: translateX(-40px);
}

/* Yazı animasyonu */
.slide-text {
   opacity: 0;
    transform: translateY(10px);
    filter: blur(3px);
    transition:
        opacity .6s ease,
        transform .6s ease,
        filter .6s ease;
}

.slide-text.show {
  opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}


.text-slider {
    height: 50px;
    overflow: hidden;
    position: relative;
}

@media(max-width: 991px) {
    /* Tablet */
 .hero-rightt {
        margin: 30px auto 0;     
        width: 90%;              
        max-width: 380px;       
        height: auto;            
        aspect-ratio: 2 / 3;     
        max-height: 450px;
    }

    .hero-rightt img {
        width: 100%;
        height: 100%;
        object-fit: cover;       
        object-position: center;
    }

}

/* Mobil */


   
/* HERO ALT SEKTÖRLER */


.sector-section{
background-color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
   

}

.sector-card i {
    font-size: 30px;
    margin-bottom: 10px;
    transition: .3s ease;
}


.sector-card h4 {
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.sector-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
     padding: 30px 5%;
    
}


.sector-card {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    padding: 16px;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.sector-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0); 
    border-radius: 20px;
    z-index: 1;
    transition: background 0.3s ease;
}

.sector-card.active::before,
.sector-card:hover::before {
    background: rgba(0,0,0,0.25); }

.sector-card i,
.sector-card h4 {
    position: relative;
    z-index: 2;
    color: inherit;
}

.sector-card.active,
.sector-card:hover {
    color: #fff;
}


.reveal-item.interactive-btn {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease;
}


.reveal-item.interactive-btn.show {
    transform: translateY(0);
    opacity: 1;
}


.interactive-btn {
    position: relative;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.hero-card.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slider metni */
.smart-solutions {
    margin-top: 20px;
}

.main-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
}
.main-titlee{
     font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
     color: black;

}
.textt{
    font-size: 20px;
    font-weight: 200;
    margin-top: 50px;
}
.text-slider {
    height: 70px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

#slide-text {
    font-size: 35px;
    font-weight: 800;
     color: #c01719;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
     left: 0;
    right: 0;
    
    
}


#slide-text.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mainEnter {
    0% { transform: translateX(-200px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes sideEnter {
    0% { transform: translateY(-150px) rotateY(-18deg); opacity: 0; }
    100% { transform: translateY(0) rotateY(-18deg); opacity: 1; }
}

@keyframes float {
    0%   { transform: translateY(0) perspective(1200px) rotateY(-14deg); }
    50%  { transform: translateY(-15px) perspective(1200px) rotateY(-14deg); }
    100% { transform: translateY(0) perspective(1200px) rotateY(-14deg); }
}



/*  HAKKIMIZDA */
.about-section {
    width: 100%;
    padding: 50px 10%;
   
}

.about-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}


.about-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    opacity: 0;
    transition: all 1.2s ease;
    height: auto;
}

/* Sol kart → soldan giriş */
.left-card {
    transform: translateX(-60px);
        height: 490px !important;
    border-radius: 18px;
height: 100%; 
}

/* Sağ kart → sağdan giriş */


.right-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(60px);
    transition: all 1.2s ease;
    height: 100%; 
}

.right-card img {
    width: 100%;
    height: 100%;
    max-height: 450px; 
    object-fit: contain; 
    border-radius: 16px;
}


.about-card.visible {
    opacity: 1;
    transform: translateX(0);
}


.reveal-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-item.show {
    opacity: 1;
    transform: translateX(0);
}


.about-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #c01719;
}

.about-card h3 {
    font-size: 22px;
    margin-top: 20px;
    color: #c01719;
}

.about-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* logo kartları */
.referans {
 
    display: inline-block; 
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
    background: linear-gradient(90deg, #c01719, #0e3641, #c01719);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30%); } 
}

.referans-section {
    min-height: 200px;
    position: relative;
    background: #ffffff;
    text-align: center;
    padding: 15px  0px; 
}

.logo-slider {
    overflow: hidden;
    width: 100%;
        padding: 20px 0;
}

.logo-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: autoScroll 25s linear infinite;
}

@keyframes autoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-33.333%); }
}

.logo-card {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}



.logo-card {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo-card img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-card img:hover {
    transform: scale(1.1);
}

 /* SECTION WRAPPER */
/* ANA BÖLÜM */
.nedenbiz-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
}

/* SOL ARKA PLAN RESİM */
.nedenbiz-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url("n5.avif");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* BEYAZA DOĞRU GEÇİŞ EFEKTİ */
.nedenbiz-bg::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 60%,
    #fff 100%
);
}

/* YAZI ALANI */
.nedenbiz-content {
    width: 50%;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

/* BAŞLIK */
.nedenbiz-title {
    font-size: 42px;
    font-weight: 700;
    color: #c01719;
    margin-bottom: 25px;
    opacity: 0;
    transform: scale(0.95);
    padding: 0 0 0 60px;
}

/* MADDELER */
.nedenbiz-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 40px; 
}

.nedenbiz-list li {
    font-size: 20px;
    margin: 12px 0;
    opacity: 0;
    transform: translateY(25px);
    position: relative;
    padding-left: 20px; 
}

/* KIRMIZI KARE İKON */
.nedenbiz-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background-color: #c01719; 
    border-radius: 2px; 
}
.image-animate {
   
    transform: translateX(-40px) scale(0.95);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-animate.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}
@keyframes titlePop {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

/* MADDE ANİMASYONU */
@keyframes itemUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}




/* AKTİF OLUNCA ANİMASYON BAŞLASIN */
.reveal-nedenbiz.active .nedenbiz-title {
    animation: titlePop 0.7s cubic-bezier(.2,.9,.2,1) forwards;
}

.reveal-nedenbiz.active .nedenbiz-list li {
    animation: itemUp 0.6s cubic-bezier(.2,.9,.2,1) forwards;
}

.reveal-nedenbiz.active .nedenbiz-list li:nth-child(1) { animation-delay: 0.3s; }
.reveal-nedenbiz.active .nedenbiz-list li:nth-child(2) { animation-delay: 0.45s; }
.reveal-nedenbiz.active .nedenbiz-list li:nth-child(3) { animation-delay: 0.6s; }
.reveal-nedenbiz.active .nedenbiz-list li:nth-child(4) { animation-delay: 0.75s; }
.reveal-nedenbiz.active .nedenbiz-list li:nth-child(5) { animation-delay: 0.9s; }
.reveal-nedenbiz.active .nedenbiz-list li:nth-child(6) { animation-delay: 1.05s; }
/* MOBİL */
@media (max-width: 992px) {

    .nedenbiz-section {
        flex-direction: column;
        padding: 60px 5%;
    }

    .nedenbiz-bg {
        width: 100%;
        height: 260px;
        position: relative;
    }

    .nedenbiz-bg::after {
        width: 100%;
        height: 120px;
        top: auto;
        bottom: -1px;
        left: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
    }

    .nedenbiz-content {
        width: 100%;
        text-align: center;
        margin-top: 40px;
    }
}

.partners-section {
    padding: 50px 5% ;
    background: #ffffff;
    text-align: center;
}

.partners-title {
    font-size: 38px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.partners-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 45px;
}

/* GRID LAYOUT */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

/* KART */
.partner-card {
    background: #fff;
    padding: 10px 10px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.08);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* LOGO */
.logo-box {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.logo-box img {
    height:100px;
    width: 150px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.logo-box img:hover .logo-box img {
    filter: grayscale(0%);
}


.logo-box img:hover img {
    filter: grayscale(0%);
}

.partner-card  h3 {
    font-size: 20px;
    font-weight: 700;
    color: #242746 !important;
    margin-bottom: 8px;
}

.partner-card  p {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}


.contact-section {
    padding: 80px 6%;
    background: #f7f7f7;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: auto;
}

.contact-info {
    width: 50%;
}

.map-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.map-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Mobil görüntü */
@media(max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        width: 100%;
    }
}


.support-section.split-background {
    position: relative;
    min-height: 480px;    
    padding: 0;
    display: flex;
    align-items: center;  
    justify-content: center; 
    overflow: hidden;
}

.support-content {
    position: relative;
    width: 600px;               
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 50px;
  border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 10;
    color: #111;
    text-align: left;
    line-height: 1.6;
    margin: 0 auto;
}

.support-title {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #111;
}

/* Mobil uyumlu */
@media (max-width: 992px) {
    .support-section.split-background {
        min-height: auto;  
        padding: 60px 4%;
    }
    
    .support-content {
        width: 100%;
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 auto;
    }

    .support-list li::before {
        display: none;
    }
}
/* Sol yarı arka plan */
.support-section.split-background::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    background-image: url('dess.jpg'); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    z-index: 0;
}

/* Sağ yarı arka plan */
.support-section.split-background::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background-image: url('tek.PNG'); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    filter: brightness(0.85);
    z-index: 0;
}

/* Yazı içeriği kutusu tam ortada */

/* Başlık */
.support-title {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    color: #c01719 ;
}

/* Liste stili */
.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    
    font-size: 20px;
    position: relative;
    padding-left: 22px;
    color:  #0e3641;
}


/* ENTEGRASYON ANA BÖLÜM */

.intkap{
    width: 100%;
    padding: 110px 6%;
    border-radius: 30px;
    background: linear-gradient(to bottom, #f7cfd0, #faf7fb);
}

.integration-section {
    width: 100%;
    padding: 50px 6%;
    border-radius: 30px;
 
   
}

.int-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
     padding-bottom: 10px;
}

/* SOL TARAF METİN*/
.int-text h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color:#c01719 ;
}

.int-text p {
    
    margin-bottom: 35px;
    max-width: 500px;
    font-size: 1.25vw;
    line-height: normal;
    font-weight: 400;
    color: #504f4f;
   
}

/*LOGO GRID */
.int-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 700px;
}

/* LOGO KARTLARI */
.brand-box {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 5px 16px rgba(0,0,0,0.05);
    transition: .25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .25s;
}

.brand-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.brand-box:hover img {
    filter: grayscale(0%);
}

/* =========================================================
   BUTON
========================================================= */
.show-all-btn {
    margin: 30px auto 0;
    display: inline-block;
    background: #c01719;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    text-align: center;
}

.show-all-btn:hover {
    background: #a81315;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 992px) {
    .int-container {
        flex-direction: column;
        text-align: center;
    }

    .int-grid {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .int-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .int-text h2 {
        font-size: 38px;
    }

    .int-text p {
        font-size: 17px;
    }
}



.integration-full-page {
    padding: 120px 6%;
}

.full-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #c01719;
}

.back-btn {
    margin-top: 40px;
    background: #c01719;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: .25s;
}

.back-btn:hover {
    background: #a01013;
}



/* Trusted bölümü — merkezi, estetik */
.trusted-section {
  width: 100%;
  background: var(--trusted-bg);
  padding-top: 180px;
  margin-top: 0; 
}

.trusted-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.trusted-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f0f0f;
  margin: 0 0 18px;
  line-height: 1.05;
}

.trusted-sub {
  max-width: 900px;
  margin: 0 auto;
  color: var(--trusted-sub-color);
  font-size: 18px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .trusted-title { font-size: 32px; }
  .trusted-sub { font-size: 16px; padding: 0 12px; }
}

@media (max-width: 480px) {
  .trusted-title { font-size: 26px; }
  .trusted-sub { font-size: 15px; }
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info, 
    .contact-maps {
        width: 100%;
    }
     .sector-wrapper {
        gap: 16px;
        padding: 22px 5%;
    }

    .sector-card {
        width: 110px;
        height: 110px;
        max-width: 110px;
        max-height: 110px;
    }

    .sector-card i {
        font-size: 24px;
    }

    .sector-card h4 {
        font-size: 12px;
    }
}



/* Responsive */
@media (max-width: 1200px) {
    .logo-card {
        width: 140px;
        height: 120px;
    }
    .sector-wrapper {
        gap: 18px;
        padding: 25px 5%;
    }

    .sector-card {
        width: 120px;
        height: 120px;
        max-width: 120px;
        max-height: 120px;
        padding: 12px;
    }

    .sector-card i {
        font-size: 26px;
    }

    .sector-card h4 {
        font-size: 13px;
    }


}

 .refsube {
    
    display: inline-block; 
    font-size: 30px;
    font-weight: 500;
    background: linear-gradient(90deg, #c01719, #0e3641, #c01719);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;


 }




#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(90deg, #c01719, #0e3641);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10000;
}

/* Buton görünür olunca */
#scrollToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hover efekti */
#scrollToTopBtn:hover {
  transform: scale(1.1);
}

/* Buton tıklanınca uçma animasyonu */
@keyframes flyUpAndFade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

#scrollToTopBtn.fly {
  animation: flyUpAndFade 0.6s forwards;
}
/* Responsive */
@media(max-width:768px) {
    .sector-wrapper {
        gap: 14px;
        padding: 20px 5%;
    }

    .sector-card {
        width: 100px;
        height: 100px;
        max-width: 100px;
        max-height: 100px;
        padding: 10px;
    }

    .sector-card i {
        font-size: 22px;
    }

    .sector-card h4 {
        font-size: 12px;
    }
 
}

/* Responsive */
@media(max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
    }

    .left-card, .right-card {
        transform: translateX(0);
    }
}




/*Responsive*/




@media (max-width: 380px) {

    .hero-section {
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
        height: auto !important;
    }

    .hero-card {
        padding: 20px !important;
    }
}
@media (max-width: 576px) {
    .sector-wrapper {
        gap: 12px;
        padding: 18px 4%;
    }

    .sector-card {
        width: 90px;
        height: 90px;
        max-width: 90px;
        max-height: 90px;
        padding: 8px;
        border-radius: 15px;
    }

    .sector-card i {
        font-size: 20px;
    }

    .sector-card h4 {
        font-size: 11px;
    }

    

    .main-title, 
    .main-titlee {
        font-size: 26px;
    }

    #slide-text {
        font-size: 18px;
    }

    .textt {
        font-size: 14px;
    }

    .secondary-cta {
        font-size: 14px;
        padding: 8px 16px;
    }

    
}
@media (max-width: 991px) {



    #slide-text {
        font-size: 24px;
        text-align: center;
    }

    .main-title, 
    .main-titlee {
        font-size: 32px;
    }

    .textt {
        font-size: 16px;
    }

    .secondary-cta {
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media (max-width: 1200px) {

    .hero-wrapper {
        padding: 0px 0px !important;
        height: auto !important;
    }

    #slide-text {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .about-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-card, 
    .right-card {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-content h2 {
        font-size: 2.5em;
    }

    .lang-btn {
        position: absolute;
        right: 1px;
        top: -13px;
        padding: 5px 10px;
        font-size: 14px;
    }
}
@media (max-width: 400px) {
    .sector-wrapper {
        gap: 10px;
    }

    .sector-card {
        width: 80px;
        height: 80px;
        max-width: 80px;
        max-height: 80px;
        padding: 6px;
        border-radius: 14px;
    }

    .sector-card i {
        font-size: 18px;
    }

    .sector-card h4 {
        font-size: 10px;
    }
}


/* baslangıçç */



/*MOBILE*/
@media (max-width: 600px) {
    .hero-wrapper {
        padding: 20px 10px;
        gap: 25px;
         height: auto !important;
         display: block;
    }
.hero-left {
        padding: 20px 10px;
         height: auto !important;
         text-align: center !important;
         
    }
    .hero-image img {
        max-width: 350px;
    }
}


/* SMALL MOBILE  */
@media (max-width: 450px) {
    .hero-wrapper {
        padding: 30px 15px;
        gap: 20px;
         height: auto !important;
    }

    .hero-image img {
        max-width: 280px;
    }
}
 .footer {
            padding: 40px;
            background: #111;
            color: #aaa;
            text-align: center;
        }


        