.about .section1{
    height: 100vh;
    width: 100%;
    background-image: url('../images/half-horse-half-robot-animal-with-futuristic-tech-parts.webp');
    background-size: cover;
    background-color: rgba(255, 0, 0, 1); /* Yarı saydam kırmızı arka plan rengi */
    background-size: cover;          /* Resmi kapsayıcıya göre boyutlandır */
    background-position: top;     /* Resmi merkezde konumlandır */
    position: relative;
}

.about .section2{
    height: 100vh;
    width: 100%;
    background-image: url('../images/neon-hologram-tiger.webp');
    background-size: cover;
    background-color: rgba(255, 0, 0, 1); /* Yarı saydam kırmızı arka plan rengi */
    background-size: cover;          /* Resmi kapsayıcıya göre boyutlandır */
    background-position: top;     /* Resmi merkezde konumlandır */
    position: relative;
}

.about .section3{
    height: 100vh;
    width: 100%;
    background-image: url('../images/high-tech-travel-future-time.webp');
    background-size: cover;
    background-color: rgba(255, 0, 0, 1); /* Yarı saydam kırmızı arka plan rengi */
    background-size: cover;          /* Resmi kapsayıcıya göre boyutlandır */
    background-position: top;     /* Resmi merkezde konumlandır */
    position: relative;
}

.section1-shadow{
    width: 100%;
    height: 100vh;
    background: radial-gradient(79.44% 79.44% at 50% 15.14%, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.section2-shadow{
    width: 100%;
    height: 100vh;
    background: radial-gradient(78.15% 46.84% at 89.83% 48.06%, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    position: absolute;
    top: 0;
    left: 0;
}

.section3-shadow{
    width: 100%;
    height: 100vh;
    background: radial-gradient(102.37% 52.74% at 48.33% 73.17%, rgba(29, 29, 29, 0.3) 0%, #1D1D1D 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.section1-inner{
    width: 900px;
    text-align: center;
    margin: 0 auto;
    top: 220px;
    position: absolute;
    left: calc((100% - 900px) / 2);
    color: #fff;
}

.section1-inner h2{
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 35px;
}

.section1-inner p{
    font-size: 19px;
    font-weight: 100;
}

.section1-inner{
    position: absolute;
    z-index: 99999;
}


.section2-inner{
    position: relative;
    z-index: 99999;
}

.section2-inner .section-title h2{
    color: #fff;
    text-shadow: 
        3px 3px 0 #118d2aa2, /* Sağ alt gölge */
        -3px -3px 0 #118d2aa2, /* Sol üst gölge */
        1px -1px 0 #118d2aa2, /* Sağ üst gölge */
        -1px 1px 0 #118d2aa2; /* Sol alt gölge */
    font-size: 40px;
}

.section2-inner{
    padding-top: 100px;
    width: 610px;
}

.section-title-bottom-line{
    height: 7px;
    width: 300px;
    background: linear-gradient(90deg, #1D1D1D 0%, #2FBA47 100%);
    margin-top: 15px;
    margin-bottom: 25px;
}

.section-subtitle{
    font-weight:400;
    color: #FFFFFF;
    font-size: 24px;
}

.section-2-section-content{
    width: 400px;
    font-weight: 300;
    font-size: 15px;
    color: #fff;
    margin-top: 80px;
}

.section-3-title{
    color: #C4C4C4;
    display: flex;
    justify-content: center;
}

.section-3-title h2{
    font-size: 124px;
    font-weight: bold;
    background: linear-gradient(45deg, rgba(196, 196, 196, 0.7), rgba(29, 29, 29, 0.7));
    background: linear-gradient(0deg, rgba(196, 196, 196, 0.7) 29.87%, rgba(29, 29, 29, 0.7) 95.13%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-3-inner{
    position: relative;
    z-index: 9999;
}

.section-3-content{
    width: 650px;
    margin: 0 auto;
}

.section-3-content p{
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin-top: 80px;
}

.section-3-content span{
    color: #fff;
    text-align: center;
    font-size: 17px;
    text-align: center;
    display: block;
    margin-top: 40px;
}

@media only screen and (max-width: 600px) {
    .section1-inner{
        width: auto !important;
    }

    .section2-inner{
        width: auto;
    }

    .section-3-content{
        width: auto;
    }

    .section-3-title h2{
        font-size: 42px;
    }

    .section-2-section-content{
        width: auto;
    }

    .section1-inner{
        left: 0;
    }
}