/* ==========================================================
   DIJITAL YONCA PREMIUM THEME
   Version : 1.0
   Developer : Mevlüt Kerem Kırantepe
   ========================================================== */

/* ==========================================================
   ROOT
   ========================================================== */

:root{

    --dy-primary:#6DFF8B;
    --dy-primary-hover:#4DFF73;

    --dy-secondary:#6C63FF;

    --dy-dark:#070B11;
    --dy-dark-2:#0F172A;
    --dy-dark-3:#151D2D;

    --dy-white:#FFFFFF;
    --dy-light:#F8FAFC;

    --dy-text:#D5D8DF;
    --dy-text-light:#98A2B3;

    --dy-border:rgba(255,255,255,.08);

    --dy-glass:rgba(255,255,255,.05);

    --dy-shadow:
        0 15px 45px rgba(0,0,0,.30);

    --dy-radius:20px;

    --dy-transition:.35s ease;

}

/* ==========================================================
   RESET
   ========================================================== */

*,
*::before,
*::after{

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--dy-dark);

    color:var(--dy-text);

    overflow-x:hidden;

    line-height:1.7;

}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:"Space Grotesk",sans-serif;

    color:#fff;

    font-weight:700;

    line-height:1.2;

    margin-bottom:1rem;

}

p{

    color:var(--dy-text-light);

    margin-bottom:1rem;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--dy-transition);

}

img{

    max-width:100%;

    height:auto;

    display:block;

}

/* ==========================================================
   SELECTION
   ========================================================== */

::selection{

    background:var(--dy-primary);

    color:#000;

}

/* ==========================================================
   SCROLLBAR
   ========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0A0E15;

}

::-webkit-scrollbar-thumb{

    background:var(--dy-primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--dy-primary-hover);

}

/* ==========================================================
   CONTAINER
   ========================================================== */

.container{

    position:relative;

    z-index:2;

}

/* ==========================================================
   SECTION
   ========================================================== */

.section{

    position:relative;

    padding:120px 0;

}

.section-title{

    margin-bottom:70px;

}

.section-title span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(109,255,139,.08);

    color:var(--dy-primary);

    font-weight:600;

    font-size:.85rem;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:22px;

    font-size:clamp(2rem,4vw,3.5rem);

}

.section-title p{

    max-width:760px;

    margin:25px auto 0;

}

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn-primary-premium,
.dy-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.75rem;

    padding:15px 34px;

    border-radius:999px;

    background:var(--dy-primary);

    color:#000;

    font-weight:700;

    transition:var(--dy-transition);

    box-shadow:
        0 15px 40px rgba(109,255,139,.30);

}

.btn-primary-premium:hover,
.dy-btn-primary:hover{

    transform:translateY(-4px);

    background:var(--dy-primary-hover);

    color:#000;

}

.btn-secondary-premium{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.75rem;

    padding:15px 34px;

    border-radius:999px;

    border:1px solid var(--dy-border);

    background:rgba(255,255,255,.05);

    color:#fff;

    transition:var(--dy-transition);

    backdrop-filter:blur(16px);

}

.btn-secondary-premium:hover{

    border-color:var(--dy-primary);

    color:var(--dy-primary);

    transform:translateY(-4px);

}



/* ==========================================================
   UTILITY
   ========================================================== */

.dy-text-primary{

    color:var(--dy-primary);

}

.dy-rounded{

    border-radius:var(--dy-radius);

}

.dy-shadow{

    box-shadow:var(--dy-shadow);

}

.dy-glass{

    background:var(--dy-glass);

    border:1px solid var(--dy-border);

    backdrop-filter:blur(20px);

}

/* ==========================================================
   PRELOADER
   ========================================================== */

#preloader{

    position:fixed;

    inset:0;

    z-index:99999;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--dy-dark);

    transition:.6s;

}

.dy-loader{

    position:relative;

    width:180px;

    height:180px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.dy-loader-ring{

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    border:3px solid rgba(255,255,255,.05);

    border-top:3px solid var(--dy-primary);

    animation:dyRotate 1.1s linear infinite;

}

.dy-loader-logo{

    width:85px;

}

.dy-loader-logo img{

    width:100%;

}

/* ==========================================================
   HEADER
   ========================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:18px 0;

    transition:.35s;

    background:transparent;

}

.header.header-scrolled{

    background:rgba(7,11,17,.88);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

/* ==========================================================
   NAVBAR
   ========================================================== */

.dy-navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:2.5rem;

}

.dy-logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.dy-logo img{

    width:46px;

    height:46px;

    object-fit:contain;

}

.dy-logo-title{

    display:block;

    color:#fff;

    font-size:1.1rem;

    font-weight:700;

}

.mobile-nav-toggle{

    display:none;

    align-items:center;

    justify-content:center;

    width:46px;

    height:46px;

    border:none;

    background:transparent;

    color:#fff;

    font-size:1.3rem;

    cursor:pointer;

}

@media (max-width:991px){

    .mobile-nav-toggle{

        display:flex;

    }

}

@media (min-width:992px){

    .mobile-nav-toggle{

        display:none;

    }

}

/* ==========================================================
   MENU
   ========================================================== */

.navmenu ul{

    display:flex;

    align-items:center;

    gap:2.5rem;

    list-style:none;

    margin:0;

    padding:0;

}

.navmenu a{

    position:relative;

    color:#fff;

    font-weight:500;

}

.navmenu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--dy-primary);

    transition:.35s;

}

.navmenu a:hover::after,

.navmenu .active::after{

    width:100%;

}

.navmenu a:hover{

    color:var(--dy-primary);

}

/* ==========================================================
   ACTIONS
   ========================================================== */

.dy-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.dy-social{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.dy-social:hover{

    background:var(--dy-primary);

    color:#000;

}

/* ==========================================================
   HERO
   ========================================================== */

.hero{

    position:relative;

    overflow:hidden;

    padding:140px 0 120px;


    min-height:100vh;

    display:flex;

    align-items:center;

}

.hero-bg-gradient{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,
    rgba(109,255,139,.12),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(108,99,255,.10),
    transparent 40%);

}

.hero-grid{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    mask-image:linear-gradient(to bottom, black, transparent);

}

/* ==========================================================
   HERO CONTENT
   ========================================================== */

.hero-content{

    position:relative;

    z-index:3;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:.6rem;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(109,255,139,.08);

    color:var(--dy-primary);

    margin-bottom:28px;

    font-weight:600;

}

.hero-content h1{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.05;

    margin-bottom:28px;

}

.hero-content h1 span{

    color:var(--dy-primary);

}

.hero-content p{

    font-size:1.15rem;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:45px;

}

/* ==========================================================
   HERO IMAGE
   ========================================================== */

.hero-visual{

    position:relative;

}

.hero-image{

    position:relative;

    border-radius:32px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.hero-image img{

    width:100%;

    transition:.6s;

}

.hero-image:hover img{

    transform:scale(1.05);

}


.hero::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-180px;

    width:1400px;

    height:420px;

    transform:translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(109,255,139,.05),
            rgba(108,99,255,.03),
            transparent 75%
        );

    filter:blur(80px);

    pointer-events:none;

}


/* ==========================================================
   ANIMATIONS
   ========================================================== */

@keyframes dyRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================================
   AI PRODUCTION
   ========================================================== */

.ai-production{

    position:relative;

}

.ai-card{

    height:100%;

    padding:40px;

    text-align:center;

}

.ai-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        rgba(109,255,139,.18),
        rgba(108,99,255,.12)
    );

    font-size:2rem;

    color:var(--dy-primary);

}

.ai-card h3{

    margin-bottom:20px;

}

.ai-card:hover .ai-icon{

    transform:rotate(-8deg) scale(1.08);

    transition:.35s;

}

/* ==========================================================
   SERVICES
   ========================================================== */

.service-card{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:35px;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        transparent,
        rgba(109,255,139,.04)
    );

    opacity:0;

    transition:.35s;

}

.service-card:hover::before{

    opacity:1;

}

.service-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(109,255,139,.08);

    color:var(--dy-primary);

    font-size:1.8rem;

    margin-bottom:24px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.service-tags span{

    padding:7px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    font-size:.8rem;

}

.service-card:hover .service-tags span{

    border-color:rgba(109,255,139,.25);

}



/* ==========================================================
   BLOG
   ========================================================== */

.blog-card{

    overflow:hidden;

}

.blog-image{

    overflow:hidden;

}

.blog-image img{

    transition:.45s;

}

.blog-card:hover .blog-image img{

    transform:scale(1.08);

}

.blog-content{

    padding:30px;

}

.blog-content span{

    display:inline-block;

    margin-bottom:15px;

    color:var(--dy-primary);

    font-size:.85rem;

    font-weight:600;

}

.blog-content h3{

    font-size:1.4rem;

    margin-bottom:18px;

}

.blog-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    color:var(--dy-primary);

    font-weight:600;

}

/* ==========================================================
   FAQ
   ========================================================== */

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    padding:30px;

    margin-bottom:22px;

}

.faq-item h3{

    font-size:1.2rem;

    margin-bottom:18px;

}

.faq-item p{

    margin-bottom:0;

}

/* ==========================================================
   CTA
   ========================================================== */

.cta-box{

    padding:70px;

    text-align:center;

    background:

    linear-gradient(
        135deg,
        rgba(109,255,139,.08),
        rgba(108,99,255,.06)
    );

}

.cta-box h2{

    font-size:clamp(2rem,4vw,3rem);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:35px;

}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact-info{

    height:100%;

    padding:40px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:35px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(109,255,139,.08);

    color:var(--dy-primary);

    font-size:1.4rem;

    flex-shrink:0;

}

.contact-item h4{

    margin-bottom:8px;

}

.contact-item p,
.contact-item a{

    color:var(--dy-text-light);

}

.contact-item a:hover{

    color:var(--dy-primary);

}

/* ==========================================================
   CONTACT FORM
   ========================================================== */

.contact-form{

    padding:40px;

}

.contact-form .form-control,
.contact-form .form-select{

    height:58px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:#fff;

    box-shadow:none;

}

.contact-form textarea.form-control{

    min-height:170px;

    resize:vertical;

    padding-top:18px;

}

.contact-form .form-control::placeholder{

    color:rgba(255,255,255,.45);

}

.contact-form .form-control:focus,
.contact-form .form-select:focus{

    border-color:var(--dy-primary);

    box-shadow:0 0 0 .2rem rgba(109,255,139,.12);

    background:rgba(255,255,255,.06);

    color:#fff;

}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer{

    padding:90px 0 30px;

    background:#05080E;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-about p{

    margin-top:25px;

}

.footer-logo img{

    width:180px;

}

.footer h4{

    margin-bottom:22px;

}

.footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:var(--dy-text-light);

}

.footer ul li a:hover{

    color:var(--dy-primary);

}

.footer-contact li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.footer-contact i{

    color:var(--dy-primary);

}

.footer-social{

    display:flex;

    gap:14px;

    margin-top:25px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--dy-primary);

    color:#000;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:55px 0 30px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    color:var(--dy-text-light);

}

/* ==========================================================
   FOOTER LOGO
========================================================== */

.footer-logo{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    text-decoration:none;

}

.footer-logo img{

    width:42px;

    height:42px;

    object-fit:contain;

}

.footer-logo-text{

    display:flex;

    flex-direction:column;

}

.footer-logo-title{

    color:#fff;

    font-size:1.7rem;

    font-weight:700;

    line-height:1;

    transition:color .35s ease;

}

.footer-logo:hover .footer-logo-title{

    color:var(--dy-primary);

}

@media (max-width:991.98px){

    .footer-logo{

        width:100%;

        justify-content:center;

    }

    .footer-logo img{

        display:none;

    }

    .footer-logo-title{

        font-size:2rem;

    }


    /* ==========================================================
   FOOTER MOBILE
========================================================== */

    /* İletişim Başlığı */

    .footer h4{

        text-align:center;

    }

    /* Liste */

    .footer-contact{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:18px;

        padding:0;

        margin:0;

        list-style:none;

    }

    /* Her satır */

    .footer-contact li{

        display:flex;

        align-items:center;

        justify-content:center;

        gap:12px;

        text-align:center;

    }

    /* İkon */

    .footer-contact li i{

        margin:0;

        color:var(--dy-primary);

        font-size:1.05rem;

        flex-shrink:0;

    }

}

/* ==========================================================
   SCROLL TOP
   ========================================================== */

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--dy-primary);

    color:#000;

    font-size:1.5rem;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:999;

    box-shadow:0 15px 40px rgba(109,255,139,.35);

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}


/* ==========================================================
   TABLET
   ========================================================== */

@media(max-width:991px){

.hero{

    padding:180px 0 100px;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-technologies{

    justify-content:center;

}

.dy-actions{

    display:none;

}

.section{

    padding:90px 0;

}

.cta-box{

    padding:45px;

}

.contact-info{

    margin-bottom:30px;

}

.footer{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

.footer-bottom{

    justify-content:center;

}

}

/* ==========================================================
   MOBILE
   ========================================================== */

@media(max-width:767px){

.section{

    padding:75px 0;

}

.hero-content h1{

    font-size:2.5rem;

}

.section-title h2{

    font-size:2rem;

}

.contact-form,
.contact-info{

    padding:25px;

}

.cta-box{

    padding:30px;

}

.btn-primary-premium,
.btn-secondary-premium,
.dy-btn-primary{

    width:100%;

}

.hero-buttons{

    flex-direction:column;

}

}

/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media(max-width:576px){

.hero{

    padding-top:150px;

}

.dy-logo img{

    width:45px;

}

.dy-logo-title{

    font-size:1.05rem;
    
}

.hero-technologies span{

    font-size:.78rem;

}

.footer-logo img{

    width:150px;

}

}

/* ==========================================================
   PREMIUM EFFECTS
   ========================================================== */

/* Glow Animation */

@keyframes dyGlow{

    0%,100%{

        filter:drop-shadow(0 0 10px rgba(109,255,139,.15));

    }

    50%{

        filter:drop-shadow(0 0 25px rgba(109,255,139,.35));

    }

}

.hero-image{

    animation:dyGlow 4s ease-in-out infinite;

}

/* Floating Animation */

@keyframes dyFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

.ai-icon,
.service-icon{

    animation:dyFloat 6s ease-in-out infinite;

}

/* Fade Up */

@keyframes dyFadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.section{

    animation:dyFadeUp .8s ease both;

}


/* Better Focus */

input:focus,
textarea:focus,
select:focus,
button:focus{

    outline:none;

}



/* Lazy Images */

img{

    image-rendering:auto;

}

/* Utility */

.dy-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.dy-text-center{

    text-align:center;

}

.dy-mt{

    margin-top:80px;

}

.dy-mb{

    margin-bottom:80px;

}

.dy-hidden{

    display:none;

}

/* Print */

@media print{

    .header,
    .footer,
    .scroll-top,
    .btn-primary-premium,
    .btn-secondary-premium{

        display:none !important;

    }

    body{

        background:#fff;

        color:#000;

    }

}

/* ==========================================================
   SERVICES MOBILE
========================================================== */

@media (max-width:991.98px){

    /* Kart */

    .service-card{

        text-align:center;

        padding:28px;

    }

    /* İkon */

    .service-icon{

        margin:0 auto 22px;

    }

    /* Başlık */

    .service-card h3{

        text-align:center;

        margin-bottom:18px;

    }

    /* Açıklama */

    .service-card p{

        max-width:280px;

        margin:0 auto 24px;

        text-align:left;

        line-height:1.65;

    }

    /* Etiketler */

    .service-tags{

        justify-content:center;

    }

}

/* ==========================================================
   GLOBAL TRANSITIONS
   ========================================================== */

button,
a,
input,
textarea,
select,
img{

    transition:all .35s ease;

}

/* ==========================================================
   IMAGE OPTIMIZATION
========================================================== */

.portfolio-card img,
.blog-card img{

    display:block;

    width:100%;

    height:auto;

    will-change:transform;

}

/* ==========================================================
   CARD SYSTEM
========================================================== */

.ai-card,
.service-card,
.portfolio-card,
.blog-card,
.contact-form,
.contact-info,
.cta-box,
.faq-item{

    background:rgba(255,255,255,.04);

    border:1px solid var(--dy-border);

    border-radius:var(--dy-radius);

    backdrop-filter:blur(18px);

    transition:all .35s ease;

}

.ai-card:hover,
.service-card:hover,
.portfolio-card:hover,
.blog-card:hover,
.contact-info:hover,
.contact-form:hover{

    transform:translateY(-8px);

    border-color:rgba(109,255,139,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

/* Backdrop Filter Fallback */

@supports not (backdrop-filter: blur(18px)) {

    .ai-card,
    .service-card,
    .portfolio-card,
    .blog-card,
    .contact-form,
    .contact-info,
    .cta-box,
    .faq-item{

        background:rgba(20,20,20,.92);

    }

}

/* ==========================================================
   WHY US
========================================================== */

.why-row{

    position:relative;

}

.why-card{

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    height:100%;

    padding:42px 32px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    backdrop-filter:blur(18px);

    transition:
        transform .35s ease,
        opacity .35s ease,
        filter .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.why-card i{

    font-size:2.7rem;

    color:#69ff8d;

    margin-bottom:24px;

    transition:
        transform .35s ease,
        filter .35s ease;

}

.why-card h3{

    margin-bottom:18px;

    font-size:2rem;

    color:#fff;

}

.why-card p{

    margin:0;

    color:#98A2B3;

    line-height:1.8;

}

/* Grup hover */

.why-row:hover .why-card{

    opacity:.70;

    filter:blur(.8px);

    transform:scale(.985);

}

/* Aktif kart */

.why-row:hover .why-card:hover{

    opacity:1;

    filter:none;

    transform:translateY(-8px) scale(1.02);

    border-color:rgba(109,255,139,.35);

    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        0 0 20px rgba(109,255,139,.10);

}

/* Aktif kart ikonu */

.why-row:hover .why-card:hover i{

    transform:scale(1.12);

    filter:drop-shadow(0 0 14px rgba(109,255,139,.35));

}


/* Scrool Top */
body.mobile-nav-active .scroll-top{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}


/* ==========================================================
   WHY HOVER EFFECT
========================================================== */

.why-row:hover .why-card{

    opacity:.75;
    filter:blur(1px);
    transform:scale(.985);

}

.why-row:hover .why-card:hover{

    opacity:1;
    filter:blur(0);
    transform:scale(1.02);

    border-color:#69ff8d;

}

/* ==========================================================
   FAQ HOVER EFFECT
========================================================== */

/* Kart */

.faq-item{

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        opacity .45s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

/* Başlık */

.faq-item h3{

    display:flex;

    align-items:center;

    gap:12px;

    transition:color .35s ease;

}

/* ==========================================================
   FAQ Arrow
========================================================== */

.faq-item h3{

    display:flex;

    align-items:center;

    gap:0;

    transition:transform .45s cubic-bezier(.22,1,.36,1);

}

.faq-arrow{

    width:0;

    overflow:hidden;

    opacity:0;

    color:var(--dy-primary);

    font-size:1.25rem;

    transform:translateX(-10px);

    transition:
        width .35s ease,
        opacity .35s ease,
        transform .45s cubic-bezier(.22,1,.36,1);

}

/* Diğer kartlar */

.faq-row:has(.faq-item:hover) .faq-item:not(:hover){

    opacity:.72;

    transform:scale(.985);

}

/* Hover */

.faq-item:hover h3{

    transform:translateX(10px);

}

.faq-item:hover .faq-arrow{

    width:18px;

    opacity:1;

    transform:translateX(0);

}

/* Hover edilen kart */

.faq-item:hover{

    transform:translateY(-6px);

    border-color:rgba(109,255,139,.35);

    background:rgba(255,255,255,.03);

    box-shadow:
        0 16px 36px rgba(0,0,0,.28),
        0 0 22px rgba(109,255,139,.08);

}

/* Başlık */

.faq-item:hover h3{

    color:#fff;

}