/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Genel Stiller */
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}

/* Desktop body Bitiş */

.grecaptcha-badge { 
    visibility: hidden !important;
}

/*Header Başlangıç*/
.header {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
    backdrop-filter: blur(30px);
    z-index: 9999;
    border-radius: 90px;
    height: 80px;
    max-width: 100%;    
    position: relative;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    width: 208px;
    height: 40px;
    object-fit: contain;
}

/* Navigasyon Menü */
nav.nav-menu {
    margin: 0 auto;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin-top: 6px;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

/* Markalarımız dropdown toggle */
.dropdown-toggle {
    color: #1047F7;
    transition: all 0.3s ease;
}

/* Diğer nav linkler için */
.nav-list > li:not(.dropdown) > a {
    color: #1A1A1A;
    transition: color 0.3s;
}



.dropdown {
    position: relative;
}

.dropdown a {
    display: flex;
    color: #000;
    align-items: center;
    gap: 8px;
}

/* Header Sağ Kısım */
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;    
    font-weight: 500;
    font-family: 'Manrope';
    cursor: pointer;
    position: relative;
}
.language-selector svg {
    transition: transform 0.3s ease;
}

.language-selector.active svg {
    transform: rotate(180deg);
}


.contact-btn {
    background: #0040FF;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border-radius: 90px;
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover {
    background: #0033CC;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    transition: all 0.3s ease-in-out;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-right {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-btn {
        display: none;
    }

    .header-wrapper {
        height: 70px;
    }

    .header {
        height: 70px;
    }
}

/* Mobil Menü Aktif Durumu */
.nav-menu.active {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 90px;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu.active .nav-list {
    flex-direction: column;
    gap: 20px;
}

/* Dil seçici dropdown menüsü */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
    min-width: 60px;
    display: none;
    margin-top: 10px;
    right: -10px;
}

.language-selector.active .language-dropdown {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 6px 8px;
    color: #1A1A1A;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Manrope';
    text-align: center;
}

.language-dropdown a:hover {
    color: #0040FF;
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 12px;
    width: 6px;
    height: 6px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.05);
}

/* Markalarımız Dropdown Menüsü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 53%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 32px;
    width: 1400px;
    display: none;
    margin-top: 20px;
    grid-template-columns: repeat(3, calc(33% - 12px));
    gap: 24px;
    z-index: 9998;
}

.dropdown {
    position: relative;
}

.brand-item {
    background: #FFFFFF;
    border-radius: 16px;
    margin-top: -7px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    position: relative;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.brand-item:hover {
    background: #F4F7FF;
}

.brand-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #688CFF;
    transition: height 0.3s ease;
}

.brand-item:hover::before {
    height: 100px;
}

.brand-item img {
    height: 32px;
    margin-bottom: 20px;
    object-fit: contain;
    object-position: left;
    width: auto;
    align-self: flex-start;
}

.brand-item p {
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    flex: 1;
    max-width: 100%;
    text-align: left;
}

.discover-btn {
    border: none;
    background: none;
    cursor: pointer;
    color: #1047F7;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-top: auto;
    position: relative;
    display: inline-block;
    width: fit-content;
    font-family: 'Manrope';
}

.discover-btn:hover {
    text-decoration: none;
}

.discover-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #1047F7;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
    max-width: 100%;
}

.discover-btn:hover::after {
    width: 100%;
}

.dropdown.active .dropdown-menu {
    display: grid;
    margin-top: 50px;
    margin-left: 35px;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Logo stilleri */
.boosmart-logo {
    height: 32px;
    margin-bottom: 24px;
    object-fit: contain;
    object-position: left;
    width: 143px;
    align-self: flex-start;
}

.tasarlab-logo {
    height: 32px;
    margin-bottom: 24px;
    object-fit: contain;
    object-position: left;
    width: auto;
    align-self: flex-start;
}

.booacademy-logo {
    height: 32px;
    margin-bottom: 24px;
    object-fit: contain;
    object-position: left;
    width: auto;
    align-self: flex-start;
}

.marpera-logo {
    height: 32px;
    margin-bottom: 24px;
    object-fit: contain;
    object-position: left;
    width: auto;
    align-self: flex-start;
}
/*Header Bitiş*/
.blur {
    position: absolute;
    z-index: -1;
    max-width: 400px;
    max-height: auto;
}
.topblur{
    display: flex;
    margin-left: 45%;
    margin-top: 20%;
}
.topblur1{
    z-index: -999;
    filter: blur(800px);
}
.topblur2{
    margin-left: -100px;
    filter: blur(240px);
}
.topblur3{
    position: absolute;
    z-index: -999;
    filter: blur(600px);
    margin-left: 1120px;
    top: 60%;
}
.bottomblur{
    position: absolute;
    z-index: -2;
}
.bottomblur1{
    margin-left: 600px;
    margin-top: -150px;
    filter: blur(230px);
}
.bottomblur2{
    margin-left: 1100px;
    margin-top: -225px;
    filter: blur(600px);
}
/*Hero Section Başlangıç*/
.hero-section {
    position: relative;
    padding-top: 230px;
    z-index: 1;
}
.hero-heading{
    text-align: center;
    display: flex;
    margin: 0 auto;
    width: 800px;
}

.hero-heading h1 {
    font-size: 90px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -0px;
    font-family: 'Manrope';
    color: #000;
}

.heading-hero{
    color: #1047f7;
}
.hero-text{
    text-align: center;
    display: flex;
    margin: 0 auto;
    font-size: 18px;
    width: 600px;
    padding-top: 20px;
    font-family: 'Manrope';
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
}
.hero-button{
    text-align: center;
    padding-top: 44px;
    position: relative;
    z-index: 999;
}
.hero-btn {
    background: none;
    color: #1047f7;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Manrope';
    border: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid #1047f7;
    z-index: 999;
}
.hero-arrow {
    display: flex;
    margin-left: 530px;
    margin-top: -40px;
    margin-bottom: 145px;
}
/*Hero Section Bitiş*/

/*Markalarımız Heading Başlangıç*/
.markalarimiz-heading{
    display: flex;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 100px;
    h2{
        font-size: 68px;
        font-weight: 500;
        line-height: 78px;
        letter-spacing: -0px;
        font-family: 'Manrope';
        color: #000;
    }
}
.heading-markalarimiz-text{
    text-align: center;
    display: flex;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 18px;
    width: 600px;
    font-family: 'Inter';
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
}
/*Markalarımız Heading Bitiş*/

/* Boosmart Section Başlangıç */
.boosmart-section {
    margin-bottom: 135px; 
}

.boosmart-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    justify-content: space-between;
}

.boosmart-left {
    width: calc(50% - 40px);
    margin-top: 40px;
}

.boosmart-left .boosmart-logo {
    width: 230px;
    height: 40px;
    margin-bottom: 40px;
}
.boosmart-right {
    position: relative;
    height: 574px;
    display: flex;
    justify-content: flex-end;
    width: 807px;
}
.boosmart-right img {
    width: 100%;
    object-fit: fill;
    position: absolute;
    right: -37px;
    top: 0;
    max-width: none;
    transform: scale(1);
    transform-origin: right top;
}
.boosmarticon1{
    position: absolute;
    margin-left: 590px;
    margin-top: -25px;
}
.boosmarticon2{
    position: absolute;
    margin-left: 615px;
    margin-top: 319px;
}
.boosmart-icon3{
    position: absolute;
    left: 1580px;
    margin-top: 104px;
}
.boosmart-icon4{
    position: absolute;
    margin-left: 1260px;
    margin-top: 440px;
}
/* Boosmart Section Bitiş */

.marka-heading{
    margin-top: -20px;
    margin-bottom: 15px;
    h2{
        font-family: 'Manrope';
        font-size: 28px;
        font-weight: 500;
        line-height: 58px;
        color: #000;
        margin-top: -20px;
        margin-bottom: 15px;
    }
}
.marka-text{
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    width: 580px;
    line-height: 28px;
    color: #000;
    margin-top: -10px;
    margin-bottom: 50px;
}
.section-button {
    background: none;
    border: 1px solid #1047F7;
    border-radius: 90px;
    padding: 20px 32px;
    height: 60px;
    width: 285px;
    color: #1047F7;
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 1s ease;
}

.section-button:hover {
    background: #1047F7;
    color: #fff;
}

.section-arrow {
    width: 15px;
    height: 15px;
    margin-top: 3px;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.section-button:hover .section-arrow {
    transform: rotate(45deg);
    filter: brightness(0) invert(1);
}






/* Line  Başlangıç */
.lines{
    margin-bottom: 113px;
    margin-top: -15px;
}
/* Line  Bitiş */

/* Tasarlab Section */
.tasarlab-section {
    margin-bottom: 120px;
}

.tasarlab-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.tasarlab-left {
    position: relative;
    height: 574px;
    display: flex;
    justify-content: flex-start;
    width: 807px;
}

.tasarlab-left img {
    width: 90%;
    object-fit: fill;
    position: absolute;
    top: 0;
    max-width: none;
    transform: scale(1);
    transform-origin: left top;
}
.tasarlabicon1{
    position: absolute;
    margin-left: -153px;
    z-index: 999;
    margin-top: -12px;
}
.tasarlabicon2{
    position: absolute;
    margin-left: -137px;
    z-index: 999;
    margin-top: 315px;
}
.tasarlabicon3{
    position: absolute;
    margin-left: 590px;
    z-index: 999;
    margin-top: 70px;
}
.tasarlabicon4{
    position: absolute;
    margin-left: 452px;
    z-index: 999;
    margin-top: 420px;
}
.tasarlab-right {
    width: calc(50% - 40px);
    margin-top: 74px;
}

.tasarlab-right .tasarlab-logo {
    width: 236px;
    height: 45px;
    margin-bottom: 40px;
}
/* Tasarlab Section Bitiş */

/* Booacademy Section */
.booacademy-section {
    margin-bottom: 113px;
}

.booacademy-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    justify-content: space-between;
}

.booacademy-left {
    width: calc(50% - 40px);
    margin-top: 26px;
}

.booacademy-left .booacademy-logo {
    width: 250px;       
    height: 40px;
    margin-bottom: 40px;
}
.booacademy-right {
    position: relative;
    height: 574px;
    display: flex;
    justify-content: flex-end;
    width: 807px;
}

.booacademy-right img {
    width: 90%;
    object-fit: fill;
    margin-right: 20px;
    position: absolute;
    top: 0;
    max-width: none;
    transform: scale(1);
    transform-origin: right top;
}
.booacademyicon1{
    position: absolute;
    z-index: 999;
    margin-top: -25px;
    margin-left: -60px;
}
.booacademyicon2{
    position: absolute;
    z-index: 999;
    margin-left: -15px;
    margin-top: 315px;
}
.booacademyicon3{
    position: absolute;
    z-index: 999;
    margin-left: 670px;
    margin-top: 160px;
}
.booacademyicon4{
    position: absolute;
    z-index: 999;
    margin-left: 486px;
    margin-top: 396px;
}
/* Boo Academy Section Bitiş */

/* Marpera Section Başlangıç */
.marpera-section {
    margin-bottom: 120px;
}

.marpera-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.marpera-left {
    width: calc(50% - 40px);
    margin-top: 26px;
}

.marpera-left .marpera-logosec {
    width: 217px;
    height: 60px;
}
.marpera-right {
    position: relative;
    height: 574px;
    display: flex;
    justify-content: flex-end;
    width: 807px;
}

.marpera-right img {
    width: 90%;
    object-fit: fill;
    position: absolute;
    left: -0px;
    top: 0;
    max-width: none;
    transform: scale(1);
    transform-origin: right top;
}
.marperaicon1{
    position: absolute;
    z-index: 999;
    margin-top: 16px;
    margin-left: -141px;
}
.marperaicon2{
    position: absolute;
    z-index: 999;
    margin-top: 325px;
    margin-left: -113px;
}
.marperaicon3{
    position: absolute;
    z-index: 999;
    margin-top: 150px;
    margin-left: 595px;
}
.marperaicon4{
    position: absolute;
    z-index: 999;
    margin-top: 406px;
    margin-left: 440px;
}
/* Logo stilleri düzeltmesi */
.section-logo-boosmart {
    width: 230px;
    height: 40px;
    margin-bottom: 40px;
}

.section-logo-tasarlab {
    width: 236px;
    height: 45px;
    margin-bottom: 40px;
}

.section-logo-booacademy {
    width: 250px;
    height: 40px;
    margin-bottom: 40px;
}

.section-logo-marpera {
    width: 217px;
    height: 60px;
    margin-bottom: 40px;
}
/*Marpera Section Bitiş*/

/*Partnerlerimiz Başlangıç*/
.partnerlerimiz-heading{
    display: flex;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 20px;
    h2{
        font-size: 68px;
        font-weight: 500;
        line-height: 78px;
        letter-spacing: -0px;
        font-family: 'Manrope';
        color: #000;
    }
}
.partnerlerimiz-text{
    font-family: 'Inter';
    font-size: 18px;
    text-align: center;
    display: flex;
    margin: 0 auto;
    font-weight: 400;
    width: 800px;
    line-height: 28px;
    color: #000;
    margin-bottom: 50px;
}
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 120px;
    flex-wrap: nowrap;
}

.partner-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 220px;
}

.partner-logo-item img {
    width: 220px;
    height: 100px;
    object-fit: contain;
    transition: all 0.6s ease;
}

.partner-logo-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}
/*Partnerlerimiz Bitiş*/

/* İletişim Formu Başlangıç */
.iletisim-section {
    margin-bottom: 120px;
    background-color: #F8F8F9;
    width: 95%;
    margin: 0 auto;
    border-radius: 30px;
}
.iletisim-content{
    margin-bottom: 120px;
}

.iletisim-heading {
    text-align: center;
    margin-bottom: 60px;
}

.iletisim-heading h2 {
    font-size: 68px;
    font-weight: 500;
    line-height: 78px;
    font-family: 'Manrope';
    color: #000;
    padding-top: 120px;
}

.iletisim-form-container {
    display: flex;
    gap: 40px;
    max-width: 1420px;
    margin: 0 auto;
    padding-left: 40px;
}

.iletisim-left {
    width: 410px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.info-item img {
    width: 80px;
    height: 80px;
}

.info-text .label {
    display: block;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #75787C;
    letter-spacing: 0.25px;
    margin-bottom: 8px;
}

.info-text p {
    font-family: 'Inter';
    font-size: 20px;
    width: 285px;
    font-weight: 500;
    margin-top: 12px;
    line-height: 28px;
    color: #1A1A1A;
    margin-top: 10px;
}

.iletisim-right {
    width: 930px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    font-family: 'Inter';
    font-size: 16px;
}

.contact-form textarea {
    width: 100%;
    height: 180px;
    padding: 20px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    font-family: 'Inter';
    font-size: 16px;
    resize: none;
    margin-bottom: 20px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: -15px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #1047f7;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    background: #fff;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: #1047F7;
    border-color: #1047F7;
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-wrapper label {
    font-family: 'Inter';
    font-size: 14px;
    color: #75787C;
}

.checkbox-wrapper label span {
    color: #1047F7;
}

.submit-btn {
    background: #1047F7;
    color: #fff;
    border: none;
    border-radius: 90px;
    padding: 16px 32px;
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 120px;
    margin-left: 120px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: -15px;
}

.submit-btn:hover {
    background: #0033CC;
}

/* Input focus stilleri */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1047F7;
}
/* İletişim Formu Bitiş */

/* Footer Başlangıç */
.footer {
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-nav-left {
    display: flex;
    gap: 40px;
}

.footer-nav-left a {
    color: #000;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav-left a:hover {
    color: #1047F7;
}

.footer-nav-right {
    display: flex;
    gap: 40px;
}

.footer-nav-right a {
    color: #878684;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #878684;
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 400;
}
/* Footer Bitiş */

/* Desktop body için media query */
@media (max-width: 768px) {
    .desktop-header {
        display: none !important;
    }
    
    .blur,
    .hero-section,
    .markalarimiz-heading,
    .boosmart-section,
    .tasarlab-section,
    .booacademy-section,
    .marpera-section,
    .lines,
    .partnerlerimiz-section,
    .iletisim-section,
    .footer {
        display: none !important;
    }
}
/* Desktop body için media query */

/* Desktop body Bitiş */














/* Mobil Header Başlangıç */
.mobile-header {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

.mobile-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    padding: 32px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%) translateY(-10px);
}

@media (max-width: 1200px) {
    .mobile-header {
        display: block;
        width: 90%;
        border-radius: 90px;
        margin: 20px auto 0;
        background: #fff;
        backdrop-filter: blur(30px);
        box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
    }
}

/* Ana içerik wrapper'ı */
.mobile-content-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero ve diğer bölümler için */
.mobile-hero,
.mobile-markalarimiz-section,
.mobile-boosmart-section,
.mobile-tasarlab-section,
.mobile-booacademy-section,
.mobile-marpera-section,
.mobile-partnelerimiz-section-genel,
.mobile-iletisim-section,
.mobile-footer {
    position: relative;
    z-index: 1;
}

/* Mobil Blur Başlangıç */
.mobile-blur{
    position: absolute;
    z-index: -999;
    filter: blur(75px);
}
/* Mobil Blur Bitiş */


/* Mobil Menü Başlangıç */
.mobile-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    padding: 32px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%) translateY(-10px);
    bottom: 0;
    height: 72vh;
    border-radius: 30px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.mobile-nav-list li {
    margin-bottom: 40px;
}

.mobile-nav-list a {
    color: #000;
    text-decoration: none;
    font-family: 'Manrope';
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: #1047F7;
}
/* Mobil Menü Bitiş */


/* Mobil Hero Başlangıç */
@media (min-width: 768px) {
    .mobile-hero{
        display: none;
    }
    .mobile-markalarimiz-section{
        display: none;
    }
    .mobile-blur{
        display: none;
    }
    .mobile-line-section{
        display: none;
    }
    .mobile-line-content{
        display: none;
    }
}
.mobile-hero {
    margin-top: 170px;
    position: relative;
    z-index: 1;
}
.mobile-hero-heading{
    display: flex;
    margin: 0 auto;
    width: 350px;
    h1{
        font-size: 38px;
        font-weight: 700;
        line-height: 48px;
        letter-spacing: -0px;
        text-align: center;
        font-family: 'Manrope';
        color: #000;
    }
}
.hero-heading-span{
    h1{
        color: #1047F7;
    }
}
.mobile-hero-text{
    display: flex;
    margin: 0 auto;
    font-family: 'Inter';
    text-align: center;
    width: 350px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 50px;
}
.mobile-hero-button {
    text-align: center;
    position: relative;
    z-index: 2;
}
.mobile-hero-btn {
    background: none;
    color: #1047f7;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Manrope';
    border: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid #1047f7;
}
.mobile-hero-arrow{
    margin-top: -40px;
    margin-left: 20px;
    margin-bottom: 85px;
    position: relative;
    z-index: 1;
}
/* Mobil Hero Bitiş */

.mobile-marka-heading{
    h2{
        font-size: 28px;
        font-weight: 500;
        line-height: 38px;
        font-family: 'Manrope';
        color: #000;
        margin-bottom: 20px;
        margin-top: -40px;
    }
}
.mobile-section-text{
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    margin-bottom: 50px;
}

/* Markalarımız Heading Başlangıç */

.mobile-markalarimiz-heading{
    display: flex;
    margin: 0 auto;
    margin-bottom: 20px;
    justify-content: center;
    h2{
        font-size: 38px;
        font-weight: 500;
        line-height: 48px;
        font-family: 'Manrope';
        color: #000;
    }
}
.mobile-markalarimiz-text{
    display: flex;
    margin: 0 auto;
    font-family: 'Inter';
    text-align: center;
    width: 350px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
}
/* Markalarımız Heading Bitiş */

/* Mobil Boosmart Section */
.mobile-boosmart-section {
    padding: 0 20px;
    margin-top: 60px;
    display: flex;
    justify-content: center; 
}

.mobile-boosmart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
}

.mobile-boosmart-logo {
    width: 143px;
    height: 32px;
    margin-bottom: 40px;
    align-self: flex-start;
}
.mobile-section-button {
    align-self: flex-start;
    background: none;
    color: #1047f7;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Manrope';
    border: 1px solid #1047f7;
    border-radius: 90px;
    cursor: pointer;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 60px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.mobile-section-button img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.mobile-section-button:hover {
    background: #1047F7;
    color: #fff;
}

.mobile-section-button:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}
.mobile-boosmart-img{
    margin-bottom: 80px;
}
.mobile-boosmart-image {
    width: 300px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    align-self: center;
}

.mobile-boosmart-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobileboosmarticon1 img{
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: -35px;
}
.mobileboosmarticon2 img{
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 99;
    margin-left: -30px;
    margin-top: 140px;
}
.mobileboosmarticon3 img{
    margin-top: 125px;
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 255px;
    margin-top: 55px;
}
.mobileboosmarticon4 img{
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 225px;
    margin-top: 185px;
}
@media (min-width: 768px) {
    .mobile-boosmart-section {
        display: none;
    }
}
/* Mobil Boosmart Section Bitiş */

/* Mobil Line Section */
.mobile-line-section {
    display: none; /* Varsayılan olarak gizli */
}

.mobile-line-content {
    display: none; /* Varsayılan olarak gizli */
}

@media (max-width: 767px) { /* 768px altında göster */
    .mobile-line-section {
        display: flex;
        justify-content: center;
        width: 85%;
        margin: 0 auto;
    }

    .mobile-line-content {
        display: flex;
        justify-content: center;
        width: 85%;
        margin: 0 auto;
        margin-bottom: 80px;
    }
}
/* Mobil Line Section Bitiş */

/* Mobil Tasarlab Section */
.mobile-tasarlab-section {
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.mobile-tasarlab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
}

.mobile-tasarlab-logo {
    width: 158px;
    height: 32px;
    margin-bottom: 30px;
    align-self: flex-start;
}
.mobile-tasarlab-img {
    margin-bottom: 80px;
}

.mobile-tasarlab-image {
    width: 310px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    align-self: center;
}

.mobile-tasarlab-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.mobile-tasarlab-icon1 img{
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: -35px;
}
.mobile-tasarlab-icon2 img{
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 99;
    margin-left: -30px;
    margin-top: 140px;
}
.mobile-tasarlab-icon3 img{
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 265px;
    margin-top: 25px;
}
.mobile-tasarlab-icon4 img{
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 225px;
    margin-top: 195px;
}
@media (min-width: 768px) {
    .mobile-tasarlab-section {
        display: none;
    }
}
/* Mobil Tasarlab Section Bitiş */

/* Mobil Booacademy Section */
.mobile-booacademy-section {
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.mobile-booacademy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
}

.mobile-booacademy-logo {
    width: 187px;
    height: 32px;
    margin-bottom: 30px;
    align-self: flex-start;
}
.mobile-booacademy-img {
    margin-bottom: 80px;
}

.mobile-booacademy-image {
    width: 300px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    align-self: center;
}

.mobile-booacademy-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobilebooacademyicon1 img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: -35px;
}

.mobilebooacademyicon2 img {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 99;
    margin-left: -30px;
    margin-top: 140px;
}

.mobilebooacademyicon3 img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 255px;
    margin-top: 55px;
}

.mobilebooacademyicon4 img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 225px;
    margin-top: 185px;
}

@media (min-width: 768px) {
    .mobile-booacademy-section {
        display: none;
    }
}
/* Mobil Booacademy Section Bitiş */

/* Mobil Marpera Section */
.mobile-marpera-section {
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.mobile-marpera-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
}

.mobile-marpera-logo {
    width: 150px;
    height: 35px;
    margin-bottom: 30px;
    align-self: flex-start;
    margin-left: -10px;
}
.mobile-marpera-img {
    margin-bottom: 80px;
}

.mobile-marpera-image {
    width: 300px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    align-self: center;
}

.mobile-marpera-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobilemarperaicon1 img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: -35px;
}

.mobilemarperaicon2 img {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 99;
    margin-left: -30px;
    margin-top: 140px;
}

.mobilemarperaicon3 img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 255px;
    margin-top: 55px;
}

.mobilemarperaicon4 img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 99;
    margin-left: 225px;
    margin-top: 185px;
}

@media (min-width: 768px) {
    .mobile-marpera-section {
        display: none;
    }
}
/* Mobil Marpera Section Bitiş */

/* Mobile Partnerlerimiz Section */
.mobile-partnelerimiz-section-genel {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.mobile-partnelerimiz-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
}

.mobile-partnelerimiz-heading {
    display: flex;
    margin: 0 auto;
    margin-bottom: 20px;
    justify-content: center;
}

.mobile-partnelerimiz-heading h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 48px;
    font-family: 'Manrope';
    color: #000;
}

.mobile-partnelerimiz-text {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    margin-bottom: 50px;
    align-self: center;
    width: 350px;
    text-align: center;
}

@media (min-width: 768px) {
    .mobile-partnelerimiz-section-genel {
        display: none;
    }
}
.mobile-partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}



/* Mobile Partnerlerimiz Section Bitiş */

/* Mobile İletişim Section */
.mobile-iletisim-section {
    padding: 0 20px;
    margin-bottom: 80px;
    background: #F8F8F9;
    border-radius: 30px;
    padding-bottom: 60px;
    width: 90%; 
    margin: 0 auto;
}

.mobile-iletisim-heading h2 {
    font-family: 'Manrope';
    font-size: 38px;
    font-weight: 500;
    line-height: 48px;
    color: #000;
    padding-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.mobile-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-contact-form input[type="text"],
.mobile-contact-form input[type="email"],
.mobile-contact-form input[type="tel"],
.mobile-contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    font-family: 'Inter';
    font-size: 16px;
    background: #fff;
}

.mobile-contact-form textarea {
    height: 180px;
    resize: none;
}

.mobile-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #1047f7;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    background: #fff;
    margin-top: 4px;
}

.mobile-checkbox-wrapper input[type="checkbox"]:checked {
    background: #1047F7;
    border-color: #1047F7;
}

.mobile-checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-checkbox-wrapper label {
    font-family: 'Inter';
    font-size: 14px;
    line-height: 24px;
    color: #75787C;
}

.mobile-checkbox-wrapper label span {
    color: #1047F7;
    text-decoration: underline;
}

.mobile-submit-btn {
    background: #1047F7;
    color: #fff;
    border: none;
    border-radius: 90px;
    padding: 16px 32px;
    width: 120px;
    height: 60px;
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.mobile-contact-info {
    margin-top: 60px;
}

.mobile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-info-item img {
    width: 48px;
    height: 48px;
}

.mobile-info-text .info-label {
    font-family: 'Inter';
    font-size: 14px;
    color: #75787C;
    margin-bottom: 4px;
}

.mobile-info-text p {
    font-family: 'Inter';
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-top: -6px;
    line-height: 24px;
}

@media (min-width: 1023px) {
    .mobile-iletisim-section {
        display: none;
    }
}
/* Mobile İletişim Section */

.mobile-contact-form input[type="text"]:focus,
.mobile-contact-form input[type="email"]:focus,
.mobile-contact-form input[type="tel"]:focus,
.mobile-contact-form textarea:focus {
    outline: none;
    border-color: #1047F7;
}

.mobile-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.mobile-checkbox-wrapper input[type="checkbox"] {
    width: 30px;
    height: 20px;
    border: 1px solid #c7c9ce;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    background: #fff;
    margin-top: 4px;
}

.mobile-checkbox-wrapper input[type="checkbox"]:checked {
    background: #1047F7;
    border-color: #1047F7;
}

.mobile-checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(203, 203, 203);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-checkbox-wrapper label {
    font-family: 'Inter';
    font-size: 14px;
    line-height: 24px;
    color: #75787C;
}

.mobile-checkbox-wrapper label span {
    color: #393B3D;
    text-decoration: none;
}
/* Mobile İletişim Section Bitiş */

/* Mobile Footer */
.mobile-footer {
    display: none;
    text-align: center;
    padding: 120px 20px;
}

.mobile-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.mobile-footer-nav a {
    color: #000;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
}

.mobile-footer-policy {
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.mobile-footer-policy a {
    color: #878684;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
}

.mobile-footer-copyright {
    color: #878684;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 820px) {
    .mobile-footer {
        display: block;
    }
}
/* Mobile Footer */

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .mobile-header {
        display: block;
        width: 90%;
        border-radius: 90px;
        margin: 20px auto 0;
        background: #fff;
        backdrop-filter: blur(30px);
        box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
    }

    .mobile-container {
        padding: 0 15px;
    }

    .mobile-header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        height: 60px;
    }

    .mobile-logo img {
        width: 157px;
        height: 30px;
        object-fit: contain;
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .mobile-menu-toggle .menu-icon,
    .mobile-menu-toggle .close-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle .menu-icon {
        display: block;
    }

    .mobile-menu-toggle .close-icon {
        display: none;
    }

    .mobile-menu-toggle.active .menu-icon {
        display: none;
    }

    .mobile-menu-toggle.active .close-icon {
        display: block;
    }
}
/*Mobile Bitiş*/

@media (min-width: 768px) and (max-width: 820px) {
    .mobile-checkbox-wrapper input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 1px solid #c7c9ce;
        border-radius: 10px;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        position: relative;
        background: #fff;
        margin-top: 4px;
    }
    .mobile-contact-info{
        margin-left: px;
    }
}




/* Tablet Media Query */
@media (min-width: 768px) and (max-width: 1200px) {
    .desktop-header,
    .hero-section,
    .markalarimiz-heading,
    .boosmart-section,
    .tasarlab-section,
    .booacademy-section,
    .marpera-section,
    .lines,
    .partnerlerimiz-section,
    .iletisim-section,
    .footer {
        display: none;
    }
}
/* Tablet Media Query Bitiş */

/* Tablet Header */
.tablet-header {
    display: none;
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .tablet-header {
        display: block;
        margin-top: 20px;
    }

    .tablet-header .header {
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
        backdrop-filter: blur(30px);
        z-index: 9999;
        border-radius: 90px;
        height: 80px;
        max-width: 100%;    
        position: relative;
    }

    .tablet-header .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 0 40px;
    }

    .tablet-header .logo {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .tablet-header .logo img {
        width: 160px;
        height: 32px;
        object-fit: contain;
    }

    .tablet-header .nav-menu {
        display: flex;
        align-items: center;
    }

    .tablet-header .nav-list {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 40px;
    }

    .tablet-header .nav-list a {
        text-decoration: none;
        color: #1A1A1A;
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 400;
        transition: color 0.3s;
        white-space: nowrap;
    }

    .tablet-header .dropdown-toggle {
        color: #1047F7;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .tablet-header .header-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .tablet-header .language-selector {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;    
        font-weight: 400;
        font-family: 'Inter';
        cursor: pointer;
        position: relative;
    }

    .tablet-header .language-selector svg {
        transition: transform 0.3s ease;
    }

    .tablet-header .language-selector.active svg {
        transform: rotate(180deg);
    }

    .tablet-header .contact-btn {
        background: #0040FF;
        color: #fff;
        padding: 12px 30px;
        border-radius: 90px;
        text-decoration: none;
        font-weight: 500;
        font-family: 'Inter';
        font-size: 16px;
        transition: background-color 0.3s;
        width: 120px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tablet-header .contact-btn:hover {
        background: #0033CC;
    }

    .tablet-header .dropdown {
        position: relative;
    }

    .tablet-header .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: 60px;
        transform: translateX(-50%);
        background: #fff;
        backdrop-filter: blur(30px);
        border-radius: 20px;
        padding: 32px;
        width: 960px;
        gap: 32px;
        margin-top: 40px;
        z-index: 9999;
    }

    .tablet-header .brand-item-tablet {
        display: flex;
        flex-direction: column;
        padding: 0 16px;
    }

    .tablet-header .brand-item-tablet img {
        height: 32px;
        width: 140px;
        margin-top: 20px;
        object-fit: contain;
    }

    .tablet-header .brand-item-tablet p {
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 400;
        margin-top: 20px;
        color: #1A1A1A;
        margin: 0;
        margin-bottom: 20px;
    }

    .tablet-header .brand-item-tablet .discover-btn {
        background: none;
        border: none;
        color: #1047F7;
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 500;
        padding: 0;
        cursor: pointer;
        text-align: left;
        transition: all 0.3s ease;
    }

    .tablet-header .brand-item-tablet .discover-btn:hover {
        color: #0033CC;
        border-bottom: 1px solid #1047f7;
    }

    .tablet-header .language-selector {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;    
        font-weight: 400;
        font-family: 'Inter';
        cursor: pointer;
        position: relative;
    }

    .tablet-header .language-selector svg {
        transition: transform 0.3s ease;
    }

    .tablet-header .language-selector.active svg {
        transform: rotate(180deg);
    }

    .tablet-header .language-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(30px);
        border-radius: 8px;
        padding: 4px;
        margin-top: 8px;
        box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
        z-index: 9999;
        min-width: 60px;
        text-align: center;
    }

    .tablet-header .language-selector.active .language-dropdown {
        display: block;
    }

    .tablet-header .language-dropdown a {
        display: block;
        padding: 4px 8px;
        color: #1A1A1A;
        text-decoration: none;
        font-family: 'Inter';
        font-size: 14px;
        font-weight: 400;
        white-space: nowrap;
        transition: color 0.3s;
        text-align: center;
    }

    .tablet-header .language-dropdown a:hover {
        color: #1047F7;
    }

    .tablet-header .dropdown-toggle svg {
        transition: transform 0.3s ease;
    }

    .tablet-header .dropdown-toggle.active svg {
        transform: rotate(180deg);
    }
}
/* Tablet Header Bitiş */

/* Tablet Hero */
.tablet-hero {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .tablet-hero {
        display: block;
        margin-top: 170px;
        padding: 0 40px;
        margin-bottom: 80px;
    }

    .tablet-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tablet-hero-heading h1 {
        font-family: 'Manrope';
        font-size: 64px;
        font-weight: 800;
        line-height: 80px;
        color: #1A1A1A;
        margin-bottom: 20px;
    }

    .tablet-hero-heading .heading-hero {
        color: #1047F7;
        display: block;
    }

    .tablet-hero-text {
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .tablet-hero-text p {
        font-family: 'Inter';
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        color: #1A1A1A;
    }

    .tablet-hero-button {
        margin-bottom: 80px;
    }

    .tablet-hero-btn {
        background: none;
        color: #1047F7;
        border: none;
        border-bottom: 1px solid #1047F7;
        padding: 0 0 8px 0;
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tablet-hero-btn:hover {
        color: #0033CC;
        border-bottom-color: #0033CC;
    }

    .tablet-hero-arrow {
        display: flex;
        justify-content: center;
    }

    .tablet-hero-arrow img {
        width: 120px;
        height: 80px;
        margin-top: -100px;
        margin-right: 200px;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-20px);
        }
        60% {
            transform: translateY(-10px);
        }
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .tablet-header .brand-item {
        transition: all 0.3s ease;
        padding: 24px;
        border-radius: 20px;
    }

    .tablet-header .brand-item:hover {
        background: rgba(16, 71, 247, 0.03);
        transform: translateY(-4px);
    }

    .tablet-header .brand-item .discover-btn {
        position: relative;
    }

    .tablet-header .brand-item .discover-btn:hover {
        color: #0033CC;
    }

    .tablet-header .brand-item .discover-btn:hover::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: #1047F7;
    }
}
/* Tablet Hero */

/* Tablet Markalarımız Heading */
.tablet-markalarimiz {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .tablet-markalarimiz {
        display: block;
        text-align: center;
        padding: 0 40px;
        margin-bottom: 100px;
    }

    .tablet-markalarimiz-heading h2 {
        font-family: 'Manrope';
        font-size: 48px;
        font-weight: 500;
        line-height: 58px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }

    .tablet-markalarimiz-text {
        margin: 0 auto;
    }

    .tablet-markalarimiz-text p {
        font-family: 'Inter';
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        color: #1A1A1A;
    }
}
/* Tablet Markalarımız Heading */

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .tablet-boosmart {
        display: block;
        padding: 60px 0;
    }

    .tablet-boosmart-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .tablet-boosmart-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .tablet-boosmart-logo {
        width: 180px;
        height: auto;
    }

    .tablet-boosmart-heading h2 {
        font-family: 'Manrope';
        font-size: 32px;
        font-weight: 700;
        line-height: 44px;
        color: #1047F7;
    }

    .tablet-boosmart-text p {
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #393B3D;
    }

    .tablet-section-button {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        background: #1047F7;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 500;
        color: #FFFFFF;
        transition: all 0.3s ease;
    }

    .tablet-section-button:hover {
        background: #0035CC;
    }

    .tablet-boosmart-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .tablet-boosmart-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tablet-boosmart-icons img {
        width: 100%;
        height: auto;
    }

    .tablet-boosmart-image {
        width: 100%;
    }

    .tablet-boosmart-image img {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    /* Tablet Boosmart Section */
    .boosmart-tablet {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1200px) {
        .boosmart-tablet {
            display: block !important;
            margin-bottom: 100px;
            padding: 0 40px;
        }

        .boosmart-tablet-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .boosmart-tablet-left {
            width: 100%;
            max-width: 800px;
            margin-bottom: 60px;
            text-align: left;
        }

        .boosmart-tablet-left .section-logo-boosmart {
            width: 200px;
            height: 35px;
            margin-bottom: 20px;
        }

        .boosmart-tablet-heading h2 {
            font-family: 'Manrope';
            font-size: 28px;
            font-weight: 500;
            line-height: 48px;
            color: #000;
            margin-bottom: 10px;
            text-align: left;
        }

        .boosmart-tablet-text p {
            font-family: 'Inter';
            font-size: 18px;
            font-weight: 400;
            max-width: 100%;
            margin: 0;
            line-height: 24px;
            color: #000;
            margin-bottom: 40px;
            text-align: left;
        }

        .boosmart-tablet-right {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .boosmart-tablet-right img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    .tablet-icon1 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon1{
        position: absolute;
        margin-top: 0px;
        margin-left: -80px;
        z-index: 999;
    }
    .tablet-icon2 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon2{
        position: absolute;
        margin-top: 340px;
        margin-left: -70px;
        z-index: 999;
    }
    .tablet-icon3 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon3{
        position: absolute;
        margin-top: 114px;
        margin-left: 577px;
        z-index: 999;
    }
    .tablet-icon4 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon4{
        position: absolute;
        margin-top: 420px;
        margin-left: 515px;
        z-index: 999;
    }
}

@media (max-width: 767px) {
    .boosmart-tablet {
        display: none !important;
    }
}

@media (min-width: 1367px) {
    .boosmart-tablet {
        display: none !important;
    }
}

/* Tablet Line */
.tablet-line {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .tablet-line {
        display: block;
        margin: 0 auto;
        margin-bottom: 100px;
        padding: 0 40px;
    }

    .tablet-line img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .tablet-line {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .tablet-line {
        display: none !important;
    }
}

/* Tablet Tasarlab Section */
.tasarlab-tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .tasarlab-tablet {
        display: block !important;
        margin-bottom: 100px;
        padding: 0 40px;
    }

    .tasarlab-tablet-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .tasarlab-tablet-left {
        width: 100%;
        max-width: 800px;
        margin-bottom: 60px;
        text-align: left;
    }

    .tasarlab-tablet-left .section-logo-tasarlab {
        width: 200px;
        height: 35px;
        margin-bottom: 10px;
    }

    .tasarlab-tablet-heading h2 {
        font-family: 'Manrope';
        font-size: 28px;
        font-weight: 500;
        line-height: 48px;
        color: #000;
        margin-bottom: 10px;
        text-align: left;
    }

    .tasarlab-tablet-text p {
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 400;
        max-width: 100%;
        margin: 0;
        line-height: 24px;
        color: #000;
        margin-bottom: 40px;
        text-align: left;
    }

    .tasarlab-tablet-right {
        position: relative;
        width: 100%;
        max-width: 800px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tasarlab-tablet-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .tablet-tasarlab-icon1 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-tasarlab-icon1{
        position: absolute;
        margin-top: 0px;
        margin-left: -80px;
        z-index: 999;
    }
    .tablet-tasarlab-icon2 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-tasarlab-icon2{
        position: absolute;
        margin-top: 340px;
        margin-left: -70px;
        z-index: 999;
    }
    .tablet-tasarlab-icon3 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-tasarlab-icon3{
        position: absolute;
        margin-top: 114px;
        margin-left: 577px;
        z-index: 999;
    }
    .tablet-tasarlab-icon4 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-tasarlab-icon4{
        position: absolute;
        margin-top: 420px;
        margin-left: 515px;
        z-index: 999;
    }
}

@media (max-width: 767px) {
    .tasarlab-tablet {
        display: none !important;
    }
}

@media (min-width: 1367px) {
    .tasarlab-tablet {
        display: none !important;
    }
}

/* Tablet Booacademy Section */
.booacademy-tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .booacademy-tablet {
        display: block !important;
        margin-bottom: 100px;
        padding: 0 40px;
    }

    .booacademy-tablet-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .booacademy-tablet-left {
        width: 100%;
        max-width: 800px;
        margin-bottom: 60px;
        text-align: left;
    }

    .booacademy-tablet-left .section-logo-booacademy {
        width: 200px;
        height: 35px;
        margin-bottom: 10px;
    }

    .booacademy-tablet-heading h2 {
        font-family: 'Manrope';
        font-size: 28px;
        font-weight: 500;
        line-height: 48px;
        color: #000;
        margin-bottom: 10px;

        text-align: left;
    }

    .booacademy-tablet-text p {
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 400;
        max-width: 100%;
        margin: 0;
        line-height: 24px;
        color: #000;
        margin-bottom: 40px;
        text-align: left;
    }

    .booacademy-tablet-right {
        position: relative;
        width: 100%;
        max-width: 800px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .booacademy-tablet-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .tablet-booacademy-icon1 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-booacademy-icon1{
        position: absolute;
        margin-top: 0px;
        margin-left: -80px;
        z-index: 999;
    }
    .tablet-booacademy-icon2 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-booacademy-icon2{
        position: absolute;
        margin-top: 340px;
        margin-left: -70px;
        z-index: 999;
    }
    .tablet-booacademy-icon3 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-booacademy-icon3{
        position: absolute;
        margin-top: 160px;
        margin-left: 585px;
        z-index: 999;
    }
    .tablet-booacademy-icon4 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-booacademy-icon4{
        position: absolute;
        margin-top: 420px;
        margin-left: 400px;
        z-index: 999;
    }
}

@media (max-width: 767px) {
    .booacademy-tablet {
        display: none !important;
    }
}

@media (min-width: 1367px) {
    .booacademy-tablet {
        display: none !important;
    }
}

/* Tablet Marpera Section */
.marpera-tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .marpera-tablet {
        display: block !important;
        margin-bottom: 100px;
        padding: 0 40px;
    }
    .bottomblur{
        display: none;
    }
    .topblur3{
        display: none;
    }
    .marpera-tablet-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .marpera-tablet-left {
        width: 100%;
        max-width: 800px;
        margin-bottom: 60px;
        text-align: left;
    }

    .marpera-tablet-left .section-logo-marpera {
        width: 200px;
        height: 35px;
        margin-bottom: 10px;
        margin-left: -40px;
    }

    .marpera-tablet-heading h2 {
        font-family: 'Manrope';
        font-size: 28px;
        font-weight: 500;
        line-height: 48px;
        color: #000;
        margin-bottom: 10px;
        text-align: left;
    }

    .marpera-tablet-text p {
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 400;
        max-width: 100%;
        margin: 0;
        line-height: 24px;
        color: #000;
        margin-bottom: 40px;
        text-align: left;
    }

    .marpera-tablet-right {
        position: relative;
        width: 100%;
        max-width: 800px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .marpera-tablet-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .tablet-marpera-icon1 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-marpera-icon1{
        position: absolute;
        margin-top: 0px;
        margin-left: -80px;
        z-index: 999;
    }
    .tablet-marpera-icon2 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-marpera-icon2{
        position: absolute;
        margin-top: 340px;
        margin-left: -70px;
        z-index: 999;
    }
    .tablet-marpera-icon3 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-marpera-icon3{
        position: absolute;
        margin-top: 140px;
        margin-left: 585px;
        z-index: 999;
    }
    .tablet-marpera-icon4 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-marpera-icon4{
        position: absolute;
        margin-top: 420px;
        margin-left: 470px;
        z-index: 999;
    }
}

@media (max-width: 767px) {
    .marpera-tablet {
        display: none !important;
    }
}

@media (min-width: 1367px) {
    .marpera-tablet {
        display: none !important;
    }
}

/* Tablet Partnerlerimiz Section */
.tablet-partnerlerimiz {
    display: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .tablet-partnerlerimiz {
        display: block;
        padding: 60px 0;
        margin-bottom: 100px;
        margin-top: -70px;
    }

    .tablet-partnerlerimiz-heading h2 {
        font-family: 'Manrope';
        font-size: 48px;
        font-weight: 500;
        color: black;
        margin-bottom: 10px;
        text-align: center;
    }

    .tablet-partnerlerimiz-text p {
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 400;
        color: #393B3D;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .tablet-partner-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-items: center;
        align-items: center;
        padding: 0 20px;
    }

    .tablet-partner-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 200px;
        transition: all 0.3s ease-in-out;
    }

    .tablet-partner-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .tablet-partner-logo:hover{
        transform: scale(1.1);
    }
}

@media (max-width: 767px) {
    .tablet-partnerlerimiz {
        display: none !important;
    }
}

@media (min-width: 1367px) {
    .tablet-partnerlerimiz {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .tablet-partnerlerimiz {
        display: none !important;
    }
}

@media screen and (min-width: 1367px) {
    .tablet-partnerlerimiz {
        display: none !important;
    }
}
/* Tablet Partnerlerimiz Section Bitiş */

/* Tablet İletişim Section */
.tablet-iletisim {
    display: none;
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .tablet-iletisim {
        display: block;
        padding: 60px 40px;
        margin-bottom: 100px;
        background: #F8F8F9;
        width: 98%;
        margin-left: 1%;
        border-radius: 30px;
    }


    .tablet-iletisim-heading h2 {
        font-family: 'Manrope';
        font-size: 48px;
        font-weight: 500;
        color: #1A1A1A;
        text-align: center;
        margin-bottom: 60px;
    }

    .tablet-iletisim-form-container {
        display: flex;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tablet-iletisim-left {
        flex: 1;
    }

    .tablet-contact-info {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .tablet-info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .tablet-info-item img {
        width: 24px;
        height: 24px;
    }

    .tablet-info-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-top: 10px;
        width: 150px;
    }

    .tablet-info-text .label {
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 500;
        color: #1A1A1A;
    }

    .tablet-info-text p {
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 400;
        color: #393B3D;
        line-height: 24px;
    }

    .tablet-iletisim-right {
        flex: 2;
    }

    .tablet-contact-form {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

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

    .tablet-form-row input {
        flex: 1;
        height: 56px;
        padding: 0 20px;
        border: 1px solid #E6E6E6;
        border-radius: 12px;
        font-family: 'Inter';
        font-size: 16px;
        color: #1A1A1A;
    }

    .tablet-form-row input:focus {
        outline: none;
        border-color: #1047F7;
    }

    .tablet-contact-form textarea {
        height: 160px;
        padding: 20px;
        border: 1px solid #E6E6E6;
        border-radius: 12px;
        font-family: 'Inter';
        font-size: 16px;
        color: #1A1A1A;
        resize: none;
    }

    .tablet-contact-form textarea:focus {
        outline: none;
        border-color: #1047F7;
    }

    .tablet-form-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tablet-checkbox-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .tablet-checkbox-wrapper input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 1px solid #1047f7;
        border-radius: 10px;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        position: relative;
        background: #fff;
        margin-top: 4px;
    }

    .tablet-checkbox-wrapper input[type="checkbox"]:checked {
        background: #1047F7;
        border-color: #1047F7;
    }

    .tablet-checkbox-wrapper input[type="checkbox"]:checked::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .tablet-checkbox-wrapper label {
        font-family: 'Inter';
        font-size: 14px;
        line-height: 24px;
        color: #92959B;
        width: 450px;
    }

    .tablet-checkbox-wrapper label span {
        color: #393B3D;
        text-decoration: none;
    }

    .tablet-submit-btn {
        width: 120px;
        height: 60px;
        background: #1047F7;
        border: none;
        border-radius: 90px;
        color: #fff;
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .tablet-submit-btn:hover {
        background: #0033CC;
    }
}

/* Tablet Footer */
.tablet-footer {
    display: none;
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .tablet-footer {
        display: block;
        padding:  40px;
        background: #fff;
    }

    .tablet-footer-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .tablet-footer-nav-left {
        display: flex;
        gap: 40px;
    }

    .tablet-footer-nav a {
        color: #1A1A1A;
        text-decoration: none;
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s;
    }

    .tablet-footer-nav a:hover {
        color: #1047F7;
    }

    .tablet-footer-nav-right a {
        color: #878684;
        font-weight: 400;
    }

    .tablet-footer-copyright {
        text-align: center;
        color: #878684;
        font-family: 'Inter';
        font-size: 14px;
        font-weight: 400;
    }
    .tablet-info-item img {
        width: 60px !important;
        height: 60px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .tablet-info-text .label {
        font-family: 'Inter';
        font-size: 14px !important;
        font-weight: 500;
        color: #75787C !important;
    }
}

.mobile-menu-toggle {
    outline: none; /* Tıklama sırasındaki varsayılan border'ı kaldırır */
    -webkit-tap-highlight-color: transparent; /* iOS'ta tıklama efektini kaldırır */
}

.mobile-menu-toggle:focus {
    outline: none; /* Focus durumundaki border'ı kaldırır */
}

/* AOS Efektlerini Kaldır */
@media screen and (max-width: 1199px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .boosmart-tablet {
        display: block !important;
        margin-bottom: 100px;
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .boosmart-tablet {
        display: none !important;
    }
}

@media (min-width: 1201px) {
    .boosmart-tablet {
        display: none !important;
    }
}

/* Boosmart Tablet Section */
.boosmart-tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .boosmart-tablet {
        display: block !important;
        margin-bottom: 100px;
        padding: 0 40px;
    }

    .boosmart-tablet-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .boosmart-tablet-left {
        width: 100%;
        max-width: 800px;
        margin-bottom: 60px;
        text-align: left;
    }

    .boosmart-tablet-left .section-logo-boosmart {
        width: 200px;
        height: 35px;
        margin-bottom: 20px;
    }

    .boosmart-tablet-heading h2 {
        font-family: 'Manrope';
        font-size: 28px;
        font-weight: 500;
        line-height: 48px;
        color: #000;
        margin-bottom: 10px;
        text-align: left;
    }

    .boosmart-tablet-text p {
        font-family: 'Inter';
        font-size: 18px;
        font-weight: 400;
        max-width: 100%;
        margin: 0;
        line-height: 24px;
        color: #000;
        margin-bottom: 40px;
        text-align: left;
    }

    .boosmart-tablet-right {
        position: relative;
        width: 100%;
        max-width: 800px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .boosmart-tablet-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .tablet-icon1 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon1{
        position: absolute;
        margin-top: 0px;
        margin-left: -80px;
        z-index: 999;
    }
    .tablet-icon2 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon2{
        position: absolute;
        margin-top: 340px;
        margin-left: -70px;
        z-index: 999;
    }
    .tablet-icon3 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon3{
        position: absolute;
        margin-top: 114px;
        margin-left: 577px;
        z-index: 999;
    }
    .tablet-icon4 img{
        width: 150px !important;
        height: 150px !important;
    }
    .tablet-icon4{
        position: absolute;
        margin-top: 420px;
        margin-left: 515px;
        z-index: 999;
    }
}



@media (min-width: 1200px) and (max-width: 1500px) {
    .container {
        max-width: 1200px;
    }
    .hero-arrow{
        margin-left: 350px;
    }

    .row {
        max-width: 1100px;
    }

    .dropdown-menu {
        width: 1100px;
    }

    .boosmart-section{
        margin-bottom: 20px;
    }
    .boosmart-content{
        gap: 60px;
    }
    .boosmart-right img {
        width: 550px !important;
        margin-top: 60px !important;
    }
    .boosmarticon1 img{
        width: 150px !important;
        margin-top: 100px;
        margin-left: -85px;
    }
    .boosmarticon2 img{
        width: 150px !important;
        margin-left: -100px;
        padding-top: 5px;
    }
    .boosmart-icon3 img{
        width: 150px !important;
        margin-left: -400px;
        padding-top: 25px;
    }
    .boosmart-icon4 img{
        width: 150px !important;
        margin-left: 490px;
        margin-top: -40px;
        z-index: 999;
        margin-left: -270px;
      }
    .marka-text {
     width: 450px !important;
     line-height: 22px;
    }
    .marka-heading h2{
        font-family: "Manrope", serif;
        font-size: 28px;
        font-weight: 500;
        line-height: 40px;
        color: #000;
        margin-bottom: 20px;
    }
    .tasarlab-section{
        margin-bottom: -40px;
    }
    .tasarlabimg{
        margin-top: 20px;
    }
    .tasarlab-right{
        margin-top: -5px;
    }
    .tasarlab-content{
        gap: 100px;
    }
    .tasarlab-left{
        width: 100% !important;
    }
    .tasarlabicon1 img{
        width: 150px !important;
        margin-top: 20px;
        margin-left: 70px;
    }
    .tasarlabicon2 img{
        width: 150px !important;
        margin-left: 60px;
        margin-top: -50px;
    }
    .tasarlabicon3 img{
        width: 150px !important;
        margin-left: -110px;
        margin-top: -20px;
    }
    .tasarlabicon4 img{
        width: 150px !important;
        margin-left: -100px;
        margin-top: -80px;
    }
    .booacademy-section{
        margin-bottom: -0;
    }
    .booacademyimg{
        margin-top: 50px;
    }
    .booacademy-content{
        gap: 100px;
    }
    .booacademy-right img {
        width: 550px !important;
        padding-top: 50px;
    }
    .booacademy-right{
        width: 550px !important;
    }
    .booacademyicon1 img{
        width: 150px !important;
        margin-top: 60px;
        margin-left: -30px;
    }
    .booacademyicon2 img{
        width: 150px !important;
        margin-left: -75px;
        margin-top:  0;
    }
    .booacademyicon3 img{
        width: 150px !important;
        margin-left: -210px;
        margin-top: 10px;
    }
    .booacademyicon4 img{
        width: 150px !important;
        margin-left: -150px;
        margin-top: -10px;
    }
    .booacademyimg{
        margin-top: 50px;
    }
    .marpera-section{
        margin-bottom: -40px;
    }
    .marpera-content{
        gap: 100px;
    }
    .marpera-right img {
        width: 550px !important;
    }
    .marperaicon1 img{
        width: 150px !important;
        margin-top: 0px;
        margin-left: 60px;
    }
    .marperaicon2 img{
        width: 150px !important;
        margin-left: 40px;
        margin-top: -60px;
    }
    .marperaicon3 img{
        width: 150px !important;
        margin-left: -120px;
        margin-top: -30px;
    }
    .marperaicon4 img{
        width: 150px !important;
        margin-left: -70px;
        margin-top: -70px !important;
    }   
    .marperaimg{
        margin-top: 50px;
    }
    .marpera-right{
        width: 550px !important;
    }
    .partner-logos {
        max-width: 1100px;
    }
    
    .partner-logo-item img{
        width: 170px !important;
    }
    .iletisim-form-container {
        max-width: 1100px;
    }
    .lines{
        margin-top: 0px;
    }
    .topblur3{
        margin-left: 250px;
    } 

    .checkbox-wrapper input[type="checkbox"] {
        width: 25px;
        height: 20px;
        border: 1px solid #1047f7;
        border-radius: 10px;
        appearance: none;
        -webkit-appearance: none;
        margin-top: -17px;
        cursor: pointer;
        position: relative;
        background: #fff;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    /* ... existing code ... */
    
    .tasarlab-left{
        width: 550px !important;
    }
    .tasarlab-left img {
        width: 550px !important;
    }

}

body {
    overflow-x: hidden;
  }

  @media (min-width: 1200px) and (max-width: 1500px) {
    .lines {
        width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        margin-bottom: 80px;
    }
    
    .lines img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
  

@media (min-width: 768px) and (max-width: 800px) {
    .blur{
        display: block !important;
        width: 100% !important;
        margin-left: -50px !important;
    }
}

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.09);
    z-index: 999;
    transition: all 0.3s ease;
}
.go-top img{
    width: 20px;
    height: 20px;
}

.go-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .go-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: none;
    }
    
    .go-top img {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 1400px) and (max-width: 1920px) {
    .booacademyicon2 img {
        margin-left: -25px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .tablet-partner-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-items: center;
        align-items: center;
        padding: 0px 150px;
    }
}
@media (min-width: 1400px) and (max-width: 1500px) {
    .footer-copyright p {
        color: #878684;
        font-family: 'Inter';
        font-size: 12px;
        font-weight: 400;
        padding-top: 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .mobile-header {
        display: block;
        width: 90%;
        border-radius: 90px;
        margin: 20px auto 0;
        background: #fff;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0px 0px 60px 0px rgba(57, 76, 255, 0.05);
        backdrop-filter: blur(30px);
    }
}


/* Privcypolicy */

.privcypolicy-hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 120px;
    h1 {
        font-family: 'Manrope';
        font-size: 50px;
        font-weight: 700;
        line-height: 50px;
        color: #000;
        width: 500px;
        text-align:  center;
        line-height: 66px;
    }
}

.privcypolicy-hero-text{
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

.privacy-content {
    margin: 0 auto;
    padding: 40px 0;
    margin-bottom: 80px;
}

.privacy-section  h2 {
    font-family: 'Manrope';
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    color: #000;
    margin-bottom: 20px;
}

.privacy-section p {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .privcypolicy-hero-content {
        margin-bottom: 60px !important;
    }
    .privcypolicy-hero-content h1 {
        font-size: 37px !important;
        line-height: 50px !important;
        width: 100% !important;
        margin-top: 10px !important;
        margin-bottom: 0px !important;
    }
    .privacy-content {
        margin: 0 auto;
        padding: 30px 0;
        margin-bottom: 80px;
    }
    .privacy-section p {
        margin-bottom: 30px;
    }
    #privicy-mobile-footer {
        margin-top: -160px !important;
        margin-bottom: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .privcypolicy-hero-content {
        margin-top: 220px !important;
    }
    .container {
        width: 90% !important;
    }
}

/* Privcypolicy */

.footer-nav-right a:hover {
    color: #1047F7 !important;
}


.deneme a {
    text-decoration: none;
    color: #0033CC;
}

.nav-list li a:hover {
    color: #1047F7;
}
.language-selector span:hover {
    color: #1047F7;
}

/* Desktop form için */
.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Tablet form için */
.tablet-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Mobile form için */
.mobile-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}


.partner-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

