:root {
    --Base-Dark: #0A0A0A;
    --primary-bc-red-500: #EC1E35;
    --Base-White: #FFF;
    --primary-bc-blue-500: #3598D2;
    --Text-Primary: #0A0A0A;
    --Text-Secondary_v2: #4D4D4D;
    --Text-Secondary: #333;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    width: 100%;
    color: var(--Text-Primary);
    font-size: 18px;
}

img {
    object-fit: cover;
}

.just-desktop {
    display: block !important;
}

.just-mobile {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Changa', sans-serif;

}

.relative {
    position: relative;
}

.main-container {
    max-width: 1440px;
    /* 1344px + 48px padding on each side */
    padding: 0 48px;
    margin: 0 auto;
    width: 100%;
}

.section-title-small {
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    /* 57.6px */
    letter-spacing: 0.96px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.section-title-xsmall {
    color: var(--Text-Primary, #0A0A0A);
    /* Headline/H0 */
    font-family: Changa;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    /* 38.4px */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.page-padding {
    padding-top: 100px;
}

.page-padding-l {
    padding-top: 150px;
}

.page-padding-xl {
    padding-top: 200px;
}

.page-padding-bottom {
    padding-bottom: 100px;
}

.page-padding-bottom-xxl {
    padding-bottom: 300px;
}

.border-white {
    border: 1px solid var(--Base-White) !important;
}

.justify-end {
    justify-content: end !important;
}

.justify-start {
    justify-content: start !important;
}

.mySwipper .swiper-wrapper {
    height: 590px;
}

.swiper-slide {
    overflow: hidden;
}

.news-slider .swiper-slide img {
    height: 590px;
    /* Sabit bir yükseklik belirleyin */
    max-height: 100%;
    /* Görüntünün kaydırma alanının yüksekliğini aşmamasını sağlar */
    width: auto;
    /* Görüntünün en boy oranını korur */
    object-fit: cover;
    /* Görüntünün kaydırma alanını doldurmasını sağlar */
}


.swiper-pagination {
    position: unset !important;
    margin-top: 48px;
}

.swiper-pagination-bullet {
    border-radius: 0px !important;
}

.swiper-pagination-bullet-active {
    background: var(--Base-Dark);
}

.section-heading {
    font-size: 64px;
    font-weight: 200;
    line-height: 120%;
    /* 76.8px */
    letter-spacing: 1.28px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--Base-Dark);

}

.section-heading-centered {
    font-size: 64px;
    font-weight: 200;
    line-height: 120%;
    /* 76.8px */
    letter-spacing: 1.28px;
    text-align: center;
    margin-bottom: 56px;
    margin-top: 0px;
}

.section-description {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.36px;
}

header {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 10px 0;
    height: 80px;
    font-size: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Changa', sans-serif;
}

header .selected {
    color: var(--primary-bc-red-500);
}

.navbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 70px;
    /* Add 70px spacing between sections */
}

.navbar-row .logo a {
    display: block;
    display: flex;
    align-items: center;
}

/* Left section */
.logo {
    flex-shrink: 0;
    /* Prevent logo from shrinking */
}

.logo img {
    height: 40px;
}

/* Middle section */
nav {
    flex: 1;
    /* Take remaining space */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    /* Center the menu items */
    gap: 32px;
    /* Space between menu items */
}

nav ul li {
    display: flex;
    align-items: center;
}

/* Right section */
.nav-end {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    /* Prevent right section from shrinking */
}

.nav-end svg {
    margin-left: 8px;
}

.nav-end .language-select {
    color: var(--Base-White);
    text-decoration: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-bc-red-500);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.close-menu {
    display: none;
}

.active .close-menu {
    display: block;
}

.active .open-menu {
    display: none;
}


.btn {
    display: flex;
    padding: 13px 22px;
    justify-content: center;
    align-items: center;
    line-height: 18px;
    font-weight: 300;
    text-decoration: none;
    width: fit-content;
    font-family: 'Changa', sans-serif;

}

.btn-big {
    padding: 18px 30px;
}

.btn-primary {
    box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.25);
    color: #000;
    border: 1px solid var(--Base-Dark);
    background: var(--Base-White, #FFF);
}

.btn-secondary {
    color: var(--Base-White);
    background-color: var(--Base-Dark);
}

.btn-primary:hover {
    color: var(--Base-Dark);
    border: 1px solid var(--Base-Dark);
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.05) 100%), #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
    border: 1px solid var(--Base-White);
    background: var(--Base-Dark);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-primary:focus {
    border: 1px solid var(--Base-White);
}

.hero-section {
/*    background-image: url('images/Middle.png');
    background-size: cover;
    background-position: center;*/
    color: white;
}

.hero-content {
    /* max-width: 650px; */
    text-align: left;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 64px;
    font-weight: 200;
    line-height: 120%;
    /* 76.8px */
    letter-spacing: 1.28px;
    margin-top: 16px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 430px;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.36px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    /* Text color */
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    cursor: pointer;
}

.slide-content-inner {
    padding: 26px;
}

.slide-content-inner img {
    height: 56px;
    object-fit: contain;
    margin-bottom: 12px;
}

.slide-desc,
.slide-sub-desc {
    margin: 0;
    /* Remove default margin */
}

.slide-desc {
    font-family: Changa;
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    /* 57.6px */
    letter-spacing: 0.96px;
}

.slide-sub-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: 0.32px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.products-grid .card-container {
    border: 1px solid var(--Base-Dark);
    padding-top: 72px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 36px;
}

.products-grid .card-container img {
    height: 56px;
    width: auto;
    margin-bottom: 40px;
}

.products-grid img {
    width: 100%;
}

.card-container {
    display: flex;
    flex-direction: column;
    padding: 36px;
    height: 100%;
}

.card-container .title {
    margin-bottom: 40px;
}

.card-container .desc {
    margin-top: 0px;
}

.spacer {
    flex: 1 1 0;
    /* Boş alan oluşturur */
}

/* .text-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
} */

.text-card .top-title {
    font-family: Changa;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
}

.text-card h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    /* 57.6px */
    letter-spacing: 0.96px;
    margin-top: 0px;
}

.text-card p {
    font-size: 16px;
    line-height: 1.5;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    /* Butonu sağa hizala */
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 24px;
    margin-bottom: 72px;
}

.service-card {
    position: relative;
    background-color: var(--Base-Dark);
    height: 580px;
}

.service-card img {
    width: 100%;
    /* Resmi kartın genişliğine uyarlar */
    height: auto;
    /* Oranları korur */
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: white;
    /* Text color */
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding-bottom: 38px;
}

.card-content .title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    /* 57.6px */
    letter-spacing: 0.96px;
    margin-bottom: 20px;
}

.image-card {
    position: relative;
    background-color: var(--Base-Dark);
    height: 140px;
}

.image-card .card-content {
    justify-content: center;
    padding-bottom: 0px;
    background-color: rgba(0, 0, 0, 0.4);
}

.image-card img {
    height: 140px;
    width: 100%;
    filter: grayscale(100%);
    /* Görseli siyah-beyaz yapar */

}

.image-card .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%
}


.text-red {
    color: var(--primary-bc-red-500);
}

.text-blue {
    color: var(--primary-bc-blue-500);
}

.text-yellow {
    color: #FBE10E;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-column-gap: 160px;
    grid-row-gap: 40px;
}

.solutions-image-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.testimonial-card {
    padding: 32px;
    border: 1px solid var(--Base-Dark);
    max-width: 500px;
    height: fit-content;
}

.testimonial-card .header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-card .profile-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-card .title-section {
    display: flex;
    flex-direction: column;
}

.testimonial-card .name-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: 0.3px;
}

.testimonial-card .company {
    color: var(--Text-Primary);
    font-family: Changa;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    /* 38.4px */
}

.testimonial-card .content {
    font-size: 16px;
    line-height: 1.5;
}


.testimonialSwiper {
    position: relative;
    padding-bottom: 48px;
    max-width: 500px;
    /* Match the card max-width */
    margin-right: auto;
    margin-left: unset;
}

.testimonialSwiper .swiper-wrapper {
    height: auto !important;
}

.testimonialSwiper .swiper-slide {
    height: auto !important;
    opacity: 1;
}

.testimonialSwiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    border-radius: 50%;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--Base-Dark);
}

.ecosystem-section {
    background-color: var(--Base-Dark);
    /* background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Frame%201597882599-pWaxqjI0OqcLu639DuqjBfOmuPPDw8.png'); */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    /* min-height: 500px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ecosystem-section .section-heading {
    color: var(--Base-White);
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    /* 57.6px */
    letter-spacing: 0.96px;
    margin-bottom: 56px;
}

.ecosystem-section svg path {
    fill: #B4B9C9;
    /* Set the initial color */
}

.logo-slider {
    margin-bottom: 72px;
    padding: 0 40px;
}

.logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-slide img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-slide:hover img {
    opacity: 1;
}

.sub-nav {
    background: #fff;
    border-bottom: 1px solid var(--Base-Dark);
    position: sticky;
    top: 0px;
    z-index: 100;
}



.nav-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    /* This will distribute space evenly */
    align-items: center;
    /* Vertically center the items */
    margin: 0;
    padding: 0;
}

.nav-list .selected {
    display: flex;
    align-items: center;
}

.nav-list .selected img {
    margin-right: 6px;
    width: 20px;
}

.nav-list .selected .nav-link {
    color: var(--primary-bc-red-500, #EC1E35);

}

.nav-list li {
    margin: 0;
}

.nav-item {
    flex: 0 1 auto;
    /* Allow items to shrink but not grow */
}



.nav-link {
    display: block;
    padding: 20px 0;
    /* Remove horizontal padding */
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #EC1E35;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    width: 100%;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--Base-Dark);
    font-size: 16px;
    font-weight: 500;
    color: #1F2937;
    text-align: left;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.partner-card {
    padding: 40px;
    border: 1px solid var(--Base-Dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-card h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin: 0;
}

.partner-card-black {
    background-color: #000;
    color: white;
    border: none;
}

.partner-card-red {
    background-color: #EC1E35;
    color: white;
    border: none;
}

.top-hero-title {
    color: var(--primary-bc-red-500);
    /* Label/Large/Medium */
    font-family: Changa;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    /* 24px */
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.solution-box {
    border: 1px solid var(--Base-Dark);
    overflow: hidden;
    background: #fff;
}

.solution-image-wrap {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.solution-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: 32px 20px;
}

.solution-content h3 {
    font-size: 32px;
    font-weight: 200;
    line-height: 120%;
    /* 38.4px */
    margin-bottom: 20px;
    margin-top: 0px;
}

.solution-content p {
    font-size: 15px;
    font-weight: 600;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: 0.3px;
    margin: 0;
}



#certificates .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

#certificates .testimonial-card a {
    display: flex;
    justify-content: end;
    font-family: Changa;
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
    color: var(--primary-bc-red-500);
    text-decoration: none;
    /* 18px */
}

.chevron-contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chevron-item {
    display: flex;
    gap: 12px;
}

.chevron-item img {
    height: 20px !important;
}

.chevron-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.36px;
}

.linkedin-button {
    position: absolute;
    bottom: 36px;
    right: 36px;
    background: white;
    padding: 18px 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--Base-Dark);
}

.jobs-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--Base-Dark);
    margin-bottom: 12px;
    max-width: 800px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    text-decoration: none;
    color: var(--Base-Dark);
    border-bottom: 1px solid var(--Base-Dark);
    transition: all 0.3s ease;
}



.job-title {
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
    /* 24px */
    letter-spacing: 0.4px;
}

.job-item svg {
    color: var(--Base-Dark);
    transition: transform 0.3s ease;
}

.job-item:hover {
    padding-left: 8px;
}

.job-item:hover svg {
    transform: translateX(4px);
}

.search-container {
    position: relative;
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    padding: 14px;
    border: none;
    border-bottom: 1px solid var(--Base-Dark);
    font-size: 20px;
    transition: border-color 0.3s ease;
}

.search-input::placeholder {
    color: var(--Base-Dark);
}

.search-input:focus {
    outline: none;
    border-color: #000;
}

.search-button {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--Base-Dark);
}

.certificates-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 72px;
}

.certificate-item {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(45, 49, 63, 0.10);
    padding-bottom: 28px;
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateX(8px);
}

.certificate-year {
    font-family: Changa;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
}

.certificate-title {
    font-family: Changa;
    font-size: 32px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 120%;
    /* 38.4px */
}

.certificate-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: 0.3px;
    margin-bottom: 32px;
}

.view-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-bc-red-500);
    font-weight: 500;
}

.view-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.category-filters {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--Base-Dark);
    justify-content: space-between;
}

.category-btn {
    background: none;
    border: none;
    padding: 14px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: var(--Text-Secondary_v2, #4D4D4D);
    font-weight: 300;
    min-width: 105px;
    font-family: Changa;

}

.category-btn.active {
    color: var(--primary-bc-red-500);
    font-weight: 500;
}

.category-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #DC2626;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
}

.news-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-card {
    border: 1px solid var(--Base-Dark);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-image {
    aspect-ratio: 16/9;
    background: var(--Base-Dark);
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.news-date {
    font-family: Changa;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
}

.news-category {
    padding: 8px 13px;
    border: 1px solid var(--Base-Dark);
    font-family: Changa;
    font-size: 15px;
    font-weight: 300;
    line-height: 120%;
    /* 18px */
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 0px;

}

.news-excerpt {
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--Text-Secondary, #333);
    /* Body/B2/Medium */
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: 0.3px;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-bc-red-500);
    text-decoration: none;
    font-weight: 500;
    justify-content: end;
    font-family: Changa;
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
    /* 18px */
}

.news-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

.news-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 60px;
    grid-row-gap: 40px;

}

.software-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solution-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.solution-item .section-description {
    margin-bottom: 0px;
}

.news-filters {
    margin-top: 100px;
}

.sub-menu-buttons {
    display: none;
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
    margin-top: 20px;
}

.sub-menu-buttons .btn {
    width: 100%;
}

.anasayfa-div {
    color: var(--Base-White, #FFF);
    font-family: "Changa";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 16.8px */
    display: flex;
    align-items: center;
}

.text-grad-selected{
    color: var(--primary-bc-red-500, #EC1E35);
}

#nav-menu img{
    display: none;
}

.sub-menu{
    display: none;
}

.nav-language-select{
    display: none;
}

.footer {
    background: var(--Base-Dark);
    padding-top: 72px;
    /* max-width: 1400px;
    margin: 0 auto; */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.10);
}


.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons svg {
    width: 32px;
    height: 32px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-content {
    display: grid;
    grid-template-columns: 280px repeat(5, 1fr);
    gap: 40px;
    /* padding-bottom: 3rem; */
    align-items: flex-start;
    padding-top: 40px;
}


.footer-section-contact {
    padding-right: 40px;
    border-right: 0.5px solid rgba(255, 255, 255, 0.10);
    height: 100%;
    box-sizing: border-box;
    /* Padding dahil toplam yüksekliği hesaba katar */


}

.footer-section h3 {
    color: var(--Base-White);
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 300;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 24px;
    margin: 0px;
    padding-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    line-height: 120%;
    /* 18px */
    margin-bottom: 24px;
}

.footer-section ul li a {
    color: rgba(245, 247, 251, 0.50);
    /* Label/Medium/Medium */
    font-family: Changa;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;


}

.footer-section ul li a:hover {
    color: var(--Base-White);
}

.footer-section-end {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

.contact-info {
    height: 100%;
    /* Yükseklik belirlenir */
    display: flex;
    flex-direction: column;
    /* Dikey düzenleme */
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info a {
    text-decoration: none;
}

.contact-item {
    padding: 20px 10px;
    color: var(--Base-White);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: 0.3px;
}

.contact-item a {
    color: var(--Base-White);

}

.contact-item svg {
    flex-shrink: 0;
    /* SVG'nin boyutunun küçültülmesini engeller */
    width: 16px;
    /* Sabit genişlik */
    height: auto;

}

.phone-item {
    background: rgba(236, 30, 53, 0.20);
}

.email-item {
    background: rgba(251, 225, 14, 0.10);
    margin-top: 12px;
    margin-bottom: 12px;
}

.address-item {
    background: rgba(53, 152, 210, 0.10);
    height: 100%;
    /* Parent container yüksekliğini kaplar */
    display: flex;
    /* İçerik hizalaması için */
    align-items: start;
    /* İçeriği başlangıç noktasına hizalar */

}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.phone-icon {
    background-color: #4CAF50;
}

.email-icon {
    background-color: #2196F3;
}

.address-icon {
    background-color: #FFC107;
}

.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.10);
    padding: 48px 0px;
    text-align: center;
    color: rgba(245, 247, 251, 0.70);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    line-height: 150%;
    /* 24px */
    letter-spacing: 0.32px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    margin: 0 0.5rem;
}



@media (max-width: 1320px) {

    #nav-menu img{
        display: block;
    }

    .nav-language-select{
        display: flex;
    }

    /* header{
        position: fixed;
    } */
    header nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0A0A0A;
        position: fixed;
        top: 80px;
        left: 0;
        /* padding-top: 20px; */
    }


    #nav-menu {
        /* padding-left: 48px;
        padding-right: 48px; */
        height: calc(100vh - 80px);
        justify-content: space-between;
    }

    #nav-menu li {
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        padding: 20px 16px;
    }

    #nav-menu ul {
        gap: 0px;
    }

    .nav-end {
        display: none;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .sub-menu-buttons {
        display: flex;
    }

    .sub-menu ul {
        width: 100%;
        gap: 0px;
    }

    .sub-menu img {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .sub-menu.active {
        display: flex;
        justify-content: space-between;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0a0a0b;
        /* border-top: 1px solid #1e1e1e; */
        overflow-y: auto;
    }

    .sub-menu.active ul {
        flex-direction: column;
        /* padding: 20px; */
    }

    .sub-menu.active ul li {
        margin-bottom: 15px;
    }

    .sub-menu li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        padding: 20px 16px;
    }


    .contact {
        display: none;
    }

    .footer-content {
        grid-template-columns: 300px repeat(2, 1fr);
    }
}

/* Mobil versiyon için medya sorgusu */
@media (max-width: 768px) {

    body {
        font-size: 13.3px;
        line-height: 150%;
    }

    .just-desktop {
        display: none !important;
    }

    .just-mobile {
        display: block !important;
    }

    #nav-menu {
        /* padding-left: 16px;
        padding-right: 16px; */
    }

    .nav-list .selected img {
        display: none;
    }

    .sub-nav .nav-list {
        gap: 0px;
    }

    .products-grid .card-container {
        padding: 32px 16px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .sub-nav {
        position: unset;
        border-bottom: unset;
        padding-top: 20px;
    }


    .nav-list {
        display: none;
        flex-direction: column;
        margin-top: 8px;
        background: #fff;
        border: 1px solid var(--Base-Dark);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .nav-link:hover {
        background-color: #F3F4F6;
    }

    .mobile-nav-toggle.active .chevron-icon {
        transform: rotate(180deg);
    }

    .page-padding {
        padding-top: 80px;
    }

    .page-padding-l {
        padding-top: 120px;
    }

    .page-padding-xl {
        padding-top: 160px;
    }

    .hero-content h1 {
        font-size: 36px;
        font-weight: 200;
        line-height: 120%;
        /* 43.2px */
        letter-spacing: 0.72px;
    }

    .hero-content p {
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        /* 24px */
        letter-spacing: 0.32px;
    }

    .section-heading {
        font-size: 32px;
        font-weight: 200;
        line-height: 120%;
        /* 38.4px */
        letter-spacing: 0.64px;
    }

    .section-heading-centered {
        font-size: 32px;
        font-weight: 200;
        line-height: 120%;
        /* 38.4px */
        letter-spacing: 0.64px;
        margin-bottom: 48px;
    }

    .section-description {
        font-size: 13.3px;
        font-weight: 500;
        line-height: 150%;
        /* 19.95px */
        letter-spacing: 0.266px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid .card-container {
        border-top: 1px solid var(--Base-Dark);
        border-bottom: 1px solid var(--Base-Dark);
    }

    /* Reset any previous order */
    .products-grid>* {
        order: unset;
    }


    /* Create pairs of image and card */
    /* .products-grid>img:nth-of-type(1) {
        order: 1;
    }

    .products-grid>.card-container:nth-of-type(1) {
        order: 2;
    }

    .products-grid>img:nth-of-type(2) {
        order: 3;
    }

    .products-grid>.card-container:nth-of-type(2) {
        order: 4;
    }

    .products-grid>img:nth-of-type(3) {
        order: 5;
    }

    .products-grid>.card-container:nth-of-type(3) {
        order: 6;
    } */

    /* Mobilde her bir öğenin sırasını düzenle */
    .products-grid>img:nth-of-type(1) {
        grid-row: 1;
    }

    .products-grid>.card-container:nth-of-type(1) {
        grid-row: 2;
    }

    .products-grid>img:nth-of-type(2) {
        grid-row: 3;
    }

    .products-grid>.card-container:nth-of-type(2) {
        grid-row: 4;
    }

    .products-grid>img:nth-of-type(3) {
        grid-row: 5;
    }

    .products-grid>.card-container:nth-of-type(3) {
        grid-row: 6;
    }

    .products-grid>img:nth-of-type(4) {
        grid-row: 7;
    }

    .products-grid>.card-container:nth-of-type(4) {
        grid-row: 8;
    }

    .products-grid>img:nth-of-type(5) {
        grid-row: 9;
    }

    .products-grid>.card-container:nth-of-type(5) {
        grid-row: 10;
    }

    .products-grid>img:nth-of-type(6) {
        grid-row: 11;
    }

    .products-grid>.card-container:nth-of-type(6) {
        grid-row: 12;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 32px;
    }

    .card-container {
        padding: 32px 16px;
    }

    .card-content .title {
        font-size: 28px;
        font-weight: 500;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 0.56px;
        /* max-width: 300px; */
    }

    .text-card h3 {
        font-size: 28px;
        font-weight: 500;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 0.56px;
    }

    .text-card .top-title {
        font-size: 15px;
        font-weight: 400;
        line-height: 120%;
        /* 18px */
    }

    .solutions-image-grid .card-content .title {
        font-size: 18px;
        font-weight: 500;
        line-height: 120%;
        /* 21.6px */
    }

    .news-slider .swiper-slide img {
        height: 300px;
    }

    .slide-desc {
        font-size: 28px;
        font-weight: 500;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 0.56px;
    }

    .slide-sub-desc {
        font-size: 14px;
    }

    .btn-big {
        padding: 14px 24px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .main-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #consulting-services .main-container {
        padding-left: 0;
        padding-right: 0;
    }

    #consulting-services .section-heading {
        padding-left: 16px;
    }

    #software-services .main-container {
        padding-left: 0;
        padding-right: 0;
    }

    #software-services .section-heading {
        padding-left: 16px;
    }

    .text-card p {
        font-size: 13.3px;
        font-weight: 500;
        line-height: 150%;
        /* 19.95px */
        letter-spacing: 0.266px;
    }



    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card .company {
        font-size: 24px;
    }

    .testimonial-card .profile-image {
        width: 48px;
        height: 48px;
    }

    .service-card {
        height: 375px;
    }

    .service-card img {
        height: 375px;
        object-fit: cover;
    }

    .ecosystem-section .section-heading {
        font-size: 28px;
        font-weight: 500;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 0.56px;
    }

    .partner-card {
        padding: 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .solution-content {
        padding: 20px 16px;
    }

    .solution-content h3 {
        font-size: 20px;
        font-weight: 200;
        line-height: 120%;
        /* 24px */
    }

    .solution-content p {
        font-size: 11px;
        line-height: 150%;
        /* 16.5px */
        letter-spacing: 0.22px;
    }

    .category-filters {
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0px;

    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-grid-2 {
        grid-template-columns: 1fr;

    }

    .news-content {
        padding: 16px;
    }

    .news-filters {
        grid-template-columns: 1fr;
    }

    .software-solutions {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-filters {
        margin-top: 44px;
    }

    .section-title-small {
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 0.56px;
    }

    /* .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    } */
    .social-icons {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 20px;
    }

    .footer-section-mobile {
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section-mobile h3 {
        /* padding: 20px 0; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin: 0;
    }

    .footer-section-mobile h3::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .footer-section-mobile.active h3 {
        color: var(--primary-bc-red-500);
    }

    .footer-section-mobile.active h3::after {
        transform: rotate(-135deg);
    }

    /* .footer-section-mobile ul,
    .footer-section-contact .contact-info {
        display: none;
        padding: 0 0 20px;
    } */

    .footer-section-mobile ul {
        display: none;
        padding: 0 0 20px;
    }

    .footer-section-contact .contact-info {
        display: block;
        padding: 0 0 20px;
    }

    .footer-section-mobile.active ul,
    .footer-section-contact.active .contact-info {
        display: block;
    }

    .footer-section-contact {
        border-right: none;
        padding-right: 0;
        order: 99;
    }

    .address-item {
        height: unset;
    }

    .footer-section-end {
        gap: 20px;
        padding-bottom: 20px;
    }


    /* Removed as per update 2 */
    /*.footer-section-end {
        flex-direction: column;
        gap: 0;
    }

    .footer-section-end > div {
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section-end > div:last-child {
        border-bottom: none;
    }*/
}

/* Testimonial Swiper Container */
.testimonialSwiper {
    position: relative;
    padding-bottom: 48px;
    max-width: 500px;
    margin-right: auto;
    margin-left: unset;
    width: 100%;
}

.testimonialSwiper .swiper-wrapper {
    height: auto !important;
}

.testimonialSwiper .swiper-slide {
    height: auto !important;
    opacity: 1;
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    padding: 32px;
    border: 1px solid var(--Base-Dark);
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
}

/* Card Header */
.testimonial-card .header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-card .profile-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card .title-section {
    display: flex;
    flex-direction: column;
}

.testimonial-card .name-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.3px;
}

.testimonial-card .company {
    color: var(--Text-Primary);
    font-family: Changa;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
}

.testimonial-card .content {
    font-size: 16px;
    line-height: 1.5;
}

/* Pagination */
.testimonialSwiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    border-radius: 50%;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--Base-Dark);
}

.pointer {
    cursor: pointer;
}


@media (max-width: 480px) {
    .testimonial-card {
        padding: 16px;
    }

    .testimonial-card .header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .testimonial-card .profile-image {
        width: 40px;
        height: 40px;
    }

    .testimonial-card .company {
        font-size: 20px;
    }

    .testimonial-card .name-title {
        font-size: 14px;
    }

    .testimonial-card .content {
        font-size: 14px;
    }
}