* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #101010;
}

.container {
    width: 100%;
    height: 100vh;
}

.content_section {
    overflow: hidden;
    padding: 75px;
}

.vid {
    padding: 35px;
    border-radius: 50px;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(84%);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.navbarbox {
    display: flex;
    gap: 20px;
    background: linear-gradient(90deg, rgba(17, 250, 134, 0.42) 0%, rgba(240, 199, 8, 0.42) 100%);
    backdrop-filter: blur(4.7px);
    border-radius: 20px;
    align-items: center;
    padding: 15px 21px;
}

.menu_nav {
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}

/* Açılır Menu */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #15161fec;
    backdrop-filter: blur(10px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    padding: 65px;
}


.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}


.menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
    margin-top: 100px;
}

.menu-links li {
    margin: 20px 0;
}

.menu-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.3s ease, filter 0.3s ease;
    filter: blur(2px);
}

.menu-links li.active a,
.menu-links a:hover {
    color: #ffffff;
    filter: blur(0px);
}

/* Açılır Menu */


.menu_nav #menu_text {
    font-size: 19px;
    color: #fff;
    font-weight: 100;
}

.menu_nav #menu_icon {
    width: 30px;
    height: 30px;
    padding: 3px;
}

#menu_icon path {
    stroke: rgb(250, 247, 247);
    stroke-width: 3.0;
}

.yildizlar {
    display: flex;
    align-items: center;
    gap: 9px;
}

i {
    color: #FFE100;
    font-size: 25px;
}

#logo img {
    width: 60px;
}

.navbarbox .EE {
    background: rgba(201, 201, 201, 0.13);
    padding: 8px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.navbarbox .EE:hover {
    background: rgba(201, 201, 201, 0.23);
}

.navbarbox .EE a {
    color: #fff;
    font-size: 15px;
    font-weight: 100;
}

.navbarbox .box {
    width: 23px;
    height: 23px;
    background: rgba(0, 255, 144, 0.38);
    border-radius: 50%;
}

.navbarbox .box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #00FF90;
    box-shadow: 0px 3px 5.1px #00FF90;
    border-radius: 50%;
    position: absolute;
    top: 26.5px;
    right: 27px;
    animation: HekKapa 2.8s infinite ease-in-out;
}

@keyframes HekKapa {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.navbar #iletisim {
    background: #FFFFFF;
    border-radius: 11px;
    padding: 15px 26px;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
    font-size: 30px;
    color: #000000;
    font-weight: 600;
    font-size: 12px;
    border: none;
}

.navbar #iletisim:hover {
    background: linear-gradient(90deg, #00FF91 0%, #FFC400 100%);
    color: #ffffff;
    animation: hekAnis 5s linear infinite;
}

@keyframes hekAnis {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.referans {
    padding: 40px;
    overflow: hidden;
    align-items: center;
}

.kaydirici {
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: kaydir 40s linear infinite;
}

.kaydirici img {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.kaydirici img:hover {
    transform: scale(1.1);
}

@keyframes kaydir {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}




img#shop {
    align-items: center;
}

.container .content_section .content {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}

.content .content_title {
    font-weight: 700;
    font-size: 70px;
    line-height: 77px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #EEFF00 0%, #1BFF9C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.content .content_text {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 20px;
}

.content_button {
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    color: white;
    transition: 5ms ease-in-out;
    background: linear-gradient(90deg, #00FF91 0%, #FFC400 100%);
    font-weight: 600;
    font-size: 16px;
}

.content_button:hover {
    background: linear-gradient(90deg, #00FF91 0%, #FFC400 100%);
    animation: hekAnis 3s linear infinite;
    background-size: 190% 550%;
    color: white;
}

@keyframes hekAnis {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container3 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container_box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.container_box .card {
    padding: 30px;
    background: #000000;
    border-radius: 17px;
    grid-column: span 2;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 1s ease;
}

.container_box .card:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #CC00FF 0%, #00FF90 100%);
    animation: hekAnis 3s linear infinite;
    background-size: 190% 550%;
}


.card.wide-card {
    grid-column: span 3;
    align-items: center;
    height: 290px;
}

.box_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box_text h1 {
    font-size: 30px;
    font-weight: 500;
    gap: 20px;
}

.box_text p {
    font-weight: 100;
    color: rgba(255, 255, 255, 0.233);
}

.fgm_ico {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.fgm_bix #imgyukari {
    margin-bottom: 30px;
}

.fgm_ico #figma {
    padding: 20px;
    align-items: center;
}

.fgm_bix {
    overflow: hidden;
    margin-right: 50px;
    animation: fgm 3s linear infinite;
}

@keyframes fgm {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    75% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

#müşteri {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 120px;
}

.content_müş1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
}

.content_müş1 h1 {
    font-size: 50px
}

.content_müş1 p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.87);
}

.content_müş {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content_müş1 {
    padding: 25px 30px;
    background: #121212;
    border-radius: 19px;
}

#tasarimm {
    position: relative;
    left: 30px;
    width: 440px;
    filter: opacity(0.3)
}

#conetnt_yaptiğimiz {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(90deg, #CC00FF 0%, #00FF90 100%);
}

.container4 {
    width: 100%;
    height: 100%;
    padding: 90px;
    position: relative;
    overflow: hidden;
}

.container4::after,
.container_sss::after {
    content: '';
    position: absolute;
    top: var(--y, 30%);
    left: var(--x, 30%);
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: linear-gradient(90deg, #CC00FF 0%, #FF008C 100%);
    filter: blur(155.8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.container4:hover::after,
.container_sss:hover::after {
    opacity: 1;
}

.box_container {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 calc(100% / 3);
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profilbox {
    width: 443px;
    height: 403px;
    padding: 25px;
    background: #161616;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


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

.profil {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 50px;
}

.profil h2 {
    font-size: 15px;
}

.profilmetin {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 6px;
    margin-left: 5px;
}

.profilmetin h1 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 200;
}

.profilmetin p {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.18);
}

.açiklama_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    font-weight: 500;
    font-size: 15px;
    color: #777777;
}

.container_sss {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    column-count: 2;
    column-gap: 16px;
}

.sss_sss {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 16px;
    border: 1px solid #ffffff07;
    border-radius: 12px;
    background-color: #141414;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sss_box {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #a2ff00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sss_box:hover {
    opacity: 0.9;
}

.sss_question {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1), opacity 0.8s ease;
}

.sss_sss.active .sss_question {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.sss_conetnt {
    padding: 0 20px 20px 20px;
    color: #8e8e8e;
    font-size: 14px;
    line-height: 1.6;
}

.sss_conetnt p {
    margin-bottom: 10px;
}

.sss_conetnt p:last-child {
    margin-bottom: 0;
}

.sss_conetnt strong {
    color: #FFFFFF;
}

/* footer  */

footer {
    width: 100%;
    height: 100%;
}

.footer_container {
    width: 90%;
    height: 100%;
    margin-top: 100px;
    margin-left: 90px;
    background: linear-gradient(180deg, #9DFF00 0%, #00FF91 100%);
    border-radius: 17px 17px 0px 0px;
}

.footer_content {
    list-style: none;
    height: 100%;
    padding: 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.siyahlogoo img {
    width: 60px;
}

.footer_metin {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.footer_metin p {
    width: 40%;
    font-weight: 300;
    font-size: 15px;
    color: #3D3D3D;
}

.teliff {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 60px;
    margin-top: 90px;
}

.teliff p {
    font-weight: 400;
    font-size: 15px;
    color: #2E2E2E;
}

#footer_başlik {
    font-weight: 700;
    font-size: 42px;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px black;
}

#footer_sayhmz li,
#footer_sayhmz a {
    color: #3a3a3a;
    font-weight: 700;
    font-size: 16px;
    transition: 0.2s ease-in-out;
    margin-top: 20px;
}

#footer_sayhmz li:hover,
#footer_sayhmz a:hover {
    color: #1a1919;
}

/* footer  */

/* scrollbar  */

::-webkit-scrollbar {
    width: 1px;
    background: none;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9DFF00 0%, #00FF91 100%);
    width: 10px;
    border-radius: 8px;
}

::-webkit-scrollbar:horizontal {
    display: none;
}

/* scrollbar  */

/* respensive  */

@media only screen and (max-width: 1303px) {
    .card #shop {
        width: 340px;
    }


}

@media only screen and (max-width: 1142px) {
    .kaydirici {
        gap: 60px;

    }
}

@media only screen and (max-width: 1056px) {
    .fgm_bix {
        display: none;
    }

    #progg {
        width: 300px;
    }
}



@media screen and (max-width: 1024px) {
    .container_box {
        grid-template-columns: repeat(4, 1fr);
    }

    .container_box .card {
        grid-column: span 2;
    }

    .card.wide-card {
        grid-column: span 4;
    }

    #müşteri {
        gap: 40px;
    }

    .footer_container {
        margin: auto;
    }

}

/* Mobil Ekranlar İçin (768px ve altı) */
@media screen and (max-width: 768px) {
    .container3 {
        height: auto;
        padding: 10px;
    }

    .container_box {
        grid-template-columns: 1fr;
    }

    .container_box .card,
    .card.wide-card {
        grid-column: span 1;
        height: auto;
    }

    .container_box .card:hover {
        transform: scale(1.02);
        /* Mobilde ekran dışına taşmayı önlemek için */
    }

    #müşteri {
        flex-direction: column;
        gap: 20px;
    }

    #conetnt_yaptiğimiz {
        flex-direction: column;
    }

    #tasarimm {
        left: 0;
        width: 400px;
    }

    .fgm_bix {
        margin-right: 0;
    }

    .content_müş1 h1 {
        font-size: 32px;
    }

    .content_müş1 p {
        font-size: 16px;
    }

    .box_text h1 {
        font-size: 22px;
    }

    #conetnt_yaptiğimiz .box_text {
        position: relative;
        bottom: 100px;
        font-size: 35px;
    }

    #conetnt_yaptiğimiz img {
        width: 450px;
    }

}

@media screen and (max-width: 702px) {
    .content {
        margin-bottom: 200px;
    }
}

@media screen and (max-width: 768px) {
    .container_sss {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (max-width: 625px) {
    #logo {
        display: none;
    }

    .footer_metin p {
        width: 100%;
    }

    .container4 {
        margin: auto;
        padding: 34px;
    }
}



@media only screen and (max-width: 545px) {
    #iletisim {
        display: none;
    }

    .navbar {
        justify-content: center;
        align-items: center;
    }

    #kalite {
        font-size: 35px;
        line-height: 34px;
    }

    #pconetnt {
        font-size: 15px;
    }
}

@media only screen and (max-width: 416px) {
    .profilbox {
        padding: 22px;
    }

    .açiklama_text {
        position: relative;
        bottom: 25px;
    }

    .active a {
        font-size: 33px;
    }
}

@media only screen and (max-width: 393px) {
    .profilmetin h1 {
        font-size: 18px;
    }

    .profilmetin p {
        font-size: 12px;
    }

    .açiklama_text {
        font-size: 12.5px;
    }

}


@media only screen and (max-width: 393px) {
    .active a {
        font-size: 24px;
    }
}