:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-color: #ffffff;
    --text-color: #333333;
    --body-color: #f7f7f7;
    --button-color: #1b6ec2;
    --link-color: #1861ac;
}

@font-face {
    font-family: "Oswald";
    /*src: url("../fonts/Rajdhani-Regular.ttf") format("truetype");*/
    src: url("../fonts/Orbitron-Regular.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

#Website {
    display: none;
}

body {
    margin-bottom: 60px;
    background-color: var(--body-color);
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}


/*Return Top Button*/
#top-btn {
    z-index: 3;
    position: fixed;
    bottom: 50px;
    right: 100px;
    padding: 7px 14px;
    border-radius: 3px;
    color: #fff;
    background-color: #185484;
    cursor: pointer;
    line-height: 30px;
    transition: 0.3s ease;
    border: 0.25px solid #a1a1a1;
    animation: topBtn 1s;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

    #top-btn:hover {
        background-color: #1e68a4;
        border: none;
    }

        #top-btn:hover .top-btn-icon {
            color: #fff;
        }

@media screen and (max-width: 768px) {
    #top-btn {
        right: 50px;
        bottom: 30px;
    }
}

@keyframes topBtn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    #top-btn {
        right: 25px;
    }
}
/* Global elements | | x-section */
.x-wrapper {
    padding: 1rem;
}

/* Global Page Layout */
.xp-header {
    font-size: 32px;
    color: #302dbb;
    text-indent: 0.5rem;
    margin: 1rem;
}

.xp-s-header {
    font-size: 24px;
    color: #8784f1;
    text-indent: 0.5rem;
    border-bottom: 1px solid #dde8fb;
    margin: 0.5rem;
}

.xp-p {
    color: #302dbb;
    font-weight: 500;
    word-spacing: 0.2rem;
    letter-spacing: 0.01rem;
    margin: 1rem;
}

.xp-p-s {
    color: #8784f1;
    font-weight: 500;
    word-spacing: 0.2rem;
    text-indent: 1rem;
    letter-spacing: 0.02rem;
    margin: 0.5rem;
}

/* Inputs */
.x-inpt {
    margin: 0.2rem;
    border: 1px solid #b1aaaaa6;
    border-radius: 5px;
    outline: none;
    transition: 0.3s ease;
}

    .x-inpt:hover {
        border: 1px solid #1e62dd;
    }

    .x-inpt:active {
        border: 1px solid #1e62dd;
    }

    .x-inpt:focus {
        border: 1px solid #a8b324;
        background-color: #dbe6ef0f;
    }

.x-inpt-sm {
    padding: 0.3rem 1rem;
    font-size: 14px;
}

/* Labels */
.x-lbl-sm {
    font-weight: 400;
    color: #004085;
    font-size: 18px;
    margin: 0.2rem;
}

/* Buttons */
.x-btn {
    outline: none;
    border: 1px solid #80808026;
    background-color: #daddff;
    text-decoration: none;
    color: #302dbb;
    cursor: pointer;
    transition: 0.3s ease;
}

    .x-btn:hover {
        background-color: #eee5ff;
        border: 1px solid #a59f9f;
        color: #000;
    }

/* Secondary Button */
.xs-btn {
    background-color: #5383e3;
    border: 1px solid transparent;
    color: #f1eeee;
}

    .xs-btn:hover {
        border: 1px solid #000;
        color: #fff;
    }

/* Tertiary Button */
.xt-btn {
    background-color: #f1f2f5;
    border: 1px solid #dbd4d4;
    color: #4b4949;
}

    .xt-btn:hover {
        border: 1px solid #635f5f;
        color: #000;
    }

/* Forms */
.x-form-sm {
    width: 500px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fafdff;
    box-shadow: 1px 1px 14px 1px #e3dcdc;
}

/* Global Classes | | x-section */
.x-flex-center-v {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.xmt-1 {
    margin-top: 1rem;
}

.xmb-1 {
    margin-bottom: 1rem;
}

.xpt-1 {
    padding-top: 1rem;
}

.xpb-1 {
    padding-bottom: 1rem;
}

.x-fx {
    display: flex;
}

.xt-3 {
    transition: all ease 0.3s;
}

/*Notifications*/
/*Cookie Consent and Notification*/
.cookie-consent-container {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    margin-bottom: 0 !important;
    width: 100%;
    color: #f9f9f9;
    background-color: #256692;
    border-color: #ffffff;
    box-shadow: 1px 1px 12px 1px #29292942;
}

.cookie-left {
    padding: 1rem;
}

.cookie-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.accept-cookie-policy {
    background-color: #ffffffd9;
    color: #0c325a;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 7px 30px;
    font-weight: 400;
    transition: 0.3s ease;
}

    .accept-cookie-policy:hover {
        background-color: #fff;
    }

#main {
    overflow: hidden;
}

#cookieWrapper {
    display: none;
    position: fixed;
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    z-index: 1000;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translate(50%, 0%);
    width: 50%;
}

@media screen and (max-width: 678px) {
    #cookieWrapper {
        display: none;
        position: fixed;
        background-color: white;
        padding: 2rem;
        border-radius: 5px;
        z-index: 1000;
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        transform: translate(5%, 50%);
        width: 90%;
        align-items: center;
        justify-content: center;
    }
}

.top-cookie-consent-text {
    margin-top: 0rem !important;
}

.cookie-feedback {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 14px;
    transition: opacity 0.5s ease;
}
/*Success*/
.x-alert-success {
    background-color: #326211;
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #38383880;
    animation: successFade 1s;
}

#alertMessage {
    display: flex;
}

@keyframes successFade {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}
/*Danger*/
.x-alert-danger {
    background-color: #f5c6cb;
    color: #5f0b0be0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Warning*/
.x-alert-warning {
    background-color: #ffcc29;
    color: #3b331d;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Info*/
.x-alert-info {
    background-color: #baebf3;
    color: #0c5460;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Detail*/
.x-alert-detail {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Close*/
.x-alert-close {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    outline: none;
    color: #247816;
    padding: 0rem 0.7rem;
    background-color: #ffffff;
    right: 1rem;
    top: 1rem;
    font-size: 24px;
    border: none;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0.6rem;
    margin-right: 0.4rem;
    -ms-transform: translate(-50%, -50%);
    width: 38px;
    transition: 0.3s ease;
}

    .x-alert-close:hover {
        background-color: #f1f1f1f2;
        color: #22a70e;
    }

.x-alert {
    width: 500px;
    top: 9rem;
    right: 5rem;
    position: fixed;
    z-index: 3;
}

@media screen and (max-width: 675px) {
    .x-alert {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        position: fixed;
        z-index: 30;
        font-size: 14px;
        border-radius: 0 !important;
    }
}

.entry-absolute-left, .entry-absolute-right {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.entry-absolute-left {
    left: 5%; /* Sol tarafta ortalayacak ekilde pozisyon */
}

.entry-absolute-right {
    right: 5%; /* Sa tarafta ortalayacak ekilde pozisyon */
}

.fp-l-icon {
    transform: translateX(-120px);
    transition: 0.3s ease;
}

.fp-r-icon {
    transform: translateX(120px);
    transition: 0.5s ease;
}

.fullpage-link:hover .fp-l-icon {
    padding-left: 0.5rem;
    transform: translateX(20px);
}

.fullpage-link:hover .fp-r-icon {
    visibility: visible;
    padding-right: 0.5rem;
    transform: translateX(-20px);
}

.absolute-image {
    width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    background: #000000c7;
    padding: 0.5rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

/* Ana Sayfa 3 Bölümlü Layout Düzenlemeleri */
.entry-body {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.entry-wrapper {
    width: 100vw;
    display: flex;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: black;
}

.entry-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    transition: flex 0.4s ease, transform 0.4s ease;
    transform: skew(-10deg);
    transform-origin: top;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.entry-left-col {
    transform-origin: left top;
    margin-left: -40px;
    padding-left: 40px;
    z-index: 3;
    width: calc(33.333% + 40px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/bg/insaat.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-blend-mode: normal;
}

.entry-middle-col {
    z-index: 2;
    width: 33.333%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/bg/food.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-blend-mode: normal;
}

.entry-right-col {
    transform-origin: right top;
    margin-right: -60px;
    padding-right: 60px;
    z-index: 1;
    width: calc(33.333% + 60px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/bg/motors.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-blend-mode: normal;
}

.entry-col:hover {
    flex: 1.75;
    transform: skew(-10deg) scale(1.03);
    z-index: 10;
}

.fullpage-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfdede;
    text-decoration: none;
    flex-direction: column;
    transition: color 0.3s ease;
    transform: skew(10deg);
}

.fullpage-link:hover {
    color: #fff;
}

.fullpage-inside {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(2px);
    border-radius: 5px;
    transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
    .fullpage-inside .text-end {
        text-align: center !important;
    }
}

.inside-reverse {
    align-items: center;
}

.fullpage-link:hover .fullpage-inside {
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.5);
}

.absolute-image {
    width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 1rem;
}

.entry-col:hover .absolute-image {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.6);
}

.fp-link-header {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px black;
    transition: all 0.3s ease;
    text-align: center;
    margin: 1rem 0;
}

.i-header {
    color: #E8AA55;
}

.m-header {
    color: #f21010;
}

.f-header {
    color: #E63946;
}

.i-image {
    border: 2px solid #E8AA55;
    box-shadow: 0px 0px 10px 2px rgba(232, 170, 85, 0.5);
}

.m-image {
    border: 2px solid #dc1414;
    box-shadow: 0px 0px 10px 2px rgba(220, 20, 20, 0.5);
}

.f-image {
    border: 2px solid #E63946;
    box-shadow: 0px 0px 10px 2px rgba(230, 57, 70, 0.5);
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 991px) {
    .entry-col {
        transform: skew(0);
    }
    
    .entry-col:hover {
        transform: skew(0) scale(1.02);
    }
    
    .fullpage-link {
        transform: skew(0);
    }
    
    .entry-left-col, .entry-right-col {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 33.333%;
    }
}

@media screen and (max-width: 768px) {
    .entry-wrapper {
        flex-direction: column;
    }
    
    .entry-left-col, .entry-middle-col, .entry-right-col {
        height: 33.333%;
        width: 100% !important;
        transform: skew(0);
        margin: 0;
        padding: 0;
    }
    
    .entry-col:hover {
        flex: initial;
        height: 35%;
        transform: skew(0) scale(1.05);
    }
    
    .absolute-image {
        width: 120px;
        margin-bottom: 0.5rem;
    }
    
    .fp-link-header {
        font-size: 2rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .fullpage-inside {
        padding: 1rem;
    }
    
    .fullpage-link {
        transform: skew(0);
    }
}

@media screen and (max-width: 465px) {
    .absolute-image {
        width: 80px;
    }
    
    .fp-link-header {
        font-size: 1.5rem;
    }
    
    .fullpage-inside {
        padding: 0.5rem;
    }
}