/* FONTS */

@font-face {
    font-family: 'Playfair';
    src: url('assets/fonts/Playfair/PlayfairDisplay-Black.ttf') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair';
    src: url('assets/fonts/Playfair/PlayfairDisplay-Bold.ttf') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair';
    src: url('assets/fonts/Playfair/PlayfairDisplay-Medium.ttf') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair';
    src: url('assets/fonts/Playfair/PlayfairDisplay-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('assets/fonts/BebasNeue/BebasNeue-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* LOADER WRAPPER */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--bg-color);
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
            transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    margin: -150px 0px 0px -150px;
    border-top-color: var(--main-color);
    z-index: 1001;
}

#loader img {
    position: relative;
    left: 50%;
    top: 50%;
    margin: -60px 0px 0px -75px;
    width: 150px;
    height: auto;
}

body.dark-mode #loader img {
    display: none;
}

#loader img.logo-light {
    display: none;
    position: relative;
    left: 50%;
    top: 30%;
    margin: -150px 0px 0px -75px;
    width: 150px;
    height: auto;
}

body.dark-mode #loader img.logo-light {
    display: block;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--main-color);
    background-image: url('path-to-your-logo.png');
    background-size: contain;
    background-repeat: no-repeat;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
            animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--main-color);

    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
            animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
                transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
                transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
                transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
                transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    
    -webkit-transition: all 0.3s 1s ease-out;
            transition: all 0.3s 1s ease-out;
}

.loaded #loader-wrapper .loader-section.section-right,
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

/* ROOT */

:root {
    --logo: #3c2414;

    --bg-color: #E8E8E8;
    --main-color: #1aabb3;
    --text-color: #3a3a38;
}

body.dark-mode {
    --bg-color: #3a3a38;
    --main-color: #1aabb3;
    --text-color: #E8E8E8;
}

/* DARK MODE */

.toggles {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    text-align: center;
}

#bulb {
    color: var(--text-color);
    font-size: 30px;
}

label input:checked ~ span {
    display: flex;
}

label span {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .5s;
}

input[type="checkbox"] {
    display: none;
}

body.dark-mode input,
body.dark-mode textarea {
    color: #E8E8E8;
}

/* MAIN WRAPPER */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    box-sizing: border-box;
    font-family: "Playfair", sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    transition: all ease-in-out .5s;
}

h2 {
    font-weight: 900;
    font-size: 3rem;
}

h2.title,
h3.title {
    text-align: center;
}

h3 {
    font-family: "Playfair", sans-serif;
}

a {
    color: var(--text-color);
}

main {
    display: flex;
    flex-direction: column;
    padding: 0px 40px 40px 40px;
    max-width: 1160px;
    width: 100%;
}

#main {
    padding-top: 10vh;
}

section {
    border-bottom: 2px solid var(--main-color);
    padding: 40px 20px;
}

.fontawe {
    font-size: 50px;
}

/* HEADER */

ul {
    list-style: none;
}

header a {
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    z-index: 100;
    transition: .5s;
    border-bottom: 5px solid var(--text-color);
    box-shadow: 0 -1px 8px var(--text-color);
}

.nav {
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-height: 5rem;
    max-width: 100%;
    transition: all ease .3s;
}

body.dark-mode header img {
    display: none;
}

header img.logo-light {
    display: none;
}

body.dark-mode header img.logo-light {
    display: block;
}

.container {
    margin: 2rem;
}

.nav__name {
    font-weight: 600;
}

.nav__icon {
    font-size: 1.5rem;
}

.nav__list,
.nav__link {
    display: flex;
}

.nav__list {
    justify-content: space-around;
    column-gap: 3rem;
}

.nav__link {
    flex-direction: column;
    align-items: center;
    row-gap: .25rem;
}

i.nav__icon {
    display: none;
}

@media screen and (max-width: 992px) {
    .container {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .nav__list {
        justify-content: center;
        column-gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) { 
    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--main-color);
        width: 100%;
        height: 4rem;
        padding: 0 2rem 0 0;
        display: grid;
        align-content: center-left;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: .5s;
        box-shadow: 0 -1px 12px rgb(59, 59, 59, 0.25);
    }

    .nav {
        height: 3rem;
    }

    .nav__link {
        color: #E8E8E8;
    }

    i.nav__icon {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .nav__list {
        justify-content: space-evenly;
        column-gap: 1.4rem;
    }

    .nav__name {
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .nav__list {
        column-gap: 1rem;
    }
}

/* EXPORT SECTION */

section.export {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid var(--bg-color);
    border-radius: 16px;
    transition: all ease .3s;
    margin-bottom: 50px;
}

section.export::before {
    z-index: 1;
    content: "";
    position: absolute;
    background: rgba(4, 139, 168, 0.1);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
}

section.export .content {
    text-align: center;
    z-index: 50;
    font-family: "BebasNeue", sans-serif;
}

section.export .content h2 {
    font-size: 8em;
    letter-spacing: 1px;
    line-height: 90px;
    margin-bottom: 40px;
    transition: all ease .3s;
    color: #ffffff;
    opacity: .9;
}

section.export .content h2 span {
    font-size: 90px;
    font-weight: 500;
    transition: all ease .3s;
}

section.export video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* THREE STEPS */

section.three-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.three-steps .steps {
    display: grid;
    grid-template-columns: repeat(3, 10fr);
    gap: 3.5rem;
    align-items: center;
    justify-items: center;
}

section.three-steps .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 40rem;
    width: 20rem;
    padding: 20px;
    border-radius: 16px;
    transition: all ease .3s;
}

section.three-steps .steps .step:hover {
    scale: 1.05;
    transition: all ease .3s;
}

section.three-steps .steps #step-1 {
    background-image: url("./assets/images/production/product.jpg");
    background-size: cover;
}

section.three-steps .steps #step-2 {
    background-image: url("./assets/images/production/customs.jpg");
    background-size: cover;
}

section.three-steps .steps #step-3 {
    background-image: url("./assets/images/production/transport.jpg");
    background-size: cover;
}

section.three-steps .steps .step .content {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    background: rgba(26, 171, 179, .8);
}

/* WHATSAPP SECTION */

section.whatsapp-offer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-image: linear-gradient(45deg, transparent 20%, black 25%, transparent 25%),
                      linear-gradient(-45deg, transparent 20%, black 25%, transparent 25%),
                      linear-gradient(-45deg, transparent 75%, black 80%, transparent 0),
                      radial-gradient(gray 2px, transparent 0);
    background-size: 30px 30px, 30px 30px;
    border-bottom: none;
}

section.whatsapp-offer button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 24px;
    background-color: #E8E8E8;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    padding: .1rem 5rem;
    cursor: pointer;
    box-shadow: 5px 5px var(--main-color);
    transition: all ease .3s;
}

section.whatsapp-offer button a {
    text-decoration: none;
    color: #000000;
}

/* OFFER POPUP */

div.popup {
    display: none;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 400px;
    min-width: 300px;
    background-color: var(--main-color);
    box-shadow: 5px 5px #3c2414;
    border-radius: 24px;
    padding: 8px 24px 18px 24px;
    text-align: center;
    animation: fadeIn ease .3s;
    z-index: 101;
}

div.popup.show{
    display: block;
}

div.popup form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 24px;
}

div.popup form div.field {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 16px;
    width: 100%;
}

::placeholder {
    color: var(--text-color)
}

div.popup form div.field label {
    float: left;
    margin-bottom: 4px;
}

div.popup form div.field input,
div.popup form div.field textarea {
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: var(--bg-color);
    font-family: "Playfair", sans-serif;
}

div.popup form div.field textarea {
    resize: vertical;
}

div.popup button {
    font-family: "Playfair", sans-serif;
    font-size: 24px;
    font-weight: 700;
    background-color: var(--bg-color);
    color: var(--text-color);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    box-shadow: 2px 2px var(--logo);
}

div.popup form span.fontawe {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 16px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

div.success {
    display: none;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 400px;
    min-width: 300px;
    color: var(--bg-color);
    background-color: var(--main-color);
    box-shadow: 5px 5px var(--logo);
    border-radius: 24px;
    padding: 8px 24px 48px 24px;
    text-align: center;
    z-index: 100;
    animation: fadeIn ease .3s;
}

div.success.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* SERVICES SECTION */

section.services-slider {
    display: flex;
    flex-direction: column;
    align-self: center;
    max-width: 800px;
    gap: 1rem;
}

section.services-slider .slides .slide {
    display: none;
}

section.services-slider .slides .slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    text-align: center;
    width: 500px;
    min-height: 290px;
    animation: fadeIn .3s;
}

section.services-slider .slides .slide h3 {
    font-size: 32px;
}

section.services-slider .slides .slide p {
    font-size: 24px;
}

section.services-slider .slides .slide a {
    text-decoration: none;
    border-bottom: 1px solid var(--main-color);
    font-size: 20px;
}

section.services-slider .slides .slide a:hover {
    color: var(--bg-color);
    background-color: var(--main-color);
    border-radius: 16px;
    padding: 5px 10px;
}

section.services-slider .indicators {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

section.services-slider .indicators .indicator {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-color: var(--main-color);
    transition: .5s;
    cursor: pointer;
}

section.services-slider .indicators .indicator.active {
    width: 75px;
}

/* WHY-US SECTION */

section.why-us {
    display: flex;
    flex-direction: column;
    align-self: center;
    max-width: 800px;
    gap: 1rem;
}

section.why-us .why {
    display: none;
}

section.why-us .why.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    text-align: center;
    width: 500px;
    min-height: 590px;
    animation: fadeIn .3s;
}

section.why-us .why h3 {
    font-size: 32px;
}

section.why-us .why p {
    font-size: 24px;
}

section.why-us .why span.fontawe {
    text-align: center;
    font-size: 80px;
    color: var(--main-color);
}

section.why-us .indicators-why {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

section.why-us .indicators-why .indicator-why {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-color: var(--main-color);
    transition: .5s;
    cursor: pointer;
}

section.why-us .indicators-why .indicator-why.active {
    width: 75px;
}

/* COUNTER SECTION */

section.counter-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

section.counter-section .card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.counter-section .card h2 {
    transition: all ease .3s;
}

/* SERVICES */

section.serv {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    min-height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid var(--bg-color);
    border-radius: 16px;
    transition: all ease .3s;
}

section.serv::before {
    z-index: 1;
    content: "";
    position: absolute;
    background: rgba(4, 139, 168, 0.1);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
}

section.serv .content {
    text-align: center;
    z-index: 50;
    font-family: "BebasNeue", sans-serif;
}

section.serv .content h2 {
    font-size: 8em;
    letter-spacing: 1px;
    transition: all ease .3s;
    color: #ffffff;
}

section.serv video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

section.two-serv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.two-serv .steps {
    display: grid;
    grid-template-columns: repeat(2, 10fr);
    gap: 3.5rem;
    align-items: center;
    justify-items: center;
}

section.two-serv .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 40rem;
    width: 20rem;
    padding: 20px;
    border-radius: 16px;
    transition: all ease .3s;
}

section.two-serv .steps .step:hover {
    scale: 1.05;
    transition: all ease-in-out .3s;
}

section.two-serv .steps #step-1 {
    justify-content: start;
    background-image: url("./assets/images/production/desk.jpg");
    background-size: cover;
    transition: all ease-in-out .3s;
}

section.two-serv .steps #step-2 {
    background-image: url("./assets/images/production/cargo.jpg");
    background-size: cover;
    transition: all ease-in-out .3s;
}

section.two-serv .steps .step .content {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    background: rgba(26, 171, 179, .8);
}

section.two-serv .steps .step .content h3 {
    font-size: 1.8em;
    font-weight: 600;
}

section.services {
    max-width: 800px;
    width: 100%;
    align-self: center;
    text-align: center;
}

section.services h3 {
    font-size: 30px;
}

section.services p {
    font-size: 24px;
}

/* MANUFACTURERS */

section.manufacturers {
    align-self: center;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: minmax(10rem, auto);
    align-items: center;
    justify-items: center;
}

section.manufacturers .manufacturer {
    height: 10rem;
    width: 10rem;
    border: 1px solid var(--main-color);
    background-color: #ffffff;
    padding: 5px;
    overflow: hidden;
    object-fit: contain;
}

section.manufacturers .manufacturer img {
    filter: grayscale(100%);
    height: 10rem;
    width: 10rem;
    object-fit: contain;
    padding: 15px;
}

section.manufacturers .manufacturer img:hover {
    filter: none;
}

.firmtemp {
    width: 500px;
    max-width: 100%; /* Mobil uyumluluk için genişliği sınırla */
    margin: auto;
    border: 1px solid var(--main-color);
    background-color: #ffffff;
    padding: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 15px;
	color: #333333;
}

.sola-kaydir {
    max-width: 100%;
    height: auto;
}

.firma-bilgi {
    display: flex;
    flex-direction: column; /* Firma adını ve adresi dikey hizala */
    justify-content: center;
}

.firma-bilgi h3 {
    margin: 0;
    font-size: 1.2em;
}

.firma-bilgi p {
    margin-top: 5px;
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) { /* Mobil ekranlar için */
    .firmtemp {
        flex-direction: column;
        align-items: center;
    }

    .sola-kaydir {
        padding: 0 0 10px 0;
    }
}


/* ABOUT */

section.about-us {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    min-height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid var(--bg-color);
    border-radius: 16px;
    transition: all ease .3s;
}

section.about-us::before {
    z-index: 1;
    content: "";
    position: absolute;
    background: rgba(26, 171, 179, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
}

section.about-us .content {
    text-align: center;
    z-index: 50;
    font-family: "BebasNeue", sans-serif;
}

section.about-us .content h2 {
    font-size: 8em;
    letter-spacing: 1px;
    transition: all ease .3s;
    color: #ffffff;
}

section.about-us video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

section.about {
    max-width: 800px;
    width: 100%;
    align-self: center;
    text-align: center;
}

section.why-we {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: none;
}

section.why-we .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("./assets/images/production/why-us.jpg");
    background-size: cover;
    color: #ffffff;
    width: 100%;
    min-height: 30rem;
    border-radius: 16px;
    border-bottom: none;
    transition: all ease-in-out .3s;
}

section.why-we .wrapper .content {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    max-width: 40rem;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background: rgba(26, 171, 179, .8);
    transition: all ease .3s;
}

section.why-we .wrapper .content:hover {
    scale: 1.05;
    transition: all ease .3s;
}

section.about#why-we::before {
    content: "";
    z-index: 1;
    background: rgba(26, 171, 179, .8);
}

section.saving {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: none;
}

section.saving h2 span {
    font-size: 2rem;
}

section.saving .steps {
    display: grid;
    grid-template-columns: repeat(3, 10fr);
    gap: 3.5rem;
    align-items: center;
    justify-items: center;
}

section.saving .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 40rem;
    width: 20rem;
    padding: 20px;
    border-radius: 16px;
    transition: all ease .3s;
}

section.saving .steps .step:hover {
    scale: 1.05;
    transition: all ease .3s;
}

section.saving .steps #step-1 {
    background-image: url("./assets/images/production/negotiation.jpg");
    background-size: cover;
}

section.saving .steps #step-2 {
    background-image: url("./assets/images/production/transfer.jpg");
    background-size: cover;
}

section.saving .steps #step-3 {
    background-image: url("./assets/images/production/delivery.jpg");
    background-size: cover;
}

section.saving .steps .step .content {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    background: rgba(26, 171, 179, .8);
}

section.manager {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.manager h2 span {
    font-size: 2rem;
}

section.manager .steps {
    display: grid;
    grid-template-columns: repeat(2, 10fr);
    gap: 3.5rem;
    align-items: center;
    justify-items: center;
    transition: all ease .3s;
}

section.manager .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 20rem;
    width: 31.5rem;
    padding: 20px;
    border-radius: 16px;
    transition: all ease .3s;
}

section.manager .steps .step:hover {
    scale: 1.05;
    transition: all ease-in-out .3s;
}

section.manager .steps #step-1 {
    background-image: url("./assets/images/production/qa.jpg");
    background-size: cover;
    transition: all ease-in-out .3s;
}

section.manager .steps #step-2 {
    justify-content: start;
    background-image: url("./assets/images/production/manager.jpg");
    background-size: cover;
    transition: all ease-in-out .3s;
}

section.manager .steps .step .content {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    background: rgba(26, 171, 179, .8);
}

section.owners {
    display: flex;
    flex-direction: column;
}

section.owners .names {
    display: grid;
    grid-template-columns: repeat(3, 10fr);
    align-items: center;
    justify-items: center;
    transition: all ease .3s;
}

section.owners .names h3 {
    font-size: 24px;
}

section.vis-mis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.vis-mis .steps {
    display: grid;
    grid-template-columns: repeat(2, 10fr);
    gap: 3.5rem;
    align-items: center;
    justify-items: center;
}

section.vis-mis .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 40rem;
    width: 20rem;
    padding: 20px;
    border-radius: 16px;
}

section.vis-mis .steps #step-1 {
    background-image: url("./assets/images/production/vision.jpg");
    background-size: cover;
    transition: all ease-in-out .3s;
}

section.vis-mis .steps #step-1:hover {
    scale: 1.05;
    transition: all ease-in-out .3s;
}

section.vis-mis .steps #step-2 {
    background-image: url("./assets/images/production/mission.jpg");
    background-size: cover;
    transition: all ease-in-out .3s;
}

section.vis-mis .steps #step-2:hover {
    scale: 1.05;
    transition: all ease-in-out .3s;
}

section.vis-mis .steps .step .content {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    background: rgba(26, 171, 179, .8);
}

section.vis-mis .steps .step .content h3 {
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "BebasNeue", sans-serif;
}

/* FOOTER */

footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

footer div.brand {
    text-align: center;
}

/* MOBILE SCREEN */

@media screen and (max-width: 1160px) {
    section.manufacturers {
        align-self: center;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        transition: all ease .3s;
        grid-auto-rows: minmax(10rem, auto);
        align-items: center;
        justify-items: center;
    }
}

@media screen and (max-width: 1024px) {
    div.popup {
        top: 40%;
        padding: 0px 18px;
    }

    section.export {
        min-height: 60vh;
        transition: all ease .3s;
    }

    section.export .content h2 {
        font-size: 6em;
        line-height: 75px;
        transition: all ease .3s;
    }

    section.export .content h2 span {
        font-size: 75px;
        transition: all ease .3s;
    }

    section.three-steps .steps {
        gap: 1rem;
    }

    section.three-steps .steps .step {
        height: 30rem;
        width: 15rem;
        padding: 15px;
        transition: all ease .3s;
    }

    section.saving .steps {
        gap: 1rem;
    }

    section.saving .steps .step {
        height: 30rem;
        width: 15rem;
        padding: 15px;
        transition: all ease .3s;
    }

    section.why-we .wrapper .content {
        max-width: 30rem;
        transition: all ease .3s;
    }

    section.manager .steps {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        transition: all ease .3s;
    }

    section.whatsapp-offer button {
        font-size: 16px;
        padding: .1rem 3rem;
    }

    section.serv .content h2 {
        font-size: 6em;
        transition: all ease .3s;
    }

    section.two-serv .steps .step {
        height: 30rem;
        width: 15rem;
        padding: 15px;
        transition: all ease .3s;
    }

    section.two-serv .steps .step .content h3 {
        font-size: 1.2em;
        font-weight: 600;
        letter-spacing: 1px;
        font-family: "BebasNeue", sans-serif;
    }
    
    section.manufacturers {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(10rem, auto);
    }

    section.manufacturers .manufacturer {
        height: 10rem;
        width: 10rem;
    }
    
    section.manufacturers .manufacturer img {
        height: 10rem;
        width: 10rem;
    }
}

@media screen and (max-width: 768px) {
    div.popup {
        top: 50%;
        padding: 0px 18px;
    }

    div.popup h2 {
        font-size: 24px;
    }
    
    main {
        max-width: 600px;
        width: 100%;
    }

    section.export {
        min-height: 50vh;
        transition: all ease .3s;
    }

    section.export .content h2 {
        font-size: 6em;
        line-height: 75px;
        transition: all ease .3s;
    }

    section.export .content h2 span {
        font-size: 65px;
        transition: all ease .3s;
    }

    section.three-steps h2 {
        text-align: center;
        transition: all ease .3s;
    }

    section.three-steps .steps {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
        transition: all ease .3s;
    }

    section.three-steps .steps .step {
        height: 40rem;
        width: 20rem;
        padding: 20px;
        transition: all ease .3s;
    }

    section.why-we .wrapper .content {
        max-width: 20rem;
        transition: all ease .3s;
    }

    section.saving h2 {
        text-align: center;
        transition: all ease .3s;
    }

    section.saving .steps {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
        transition: all ease .3s;
    }

    section.saving .steps .step {
        height: 40rem;
        width: 20rem;
        padding: 20px;
        transition: all ease .3s;
    }

    section.manager .steps {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        transition: all ease .3s;
    }

    section.manager .steps .step {
        height: 16rem;
        width: 25rem;
        transition: all ease .3s;
    }

    section.whatsapp-offer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    section.whatsapp-offer button {
        max-width: 25rem;
        width: 100%;
    }

    section.two-serv .steps {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
        transition: all ease .3s;
    }

    section.serv .content h2 {
        font-size: 6em;
        transition: all ease .3s;
    }

    section.about-us .content h2 {
        font-size: 6em;
        transition: all ease .3s;
    }

    section.two-serv .steps .step {
        height: 40rem;
        width: 20rem;
        padding: 20px;
        transition: all ease .3s;
    }

    section.two-serv .steps .step .content h3 {
        font-size: 1.6em;
    }

    div.popup {
        padding: 0;
    }

    section.counter-section {
        gap: 2.5rem;
    }
    
    section.counter-section .card h2 {
        transition: all ease .3s;
        font-size: 36px;
    }

    section.manufacturers {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(7rem, auto);
    }

    section.manufacturers .manufacturer {
        height: 7rem;
        width: 7rem;
    }
    
    section.manufacturers .manufacturer img {
        height: 7rem;
        width: 7rem;
    }

    section.owners .names {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        transition: all ease .3s;
    }

    section.vis-mis .steps {
        display: grid;
        grid-template-columns: repeat(1, 10fr);
        transition: all ease .3s;
    }

    footer div.brand {
        display: none;
    }
}

@media screen and (min-width: 429px) and (max-width: 530px) {
    section.services-slider .slides .slide.active {
        width: 400px;
        min-height: 300px;
    }
    
    section.services-slider .slides .slide h3 {
        font-size: 32px;
    }
    
    section.services-slider .slides .slide p {
        font-size: 24px;
    }
    
    section.services-slider .slides .slide a {
        font-size: 26px;
    }

    section.why-us .why.active {
        width: 400px;
        min-height: 600px;
    }
    
    section.why-us .why h3 {
        font-size: 32px;
    }
    
    section.why-us .why p {
        font-size: 24px;
    }

    section.why-we .wrapper .content {
        max-width: 15rem;
        transition: all ease .3s;
    }
    
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    footer div.numbers {
        margin-left: 30px;
    }
}

@media screen and (max-width: 428px) {
    h2.title {
        font-size: 36px;
    }
    
    main {
        max-width: 300px;
        width: 100%;
        overflow-x: hidden;
        padding: 20px;
    }

    section.export .content h2 span {
        font-size: 3rem;
        transition: all ease .3s;
    }

    section.serv .content h2 {
        font-size: 2.5em;
        transition: all ease .3s;
    }

    section.about-us .content h2 {
        font-size: 2.5em;
        transition: all ease .3s;
    }

    section.manager .steps .step {
        height: 15rem;
        width: 18.5rem;
        transition: all ease .3s;
    }

    section.manager .steps #step-1 {
        justify-content: center;
        transition: all ease-in-out .3s;
    }
    
    section.manager .steps #step-2 {
        justify-content: center;
        transition: all ease-in-out .3s;
    }

    section.whatsapp-offer {
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
    }

    section.whatsapp-offer button {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        font-size: 16px;
        padding: .1rem .1rem;
        transition: all ease .3s;
        max-width: 15rem;
    }

    div.popup form {
        padding: 12px 24px;
    }

    div.popup form div.field {
        margin-bottom: 4px;
    }

    section.services-slider .slides .slide.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
        text-align: center;
        width: 300px;
        min-height: 190px;
        animation: fadeIn .3s;
    }
    
    section.services-slider .slides .slide h3 {
        font-size: 20px;
    }
    
    section.services-slider .slides .slide p {
        font-size: 16px;
    }
    
    section.services-slider .slides .slide a {
        font-size: 18px;
    }

    section.why-us .why.active {
        width: 300px;
        min-height: 375px;
    }
    
    section.why-us .why h3 {
        font-size: 20px;
    }
    
    section.why-us .why p {
        font-size: 16px;
    }

    section.counter-section {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    section.counter-section .card h2 {
        transition: all ease .3s;
        gap: 0;
        font-size: 24px;
    }

    section.manufacturers {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(7rem, auto);
    }

    section.manufacturers .manufacturer {
        height: 7rem;
        width: 7rem;
    }
    
    section.manufacturers .manufacturer img {
        height: 7rem;
        width: 7rem;
    }
    
    section.owners .names {
        flex-direction: column;
        gap: 0;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-bottom: 6rem;
    }

    footer div.numbers {
        margin-left: 35px;
    }
}
.services-section {
    padding: 20px;
    width: 90%;
    margin: 0 auto;
}

.services-title {
    font-size: 2.3em;
    text-align: center;
    margin-bottom: 1em;
    width: 100%;
}

.service {
    margin-bottom: 2em;
}

.service-title {
    font-size: 3em;
    margin-bottom: 10px;
    text-align: center;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-description {
    width: 60%;
    line-height: 2.2;
	font-size: 1.1em;
}
.service-advantages {
    margin-top: 15px;
    padding-left: 0px;
    font-size: 1.1em;
    line-height: 2.0;
    color: #333;
}

.service-advantages li {
    margin-bottom: 8px;
}
.service-image {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobil için Alt Alta Görünüm */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .service-image,
    .service-content p {
        width: 100%;
    }
}
}



