



/* Default CSS */
:root {
    --primary-color: #36578D;
    --primary-color-low: rgba(54, 87, 141, 0.5);
    --primary-color-dark: #35426F;

    --secondary-color: #2F8E2A;
    --secondary-color-low: #75BC06;
    --secondary-color-dark: #115B26;

    --tertiary-color: #6c757d;
    --tertiary-color-low: rgba(108, 117, 125, 0.5);
    --tertiary-color-dark: #545b62;

    --bg-color: #E8E8E8;
    --bg-color-low: rgba(232, 232, 232, 0.5);
    --bg-color-dark: #D8D8D8;

    --text-dark: #343a40;
    --text-dark-low: #575e65;
    --text-dark-dark: #343a40;

    --text-light: #e1e4e6;
    --text-light-low: #f8f9fa;
    --text-light-dark: #9ea1a4;

    --button-color: #007bff;
    --button-color-low: rgba(0, 123, 255, 0.5);
    --button-color-dark: #0056b3;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* reset all the default styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    min-height: 100vh;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
}




header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
}

header .navbar {
    display: flex;
    
    width: 95%;
    margin-left: 5%;
}

[data-is-scrolled = "true"] header {
    background: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header.active {
    background: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.navbar .logo {
    width: 10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: 3px;
    padding-left: 3%;
}

.navbar .logo img {
    width: 100%;
    height: auto;
    
}

.navbar .menu {
    width: 82%;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.navbar .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.navbar .menu ul li {
    margin: 0 20px;
    
}

.navbar .menu ul li a {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    mix-blend-mode: darken;
    
}



.navbar .menu ul li a.active {
    color: var(--secondary-color);
    mix-blend-mode: lighten;
}

[data-is-scrolled = "true"] .navbar .menu ul li a.active {
    color: var(--secondary-color);
}

.navbar .menu ul li a:hover {
    color: var(--secondary-color);
}


/* Header Responsive */
@media screen and (max-width: 1024px) {
    .navbar .menu {
        position: absolute;
        top: 100%;
        left: 100%;
        width: 100%;
        background: var(--bg-color);
        opacity: 0;
        transition: all 0.5s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: -1;
        user-select: none;
    }

    .navbar .menu.active {
        opacity: 1;
        z-index: 1000;
        user-select: auto;
        left: 0;
    }

    .navbar .menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        width: 100%;
        padding-left: 10%;
    }

    .navbar .menu ul li {
        margin: 10px 0;
    }


    .navbar {
        justify-content: space-between;
    }

    header .navbar {
        width: 90%;
        align-items: center;
    }

    .burger-menu {
        display: inline-block;
        width: 40px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;

        position: relative;
        top: -5px;
        padding-right: 10px;
    }

    .burger-menu .line {
        width: 30px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .navbar .logo {
        width: 12%;
    }

    .burger-menu.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    

    .burger-menu.active .line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .line:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
}


@media screen and (max-width: 768px) {
    .navbar .logo {
        width: 20%;
    }
}

@media screen and (max-width: 425px) {
    .navbar .logo {
        width:  30%;
    }
}


/* landing */

.landing .content {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    
}

.landing .content .title {
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.landing .content .desc {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.landing .content .btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.landing .content .btn:hover {
    background: var(--primary-color-dark);
    scale: 1.1;
}

.landing .image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.landing .image img {
    width: 100%;
    height: auto;
    position: relative;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 95%);
}

.landing .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--bg-color) 10%, rgba(0, 0, 0, 0) 30%);
    z-index: 1;
}

.landing .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-color) 0%, rgba(0, 0, 0, 0) 35%);
    z-index: 1;
}

/* landing responsive */

@media screen and (max-width: 1024px) {
    .landing .content {
        width: 545;
    }

    .landing .image {
        width: 50%;
    }
}

@media screen and (max-width: 850px) {
    .landing {
        flex-direction: column-reverse;
    }

    .landing .content {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }
    
    .landing .image {
        width: 90%;
        margin-left: 10%;
    }

}





/*
<footer>    
        <div class="body">
            <div class="content">
                <div class="logo">
                    <img src="/assets/image/logoQ.png" alt="logo">
                </div>
                <div class="desc">
                    <p>
                        IQM, uluslararası kalite yönetimi alanında hizmet veren bir firmadır. 
                        Müşterilerine en iyi hizmeti sunmayı hedefleyen IQM, müşteri memnuniyetini ön planda tutar.
                    </p>
                </div>
            </div>
            <div class="contact">
                <div class="content">
                    <div class="item">
                        <i class="fas fa-map-marker-alt"></i>
                        <p>
                            İstanbul, Türkiye
                        </p>
                    </div>
                    <div class="item">
                        <i class="fas fa-phone"></i>
                        <p>
                            +90 555 555 55 55
                        </p>
                    </div>
                    <div class="item">
                        <i class="fas fa-envelope"></i>
                        <p>
                            mehmetsairbusiness@gko.com
                        </p>
                    </div>
                </div>
            </div>
        </div>


        <div class="copyright">
            <img src="/assets/image/logoQ.png" alt="logo">
            <p>© 2021 IQM. Tüm hakları saklıdır.</p>
        </div>

    </footer>
*/

footer .body {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
}

footer .body .content {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer .body .content .logo {
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    top: 7px;
}

footer .body .content .logo img {
    width: 100%;
    height: auto;
}

footer .body .content .desc {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 20px;
}


footer .contact {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 12px;
}

footer .contact .icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .contact .title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .contact .title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

footer .contact .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer .contact .content .item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

footer .contact .content .item i {
    font-size: 1.5rem;
    color: var(--primary-color-dark);
    margin-right: 10px;
}

footer .contact .content .item p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
}

footer .contact .content .item p a {
    color: var(--primary-color);
}

footer .copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}



footer .copyright p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark-low);
}

footer .copyright img {
    position: absolute;
    right: 20px;
    width:500px;
    height: auto;
}

/* footer responsive */

@media screen and (max-width: 1024px) {
    footer .body {
        flex-direction: column;
    }

    footer .body .content {
        width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
        
    }

    footer .body .content .desc {
        display: none;
    }

    footer .body .content .logo {
        width: 15%;
    }

    footer .body .contact {
        width: 100%;
    }

    footer .body .contact .icons {
        width: 100%;
    }

    footer .body .contact .content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    footer .body .contact .content .item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    footer .copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .copyright p {
        font-size: 1rem;
    }

    footer .copyright img {
        position: unset;
        width: 90%;
    }
}
*/


/* kvkk gibi metinler için */
.context-sec {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.context-sec .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.context-sec .content .title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.context-sec .content .desc {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.context-sec .content .desc span.dark {
    color: var(--text-dark-dark);
}

.context-sec .content .desc span.medium {
    color: var(--text-dark);
}
