body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #fff;
    color: #111;
}

main {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    min-height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 125px;
    font-weight: 600;
    color: #4B19FF;
    line-height: 123px;
    margin: 0;
    margin-top: 50px;
    letter-spacing: -5px;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;


}

.features-box-wrapper {
    display: flex;
    align-items: center;
    gap: 33px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
    margin-top: 180px;
    margin-bottom: 180px;
    justify-content: center;
    position: relative;


}

.features-box-wrapper .feature-item {
    border-radius: 60px;
    box-shadow: 13px 9px 20px #00000012;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: calc((100% - 33px) / 2);
    min-height: 250px;
    max-height: 250px;
    margin-bottom: 40px;
}

.features-box-wrapper .feature-item .icon-box {
    display: flex;
    align-items: center;
    border-right: 1px solid rgb(223, 223, 223);
    padding: 0px 25px 0px 25px;
    height: -webkit-fill-available;
}

.features-box-wrapper .feature-item .icon-box img {
    width: 90px;
    opacity: 0.95;
}

.feature-title-description {
    padding: 10px 40px 20px 30px;
}


.features-box-wrapper .feature-item .feature-title-description .title {
    letter-spacing: -1px;
    line-height: 34px;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.features-box-wrapper .feature-item .feature-title-description .description {
    letter-spacing: px;
    line-height: 22px;
}

.feature-row {
    display: flex;

    align-items: center;
    justify-content: space-between;
    width: 100%;

    gap: 0;
}


.feature-row:first-child .feature-large-img {
    margin-bottom: 0;
}

/* 2. ve 3. satırda kutu ve metin yan yana olacak */
@media (min-width: 900px) {

    .feature-row:first-child {
        justify-content: center;
    }

    .feature-row:nth-child(2) .feature-text.ai {
        order: 1;
        text-align: left;
        max-width: max-content;
    }

    .feature-row:nth-child(2) .feature-img-small {
        order: 2;
    }

    .feature-row:nth-child(3) .feature-img-small {
        order: 1;
    }

    .feature-row:nth-child(3) .feature-text.modular {
        order: 2;
        text-align: left;
        max-width: 340px;
    }
}

/* Kutuların genişlikleri ve responsive ayarları */
.feature-video-box {
    max-width: 100%;
    width: 100%;
    height: 900px;
    overflow: hidden;
    border-radius: 0px 0px 5px 5px;
 box-shadow: 0px 20px 20px -15px #00000024;
        max-width: 1600px;
}

.feature-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.feature-text {

    margin: 24px 0 0 0;
    text-align: center;
}

@media (min-width: 900px) {
    .feature-text {
        margin: 0;
        text-align: left;
    }
}

.feature-text h2 {
    font-size: 62px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111;
    display: flex;
    flex-direction: column;
    line-height: 73px;
    margin-bottom: 26px;
}

.feature-text h2 span {
    font-weight: 600;
    color: #111;
}

.feature-text p {
    font-size: 56px;
    font-weight: 400;
    color: #222;
    margin: 0;
    max-width: 990px;
    width: auto;
    letter-spacing: -2px;
    line-height: 60px;
}

.feature-img-small {
    width: 500px;
    min-width: 500px;
    height: 500px;
    background: linear-gradient(160deg, #222 80%, #444 100%);
    border-radius: 85px;
    overflow: hidden;
}

.feature-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.mt-second-box {
    margin-top: 250px;
}

.contact-form-section {
  background: #7E07D6;
background: linear-gradient(9deg, rgba(126, 7, 214, 1) 0%, rgba(60, 0, 255, 1) 60%);
    border-radius: 60px 60px 0 0;
    padding: 80px 0 64px 0;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0px -6px 20px #00000024;
}

.form-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 16px;
}

.form-container h2 {
    text-align: center;
    font-size: 78px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #fff;
    letter-spacing: -5px;
    line-height: 82px;
    margin-top: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;

    margin: auto;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 21px;
    border: none;
    border-radius: 5px;
    padding: 19px 23px;
    margin-bottom: 0;
    outline: none;
    background: #fff;
    color: #222;
    box-sizing: border-box;
    border: unset;
  
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
    color: #8a8a8a;

}

.contact-form textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-form select {
width: 100%;
    height: 67px;
    background-color: white;
}

.contact-form button {
 
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    border: none;
    border-radius: 5px;
    padding: 14px 0;
  
    cursor: pointer;
    transition: all 0.2s ease;
   background: #0BBA8B;
background: linear-gradient(0deg, rgba(11, 186, 139, 1) 0%, rgba(0, 255, 167, 1) 100%);
    letter-spacing: -1px;
    width: 100%;
}

.contact-form button:hover {
    
    background: linear-gradient(0deg, rgb(7, 140, 105) 0%, rgb(0, 150, 98) 100%);
}

.container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100vw;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .feature-large-img {
        height: 160px;
    }

    .feature-img-small {
        width: 100px;
        height: 100px;
    }

    .form-container {
        padding: 0 4px;
    }
}


.feature-row-second .feature-img-small {
    order: unset !important;
}

.feature-row-second .feature-text {
    width: calc(100% - 500px);
    position: relative;
    text-align: right;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}


.info-box {

    width: 100%;
    margin: auto;
    max-width: 100%;
    display: flex;
    padding: 100px 0px;
    justify-content: center;
    gap: 100px;
}

.info-box .info-content {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;

}

.info-box .info-content h2 {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 80px;
    line-height: 75px;
    margin: unset;
}


.info-box .info-content h2 span.first {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #3536fe;
    text-shadow: 0 0 0px #ffffff;
    font-size: 100px;
}


.info-box .info-content h2 span.second {
    font-size: 65px;
    line-height: 123px;
}

.info-box .info-content p {

    font-size: 40px;
    line-height: 45px;
    margin: 0;
}



.info-box .info-img {
    width: 450px;
    height: 450px;
    max-width: 450px;
    min-width: 450px;
    box-shadow: 0px 0 20px #00000024;
    overflow: hidden;
    border-radius: 60px;
}



.info-box .info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.info-content h2,
.info-content p {
    will-change: transform, opacity, filter;
}



.footer-logo{
display: flex;
justify-content: center;
}
.footer-logo .logo{
    width: 500px;
    height: auto;
}
.footer-bottom-logo{
    display: flex;
justify-content: center;
margin-top: 80px;
}

.footer-bottom-logo .logo{
      width: 100px;
      height: auto;
}


@media screen and (min-width:1100px) and (max-width:1400px) {
    .info-box .info-content h2 {}

    .info-box .info-content h2 span.first {
        font-size: 80px;
    }

    .info-box .info-content h2 span.second {
        font-size: 45px;
        line-height: 75px;
        margin-bottom: 22px;
    }

    .info-box .info-img {
        width: 380px;
        height: 380px;
        max-width: 380px;
        min-width: 380px;

    }

    .info-box .info-content p {
        font-size: 35px;
        line-height: 40px;
    }

    .info-box .info-content {
        width: 58%;

    }

    .info-box {
        width: 90%;
        margin: auto;
        justify-content: space-between;
    }

    .form-container h2 {

        line-height: 77px;
        font-size: 69px;
    }

}

@media screen and (min-width:991px) and (max-width:1100px) {
    .info-box .info-content h2 {}

    .info-box .info-content h2 span.first {
        font-size: 64px;
    }

    .info-box .info-content h2 span.second {
        font-size: 40px;
        line-height: 70px;
        margin-bottom: 22px;
    }

    .info-box .info-img {
        width: 380px;
        height: 380px;
        max-width: 380px;
        min-width: 380px;

    }

    .info-box .info-content p {
        font-size: 27px;
        line-height: 30px;
    }

    .info-box .info-content {
        width: 58%;

    }

    .info-box {
        width: 90%;
        margin: auto;
        justify-content: space-between;
    }

    .form-container h2 {

        line-height: 67px;
        font-size: 60px;
        letter-spacing: -3px;
    }

    .feature-video-box {
        height: 700px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 13px 23px;
    }

}



@media screen and (min-width:768px) and (max-width:991px) {
    .info-box .info-content h2 {}

    .info-box .info-content h2 span.first {
        font-size: 55px;
    }

    .info-box .info-content h2 span.second {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .info-box .info-img {
        width: 280px;
        height: 280px;
        max-width: 280px;
        min-width: 280px;

    }

    .info-box .info-content p {
        font-size: 20px;
        line-height: 26px;
    }

    .info-box .info-content {
        width: 58%;

    }

    .info-box {
        width: 95%;
        margin: auto;
        justify-content: space-between;
    }

    .form-container h2 {
        line-height: 44px;
        font-size: 46px;
        letter-spacing: -2px;
    }

    .feature-video-box {
        height: 500px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 13px 23px;
        font-size: 18px;
    }

    .form-container {
        max-width: 630px;
    }

    .contact-form {
        width: 100%;

    }

    .features-box-wrapper {
        gap: 35px;
        max-width: 100%;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .features-box-wrapper .feature-item {
        overflow: hidden;
        display: flex;
        align-items: center;
        width: 95%;
        margin-bottom: 0px;
        
    }

    .features-box-wrapper .feature-item .feature-title-description .title {

        line-height: 29px;
        font-size: 26px;

        margin-bottom: 0px;
    }

    .features-box-wrapper .feature-item .feature-title-description .description {
        line-height: 19px;
    }

    .features-box-wrapper .feature-item .icon-box img {
        width: 70px;
    }
    .footer-logo .logo {
    width: 350px;
    height: auto;
}
}




@media screen and (min-width:540px) and (max-width:768px) {
    .info-box .info-content h2 {
        width: 100%;
        justify-content: center;
    }

    .info-box .info-content h2 span.first {
        font-size: 55px;
        width: 100%;
    }

    .info-box .info-content h2 span.second {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .info-box .info-img {
        width: 400px;
        height: 400px;
        max-width: 400px;
        min-width: 400px;
        border-radius: 32px;
        margin: auto;
    }

    .info-box .info-content p {
        font-size: 20px;
        line-height: 26px;
    }

    .info-box .info-content {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .info-box {
        width: 95%;
        margin: auto;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
    }

    .form-container h2 {
        line-height: 38px;
        font-size: 38px;
        letter-spacing: -2px;
    }

    .feature-video-box {
        height: 400px;
    }

    .contact-form input {
        padding: 13px 10px;
        width: 50%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 13px 10px;
        width: 100%;
    }

    .form-container {
        max-width: 100%;
    }

    .contact-form {
        width: 95%;

    }

    .features-box-wrapper {
        gap: 35px;
        max-width: 100%;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .features-box-wrapper .feature-item {
        overflow: hidden;
        display: flex;
        align-items: center;
        width: 95%;
        margin-bottom: 0px;
        
    }

    .features-box-wrapper .feature-item .feature-title-description .title {

        line-height: 29px;
        font-size: 26px;

        margin-bottom: 0px;
    }

    .features-box-wrapper .feature-item .feature-title-description .description {
        line-height: 19px;
    }

    .features-box-wrapper .feature-item .icon-box img {
        width: 70px;
    }
    .footer-logo .logo {
    width: 270px; 
}
}






@media screen and (min-width:300px) and (max-width:540px) {
    .info-box .info-content h2 {
        width: 100%;
        justify-content: center;
    }

    .info-box .info-content h2 span.first {
        font-size: 55px;
    }

    .info-box .info-content h2 span.second {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .info-box .info-img {
        width: 400px;
        height: 400px;
        max-width: 400px;
        min-width: 400px;
        border-radius: 32px;
        margin: auto;
    }

    .info-box .info-content p {
        font-size: 20px;
        line-height: 26px;
    }

    .info-box .info-content {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .info-box {
        width: 95%;
        margin: auto;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
        padding: 60px 0px;
    }

    .form-container h2 {
        line-height: 30px;
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 36px;
    }

    .feature-video-box {
        height: 300px;
    }


    .contact-form input {
        padding: 13px 10px;
        width: 50%;
        font-size: 17px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 13px 10px;
        width: 100%;
        font-size: 17px;
    }

    .form-container {
        max-width: 100%;
    }

    .contact-form {
        width: 95%;
    }

    .contact-form-section {
        padding: 10px 0 64px 0;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .features-box-wrapper {
        gap: 35px;
        max-width: 100%;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .features-box-wrapper .feature-item {
        overflow: hidden;
        display: flex;
        align-items: center;
        width: 95%;
        margin-bottom: 0px;

    }

    .features-box-wrapper .feature-item .feature-title-description .title {

        line-height: 29px;
        font-size: 26px;

        margin-bottom: 0px;
    }

    .features-box-wrapper .feature-item .feature-title-description .description {
        line-height: 19px;
    }

    .features-box-wrapper .feature-item .icon-box img {
        width: 70px;
    }
.footer-logo .logo {
    width: 270px; 
}
}