/* ===== HERO ZORLA ALT ORTA (DESKTOP) ===== */
.hero-content{
    position:absolute !important;

    left:50% !important;
    bottom:80px !important;   /* 🔥 buradan yüksekliği ayarla */

    top:auto !important;

    transform:translateX(-50%) !important; /* sadece ortala */

    display:flex !important;
    flex-direction:column;

    align-items:center !important;
    justify-content:flex-end !important;

    text-align:center !important;

    z-index:999 !important;
}

/* 🔥 ANİMASYON EZİLMESİN DİYE OVERRIDE */
.hero-content{
    animation: fadeUpFix 1s ease !important;
}

@keyframes fadeUpFix{
    from{
        opacity:0;
        transform:translateY(40px) translateX(-50%);
    }
    to{
        opacity:1;
        transform:translateY(0) translateX(-50%);
    }
}

/* 🔥 YAZI ARALIĞI SIKI */
.hero-content h1{
    margin-bottom:5px !important;
}

.hero-content p{
    margin:0 !important;
}/* ===== HERO ZORLA ALT ORTA (DESKTOP) ===== */
.hero-content{
    position:absolute !important;

    left:50% !important;
    bottom:80px !important;   /* 🔥 buradan yüksekliği ayarla */

    top:auto !important;

    transform:translateX(-50%) !important; /* sadece ortala */

    display:flex !important;
    flex-direction:column;

    align-items:center !important;
    justify-content:flex-end !important;

    text-align:center !important;

    z-index:999 !important;
}

/* 🔥 ANİMASYON EZİLMESİN DİYE OVERRIDE */
.hero-content{
    animation: fadeUpFix 1s ease !important;
}

@keyframes fadeUpFix{
    from{
        opacity:0;
        transform:translateY(40px) translateX(-50%);
    }
    to{
        opacity:1;
        transform:translateY(0) translateX(-50%);
    }
}

/* 🔥 YAZI ARALIĞI SIKI */
.hero-content h1{
    margin-bottom:5px !important;
}

.hero-content p{
    margin:0 !important;
}

























/* ===== HERO MOBİL ZORLA ALT ===== */
@media (max-width:768px){

  .hero-content{
      position:absolute !important;

      left:50% !important;
      bottom:25px !important;   /* 🔥 mobilde aşağıda */

      top:auto !important;

      transform:translateX(-50%) !important;

      width:100%;
      padding:0 15px;

      display:flex !important;
      flex-direction:column;

      align-items:center !important;
      justify-content:flex-end !important;

      text-align:center !important;

      z-index:999 !important;
  }

  /* yazı sıkı */
  .hero-content h1{
      font-size:20px !important;
      margin-bottom:4px !important;
  }

  .hero-content p{
      font-size:12px !important;
      margin:0 !important;
  }

}











/* =========================================
   SHOWCASE SLIDER
========================================= */

.showcase-slider-section{
    width:100%;
    overflow:hidden;
    padding:20px 0 80px;
    background:#f4f8fb;
}

/* SLIDER */
.showcase-slider{
    width:100%;
    overflow:hidden;
}

/* TRACK */
.showcase-track{
    display:flex;
    align-items:center;
    gap:28px;

    width:max-content;

    padding-left:120px;

    will-change:transform;

    backface-visibility:hidden;
    transform:translateZ(0);

    animation:showcaseMove 38s linear infinite;
}

/* ITEM */
.showcase-item{
    position:relative;

    flex:none;

    width:720px;
    min-width:720px;

    height:420px;

    display:flex;
    align-items:center;
}

/* =========================================
   BÜYÜK KUTU
========================================= */

.showcase-content{
    width:100%;

    min-height:320px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:
    linear-gradient(135deg,#0b2c40,#11415d);

    border-radius:32px;

    padding:
    70px
    55px
    70px
    285px;

    position:relative;

    overflow:hidden;

    color:#fff;

    box-sizing:border-box;

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}

/* glow */
.showcase-content::before{
    content:"";

    position:absolute;

    width:320px;
    height:320px;

    right:-120px;
    top:-120px;

    background:
    radial-gradient(
        circle,
        rgba(127,179,213,.18),
        transparent 70%
    );
}

/* =========================================
   KÜÇÜK KUTU
========================================= */

.showcase-product{
    position:absolute;

    left:35px;
    top:50%;

    transform:translateY(-50%);

    width:230px;
    height:230px;

    background:#fff;

    border-radius:28px;

    z-index:5;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

/* ÜRÜN */
.showcase-product img{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    max-width:78%;
    max-height:78%;

    width:auto;
    height:auto;

    object-fit:contain;

    display:block;

    transition:.35s ease;
}

/* hover */
.showcase-item:hover .showcase-product img{
    transform:
    translate(-50%,-52%)
    scale(1.03);
}

/* =========================================
   YAZILAR
========================================= */

.showcase-label{
    display:inline-block;

    color:#7fb3d5;

    font-size:10px;
    letter-spacing:3px;

    margin-bottom:12px;

    text-transform:uppercase;
}

/* BAŞLIK */
.showcase-content h2{
    font-size:32px;
    line-height:1.15;

    margin:0 0 12px;

    max-width:300px;
}

/* TEXT */
.showcase-content p{
    font-size:14px;
    line-height:1.8;

    color:rgba(255,255,255,.78);

    margin:0;

    max-width:340px;
}

/* =========================================
   AUTO SLIDE
========================================= */

@keyframes showcaseMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc((-720px - 28px) * 6));
    }

}

/* hover durdur */
.showcase-track:hover{
    animation-play-state:paused;
}

/* =========================================
   MOBİL
========================================= */

@media(max-width:768px){

    .showcase-slider{
        overflow:hidden;
    }

    .showcase-track{
        gap:16px;
        padding-left:16px;
    }

    .showcase-item{
        position:relative;

        width:86vw;
        min-width:86vw;

        height:340px;

        display:flex;
        align-items:flex-end;

        padding-top:0;
    }

    /* ANA KART */
    .showcase-content{
        width:100%;
        height:255px;

        min-height:unset;

        border-radius:26px;

        padding:
        92px
        22px
        28px
        22px;

        justify-content:flex-start;

        box-sizing:border-box;
    }

    /* ÜRÜN KUTUSU */
    .showcase-product{
        width:140px;
        height:140px;

        left:50%;
        top:0;

        transform:translate(-50%,0);

        border-radius:24px;
    }

  .showcase-product img{
    max-width:72%;
    max-height:72%;
}

    /* BAŞLIK */
    .showcase-content h2{
        font-size:21px;
        line-height:1.18;

        margin-bottom:10px;

        max-width:100%;
    }

    /* TEXT */
    .showcase-content p{
        font-size:12px;
        line-height:1.65;

        max-width:100%;
    }

    .showcase-label{
        font-size:9px;
        letter-spacing:2px;
        margin-bottom:10px;
    }

}















/* 1 - 3 - 5. kart görsellerini büyüt */
.showcase-item:nth-child(1) .showcase-product img,
.showcase-item:nth-child(3) .showcase-product img,
.showcase-item:nth-child(5) .showcase-product img{
    max-width:120%;
    max-height:120%;
left:45%;
}






/* =========================================
   SHOWCASE BUTTON
========================================= */

.showcase-btn-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.showcase-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 42px;

    background:linear-gradient(135deg,#0b2c40,#11415d);

    color:#fff;
    text-decoration:none;

    font-family:Poppins,sans-serif;
    font-size:15px;
    font-weight:600;

    border-radius:16px;

    transition:.35s ease;

    box-shadow:
    0 12px 30px rgba(0,0,0,.12);
}

.showcase-btn:hover{
    transform:translateY(-4px);

    background:linear-gradient(135deg,#11415d,#16597d);

    box-shadow:
    0 18px 40px rgba(0,0,0,.16);
}
















/* ===============================
   ABOUT MOBILE FIX
================================= */
@media (max-width:768px){

    .about{
        padding:70px 20px;
    }

    .about-inner{
        display:flex !important;
        flex-direction:column;
        gap:30px;
        align-items:stretch;
    }

    /* SOL ALAN */
    .about-left{
        width:100%;
        text-align:left;
    }

    .about-label{
        font-size:11px;
        letter-spacing:2px;
    }

    .about-left h2{
        font-size:34px;
        line-height:1.2;
        margin:8px 0 18px;
    }

    .about-left p{
        font-size:15px;
        line-height:1.9;
        margin-bottom:16px;
    }

    /* ÖZELLİKLER */
    .about-features{
        margin-top:22px;
    }

    .about-features div{
        font-size:15px;
        margin-bottom:12px;

        display:flex;
        align-items:center;
        gap:10px;
    }

    .about-features i{
        margin:0;
        font-size:14px;
        flex-shrink:0;
    }

    /* BUTON */
    .about-btn{
        margin-top:25px;
        width:fit-content;
        padding:14px 26px;
        font-size:14px;
    }

    /* GÖRSEL */
    .about-image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .about-image img{
        width:220px;
        height:320px;
        object-fit:cover;
        border-radius:28px;
    }

    /* LACİVERT İSTATİSTİK */
    .about-right{
        width:100%;
        display:grid !important;
        grid-template-columns:1fr 1fr;
        gap:15px;

        padding:22px 18px;
        border-radius:18px;

        margin-top:5px;
    }

    .stat-box{
        text-align:center;
        margin:0;
    }

    .stat-box h3{
        font-size:20px;
        margin-bottom:4px;
    }

    .stat-box span{
        font-size:12px;
        line-height:1.5;
        display:block;
    }

}















/* =========================================
   ABOUT SECTION FINAL ALIGN
========================================= */

.about{
    padding:120px 20px !important;
    background:#f4f8fb !important;
}

/* ANA YAPI */
.about-inner{

    width:100% !important;
    max-width:1250px !important;

    margin:0 auto !important;

    display:grid !important;

    grid-template-columns:
    540px 1fr !important;

    align-items:center !important;

    gap:70px !important;

    padding:0 !important;
}

/* SOL GÖRSEL */
.about-image{
    width:100% !important;
}

.about-image img{

    width:100% !important;

    height:540px !important;

    object-fit:cover !important;

    border-radius:30px !important;

    display:block !important;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12) !important;
}

/* SAĞ YAZI */
.about-left{

    width:100% !important;
    max-width:650px !important;
}

.about-label{
    display:block !important;

    margin-bottom:14px !important;
}

.about-left h2{

    font-size:64px !important;

    line-height:1.05 !important;

    margin-bottom:28px !important;

    color:#0b2c40 !important;
}

.about-left p{

    font-size:18px !important;

    line-height:1.9 !important;

    color:#555 !important;

    margin-bottom:22px !important;
}

/* ÖZELLİKLER */
.about-features{
    margin-top:25px !important;
}

.about-features div{

    display:flex !important;
    align-items:center !important;

    gap:12px !important;

    margin-bottom:16px !important;

    font-size:17px !important;
}

/* BUTON */
.about-btn{

    display:inline-flex !important;

    align-items:center !important;
    justify-content:center !important;

    margin-top:24px !important;

    padding:16px 34px !important;

    border-radius:999px !important;

    font-size:16px !important;
}

/* ALT LACİVERT */
.about-right{

    width:100% !important;
    max-width:1050px !important;

    margin:55px auto 0 !important;

    padding:40px 50px !important;

    border-radius:26px !important;
}

/* MOBİL */
@media(max-width:768px){

    .about-inner{

        grid-template-columns:1fr !important;

        gap:35px !important;
    }

    .about-image{
        order:1 !important;
    }

    .about-left{
        order:2 !important;
        max-width:100% !important;
    }

    .about-image img{

        height:auto !important;

        max-height:none !important;
    }

    .about-left h2{
        font-size:40px !important;
    }

    .about-left p{
        font-size:15px !important;
    }

}








/* =========================================
   ABOUT MOBILE FIX
========================================= */

@media(max-width:768px){

    .about-inner{

        display:flex !important;
        flex-direction:column !important;

        gap:30px !important;

        padding:0 20px !important;
    }

    /* GÖRSEL ÜST */
    .about-image{

        width:100% !important;

        order:1 !important;

        display:flex !important;
        justify-content:center !important;
    }

    .about-image img{

        width:100% !important;
        max-width:100% !important;

        height:auto !important;

        border-radius:24px !important;

        display:block !important;
    }

    /* YAZI ALT */
    .about-left{

        width:100% !important;
        max-width:100% !important;

        order:2 !important;
    }

    .about-left h2{
        font-size:42px !important;
        line-height:1.1 !important;
    }

    .about-left p{

        font-size:15px !important;
        line-height:1.9 !important;
    }

    /* İSTATİSTİK */
    .about-right{

        width:100% !important;

        display:grid !important;

        grid-template-columns:1fr 1fr !important;

        gap:18px !important;

        padding:25px 20px !important;
    }

}