/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;900&family=Libre+Baskerville:wght@400;600;900&family=Caveat:wght@400;600;900&display=swap');

/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

/* SwiperJS */
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* Root */
:root {
    /* Colors */
    --color-primary: rgb(190, 226, 231);
    --color-secondary: rgb(165, 196, 199);
    
    --color-glow: rgb(5, 61, 118, 0.12);
    --color-glow-2: rgb(5, 61, 118, 0.3);
    
    /* Black mode */
    /*
    --color-background: rgb(8, 8, 8);
    --color-border: rgb(247, 247, 248, 0.15);
    --color-btn-dark: rgb(15, 15, 15);
    --color-btn-light: rgb(18, 20, 25);
    */

    /* Dark mode */
    --color-background: rgb(11, 13, 14);
    --color-border: rgb(56, 56, 56);
    --color-btn-dark: rgb(24, 25, 26);
    --color-btn-light: rgb(56, 56, 56);

    --color-text-extra-dark: rgb(97, 101, 107);
    --color-text-dark: rgb(140, 141, 143);
    --color-text-hover: rgb(203, 203, 204);
    --color-text-light: rgb(252, 252, 252);

    --color-linear-1: linear-gradient(90deg, var(--color-text-light) 0%, var(--color-btn-dark) 100%);
    --color-linear-2: linear-gradient(90deg, var(--color-background) 0%, var(--color-btn-dark) 100%);
    /* Other colors */
    --color-normal: rgb(173, 173, 173);
    --color-success: rgb(26, 136, 66);
    --color-success-light: rgb(32, 173, 84, 0.12);
    --color-warning: rgb(231, 187, 64);
    --color-warning-light: rgb(231, 187, 64, 0.12);
    --color-error: rgb(255, 77, 77);
    --color-error-light: rgb(255, 77, 77, 0.10);
    /* Font weights */
    --font-weight-normal: 400;
    --font-weight-bold: 600;
    --font-weight-black: 900;
    /* Font family */
    --font-family-1: 'Roboto', sans-serif;
    --font-family-2: 'Caveat', cursive;
    /* Header */
    --height-header: 10rem;
    /* Container */
    --width-container: 700px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 0px;
}
::-webkit-scrollbar-track {
    background: var(--color-background);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

/* General Styles */
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    scroll-padding-top: var(--height-header);
    /* scroll-behavior: smooth; */
    /* scrollbar-color: var(--color-text-extra-dark) var(--color-btn-light); */
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

img,
svg {
    user-select: none;
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    font-family: var(--font-family-1);
    font-weight: var(--font-weight-normal);
    font-size: 10px;
    user-select: none;
}

body {
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* Utilities */
.back-title {
    position: absolute;
    font-size: 15rem;
    color: transparent;
    -webkit-text-stroke: 2px transparent;
    background: linear-gradient(0deg, var(--color-background) 16%, var(--color-secondary) 50%, var(--color-background) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-background);
    text-shadow: none;
    text-transform: uppercase;
    opacity: 0.25;
    white-space: nowrap; /* Hücre içindeki metin daima tek satırda kalır, genişliği yetmezse taşar. */
    max-width: 100%; /* mobile overflow prevention */
    overflow: hidden; /* mobile overflow prevention */
    user-select: none;
}
.back-title.dark {
    background: linear-gradient(0deg, var(--color-btn-dark) 16%, var(--color-secondary) 50%, var(--color-btn-dark) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-btn-dark);
}
.back-title.light {
    background: linear-gradient(0deg, var(--color-btn-light) 16%, var(--color-secondary) 50%, var(--color-btn-light) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-btn-light);
}
.front-title {
    z-index: 1;
    text-align: center;
}
.sub-title {
    z-index: 1;
    text-align: center;
}

.vip-shine {
    background-position: 0;
    background: linear-gradient(to right, var(--color-text-dark) 0, var(--color-text-light) 10%, var(--color-text-dark) 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: shine 600s infinite linear;
    animation-fill-mode: forwards;
}

/* BLUR Backdrop Blue - Closed (Default) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 98;
}
/* Backdrop Blue - Open */
body.backdrop-blur::before {
    opacity: 1;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-2);
    font-weight: var(--font-weight-bold);
    font-size: 8rem;
    line-height: 1;
    color: var(--color-text-hover);
}

.title-h1,
.title-h2,
.title-h3,
.title-h4,
.title-h5,
.title-h6 {
    font-family: var(--font-family-2);
    font-weight: var(--font-weight-bold);
    font-size: 8rem;
    line-height: 1;
}

h2,
.title-h2 {
    font-size: 7rem;
    line-height: 1;
}
h3,
.title-h3 {
    font-size: 6rem;
    line-height: 1.5;
}
h4,
.title-h4 {
    font-size: 3.2rem;
    line-height: 1.5;
}
h5,
.title-h5 {
    font-size: 3.2rem;
    line-height: 1.5;
}
h6,
.title-h6 {
    font-size: 2.4rem;
    line-height: 1.5;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.title-h1 span,
.title-h2 span,
.title-h3 span,
.title-h4 span,
.title-h5 span,
.title-h6 span {
    color: var(--color-primary);
    text-shadow: 0 0 1rem var(--color-primary);
}

p,
a,
ul,
ol,
li,
label,
input,
textarea,
select,
option,
button,
.btn {
    color: var(--color-text-hover);
    font-family: var(--font-family-1);
    font-weight: var(--font-weight-normal);
    font-size: 1.6rem;
    line-height: 1.5;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Buttons */
/* General button */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    width: auto;
    border: none;
    outline: none;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
    white-space: nowrap;
    overflow: hidden;
}
/* Small button */
.btn-s {
    padding: 0.7rem 1.4rem;
    font-size: 1.3rem;
    border-radius: 6px;
}
/* Primary button */
.btn-primary {
    background-color: var(--color-btn-dark);
    border: 1px solid var(--color-btn-light);
    color: var(--color-text-hover);
}
.btn-primary:hover {
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-light);
}

/* Icons */
/* Btn icons*/
.btn-icon {
    font-size: 1.4rem;
    margin-left: 1rem;
    margin-top: 0.2rem;
}
.btn-icon-left {
    font-size: 1.4rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}
.btn-s-icon {
    font-size: 1.1rem;
    margin-left: 0.6rem;
    margin-top: 0.2rem;
}
.btn-s-icon-left {
    font-size: 1.1rem;
    margin-right: 0.6rem;
    margin-top: 0.2rem;
}

/* Header icons */
header .navlink-icon {
    font-size: 1.4rem;
}
.navbar a.active .navlink-icon {
    filter: brightness(1.2);
}



/* Observer Animation CSS */
.observer {
    opacity: 0;
    transform: translateY(0rem);
    transition: transform 1s ease, opacity 1s ease !important;
}
.observer-top {
    opacity: 0;
    transform: translateY(-0.5em);
    transition: transform 1s ease, opacity 1s ease !important;
}
.observer-bottom {
    opacity: 0;
    transform: translateY(0.5em);
    transition: transform 1s ease, opacity 1s ease !important;
}
.observer.animate,
.observer-top.animate,
.observer-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Containers */
.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.no-scroll {
    overflow: hidden;
}

.bg-lines {
    position: relative;
    background-size: 6rem 6rem;
    background-position: center;
    background-image:
    linear-gradient(to right, rgb(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255, 255, 255, 0.04) 1px, transparent 1px);
}
.bg-lines::before {
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--color-background) 0%, rgba(255, 255, 255, 0) 100%);
    content: '';
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(9, 12, 17, 1) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: cover, 6rem 6rem, 6rem 6rem;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -999;
    pointer-events: none;
}

.bg-color {
    background-color: var(--color-background);
}
.bg-color.dark {
    background-color: var(--color-btn-dark);
}
.bg-color.light {
    background-color: var(--color-btn-light);
}

.line-1 {
    height: 0.1rem;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--color-btn-light) 10%, var(--color-btn-light) 90%, transparent 100%);
}
.line-2 {
    height: 0.1rem;
    width: 50rem;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 10%, var(--color-primary) 90%, transparent 100%);
}

.scroll-snap {
    scroll-snap-type: y mandatory;
}
.scroll-snap-section {
    scroll-snap-align: start;
}

.padding-5 {
    padding: 5rem 0;
    width: 100%;
}
.padding-10 {
    padding: 10rem 0;
    width: 100%;
}
.padding-15 {
    padding: 15rem 0;
    width: 100%;
}
.padding-20 {
    padding: 20rem 0;
    width: 100%;
}

.padding-top-5 {
    padding-top: 5rem;
    width: 100%;
}
.padding-top-10 {
    padding-top: 10rem;
    width: 100%;
}
.padding-top-15 {
    padding-top: 15rem;
    width: 100%;
}

.padding-bottom-5 {
    padding-bottom: 5rem;
    width: 100%;
}
.padding-bottom-10 {
    padding-bottom: 10rem;
    width: 100%;
}
.padding-bottom-15 {
    padding-bottom: 15rem;
    width: 100%;
}

/*  851px-1068px - Laptop */
@media screen and (min-width: 851px) and (max-width: 1068px) {

}

/*  601px-850px - Tablet */
@media screen and (min-width: 601px) and (max-width: 850px) {
    :root {
        /* As seen on Slider */
        --as-seen-on-slide-width: 12.5rem;
        /* Careers Slider */
        --careers-slide-width: 7.2rem;
    }

    h1,
    .title-h1 {
        font-size: 4.2rem;
    }
    h2,
    .title-h2 {
        font-size: 4.2rem;
    }
    h3,
    .title-h3 {
        font-size: 3.2rem;
    }
    h4,
    .title-h4 {
        font-size: 3.2rem;
    }
    h5,
    .title-h5 {
        font-size: 3.2rem;
    }
    h6,
    .title-h6 {
        font-size: 2.4rem;
    }

    h1 span,
    h2 span,
    h3 span,
    h4 span,
    h5 span,
    h6 span,
    .title-h1 span,
    .title-h2 span,
    .title-h3 span,
    .title-h4 span,
    .title-h5 span,
    .title-h6 span {
        /* text-shadow: 0 0 1.5rem var(--color-primary); */
    }

    /* Icons */
    /* Home icons */
    .services-icon {
        font-size: 1.3rem;
    }

    /* Utilities */
    .padding-5 {
        padding: 4rem 0;
    }
    .padding-10 {
        padding: 8rem 0;
    }
    .padding-15 {
        padding: 12rem 0;
    }
    .padding-20 {
        padding: 16rem 0;
    }

    .padding-top-5 {
        padding-top: 4rem;
    }
    .padding-top-10 {
        padding-top: 8rem;
    }
    .padding-top-15 {
        padding-top: 12rem;
    }

    .padding-bottom-5 {
        padding-bottom: 4rem;
    }
    .padding-bottom-10 {
        padding-bottom: 8rem;
    }
    .padding-bottom-15 {
        padding-bottom: 12rem;
    }
    
    .back-title {
        font-size: 12rem;
    }
}

/*  600px and Lower - Mobile */
@media screen and (max-width: 600px) {
    :root {
        /* As seen on Slider */
        --as-seen-on-slide-width: 10rem;
        /* Careers Slider */
        --careers-slide-width: 6.4rem;
    }

    h1,
    .title-h1 {
        font-size: 3.2rem;
    }
    h2,
    .title-h2 {
        font-size: 3.2rem;
    }
    h3,
    .title-h3 {
        font-size: 3.2rem;
    }
    h4,
    .title-h4 {
        font-size: 3.2rem;
    }
    h5,
    .title-h5 {
        font-size: 3.2rem;
    }
    h6,
    .title-h6 {
        font-size: 2.4rem;
    }

    h1 span,
    h2 span,
    h3 span,
    h4 span,
    h5 span,
    h6 span,
    .title-h1 span,
    .title-h2 span,
    .title-h3 span,
    .title-h4 span,
    .title-h5 span,
    .title-h6 span {
        /* text-shadow: 0 0 1rem 0 var(--color-primary); */
    }

    p,
    a,
    ul,
    ol,
    li,
    label,
    input,
    textarea,
    select,
    option,
    button,
    .btn {
        font-size: 1.4rem;
    }

    /* Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
    }
    /* Footer button */
    .footer .btn-footer-contact {
        width: 100%;
    }
    /* Category button */
    .btn-category {
        padding: 0.5rem 1rem;
    }
    /* Pagination button */
    .btn-page {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
        border-radius: 6px;
    }

    /* Icons */
    /* Home icons */
    .services-icon {
        font-size: 1.3rem;
    }
    /* Careers icons */
    .careers-about-icon {
        font-size: 2.4rem;
    }
    /* Pagination icons */
    .pagination .btn-s-icon {
        font-size: 1rem;
    }
    .pagination .btn-s-icon-left {
        font-size: 1rem;
    }

    /* Containers */
    .container {
        padding: 0 1.5rem;
    }

    /* Utilities */
    .padding-5 {
        padding: 2.5rem 0;
    }
    .padding-10 {
        padding: 5rem 0;
    }
    .padding-15 {
        padding: 7.5rem 0;
    }
    .padding-20 {
        padding: 10rem 0;
    }

    .padding-top-5 {
        padding-top: 2.5rem;
    }
    .padding-top-10 {
        padding-top: 5rem;
    }
    .padding-top-15 {
        padding-top: 7.5rem;
    }

    .padding-bottom-5 {
        padding-bottom: 2.5rem;
    }
    .padding-bottom-10 {
        padding-bottom: 5rem;
    }
    .padding-bottom-15 {
        padding-bottom: 7.5rem;
    }

    .back-title {
        font-size: 8rem;
        margin-top: -3rem;
    }
}