/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



/* Default CSS */
:root {
    --primary-color: #343a40;
    --primary-color-low: #898989;
    --primary-color-dark: #000000;
    --secondary-color: #c27a33;
    --secondary-color-light: #ad69259c;
    --secondary-color-low: #ecb32c;
    --secondary-color-dark: #9b5e21;
    --bg-color: #e9e9e9;
    --bg-color-low: rgba(232, 232, 232, 0.5);
    --bg-color-dark: #d3cfcf;
    --text-dark: #31353a;
    --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;
}


header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    transition: all 0.5s ease;
    padding-top: 20px;
}



    header .navbar {
        width: 90%;
        height: 70px;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        transition: all 0.5s ease;
        border-radius: 5px;
    }

[data-is-scrolled="true"] header .navbar {
    background-color: #ffffff;
    border-radius: 15px;
    width: 65%;
    transform: translateY(10px);
    padding: 0;
}

[data-mega-active="true"] header .navbar {
    background-color: #ffffff;
    border-radius: 15px;
    width: 65%;
    transform: translateY(10px);
    padding: 0;
}

[data-is-home="false"] header .navbar {
    background-color: #ffffff;
    border-radius: 15px;
    width: 65%;
    transform: translateY(10px);
    padding: 0;
}

header .navbar .logo {
    width: 15%;
    position: relative;
    transition: all 0.5s ease;
}

[data-is-scrolled="true"] header .navbar .logo {
    width: 20%;
    transform: translateY(7px);
}

[data-is-home="false"] header .navbar .logo {
    width: 20%;
    transform: translateY(7px);
}

[data-mega-active="true"] header .navbar .logo {
    width: 20%;
    transform: translateY(7px);
}


header .navbar .logo img {
    width: 100%;
    height: auto;
    /* image shadow */
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

[data-is-scrolled="true"] header .navbar .logo img {
    filter: none;
}


[data-is-home="false"] header .navbar .logo img {
    filter: none;
}

[data-mega-active="true"] header .navbar .logo img {
    filter: none;
}


header .navbar .menu {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    header .navbar .menu ul.nav-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        header .navbar .menu ul.nav-menu li {
            margin: 0 25px;
            transition: all 0.5s ease;
        }

    header .navbar .menu ul li a {
        color: var(--text-dark);
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 2px;
        background-blend-mode: difference;
        transition: all 0.5s ease;
        cursor: pointer;
    }

[data-is-scrolled="true"] header .navbar .menu ul.nav-menu li {
    margin: 0 15px;
}

[data-mega-active="true"] header .navbar .menu ul.nav-menu li {
    margin: 0 15px;
}

[data-is-home="false"] header .navbar .menu ul.nav-menu li {
    margin: 0 15px;
}


[data-is-scrolled="true"] header .navbar .menu ul.nav-menu li a {
    letter-spacing: 1px;
}

[data-mega-active="true"] header .navbar .menu ul.nav-menu li a {
    letter-spacing: 1px;
}

[data-is-home="false"] header .navbar .menu ul.nav-menu li a {
    letter-spacing: 1px;
}


.navbar .burger {
    width: 38px;
    height: 40px;
    position: relative;
    margin-right: 20px;
    display: none;
}

    .navbar .burger .line {
        width: 100%;
        height: 3px;
        background-color: var(--text-dark-low);
        margin: 8px 0;
        border-radius: 5px;
        transition: all 0.5s ease;
    }

header .navbar .mobile-menu-cont .mobile-menu {
    display: none;
}

header .navbar .mobile-close {
    display: none;
}



/* Header Responsive */

@media screen and (max-width: 1400px) {
    header .navbar {
        width: 90% !important;
    }

        header .navbar .logo {
            width: 20% !important;
        }
}

@media screen and (max-width: 1200px) {
    header .navbar .menu ul.nav-menu li {
        margin: 0 10px !important;
    }
}

@media screen and (max-width: 1024px) {
    header .navbar {
        background-color: #ffffff;
        border-radius: 15px;
        transform: translateY(10px);
        padding: 0 !important;
    }

        header .navbar .burger {
            display: block;
        }

        header .navbar .logo {
            width: 30% !important;
            transform: translateY(7px);
        }

        header .navbar .menu {
            position: absolute;
            top: -42%;
            right: -100%;
            width: 40%;
            height: 100vh;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            padding-left: 20px;
            transition: all 0.5s ease;
            opacity: 0;
        }

            header .navbar .menu.active {
                right: -6%;
                opacity: 1;
            }

        header .navbar .mobile-close {
            display: block;
            position: absolute;
            top: 24px;
            right: 34px;
            color: var(--text-dark);
        }

            header .navbar .mobile-close i {
                font-size: 2rem;
                font-weight: 600;
            }

        header .navbar .menu ul.nav-menu {
            flex-direction: column;
            justify-content: start;
            align-items: start;
            width: 100%;
            padding-top: 70px;
        }

            header .navbar .menu ul.nav-menu li {
                margin: 10px 0 !important;
                width: 90%;
            }

                header .navbar .menu ul.nav-menu li a {
                    font-size: 1.1rem;
                    letter-spacing: 3px !important;
                }

        header .navbar .nav-menu .mega-menu-cont .mega-menu {
            display: none !important;
        }

        header .navbar .nav-menu .mini-menu-cont .mini-menu {
            display: none !important;
        }

        header .navbar .mobile-menu-cont .mega-menu-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

            header .navbar .mobile-menu-cont .mega-menu-btn::after {
                content: '\f107';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                font-size: 1.1rem;
                color: var(--text-dark);
                rotate: -90deg;
            }

        header .navbar .mobile-menu-cont .mobile-menu {
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            width: 100%;
            padding: 20px;
            border-radius: 15px;
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #ffffff;
            z-index: 1000;
            transition: all 0.5s ease;
            opacity: 0;
            height: 100vh;
        }

            header .navbar .mobile-menu-cont .mobile-menu.active {
                left: 0;
                opacity: 1;
            }

            header .navbar .mobile-menu-cont .mobile-menu .list {
                position: relative;
                width: 100%;
                padding-top: 70px;
                z-index: 100;
                height: 90%;
            }

                header .navbar .mobile-menu-cont .mobile-menu .list ul {
                    height: 100%;
                    overflow-y: auto;
                    overflow-x: hidden;
                    padding-bottom: 80px;
                }

            header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-back {
                display: block;
                position: absolute;
                top: 10px;
                right: 50px;
                padding: 0;
                color: var(--text-dark);
                width: max-content;
            }

            header .navbar .mobile-menu-cont .mobile-menu ul {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: start;
                width: 100%;
            }

                header .navbar .mobile-menu-cont .mobile-menu ul .menu-name {
                    display: block;
                    position: absolute;
                    top: 20px;
                    left: 0px;
                    padding: 0;
                    color: var(--text-dark);
                    width: max-content;
                    font-size: 1.5rem;
                    font-weight: 600;
                }

                header .navbar .mobile-menu-cont .mobile-menu ul li {
                    width: 100%;
                }

                    header .navbar .mobile-menu-cont .mobile-menu ul li a {
                        position: relative;
                        width: 100%;
                        overflow: hidden;
                        padding: 15px 0;
                        padding-left: 20px;
                        font-size: 2rem !important;
                        letter-spacing: 3px !important;
                        font-weight: 600;
                        color: rgba(255, 255, 255, 0.8);
                        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                        display: flex;
                    }

                        header .navbar .mobile-menu-cont .mobile-menu ul li a .image {
                            width: 100%;
                            height: 100%;
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 1;
                        }

                        header .navbar .mobile-menu-cont .mobile-menu ul li a span {
                            z-index: 2;
                        }

                        header .navbar .mobile-menu-cont .mobile-menu ul li a .image img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 10px;
                            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
                            filter: brightness(0.7);
                        }

            header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub {
                position: absolute;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100%;
                background-color: #ffffff;
                border-radius: 15px;
                z-index: 150;
                transition: all 0.5s ease;
                padding-left: 20px;
                opacity: 0;
            }

                header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub.active {
                    right: 0;
                    opacity: 1;
                }


                header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: start;
                    align-items: start;
                    width: 100%;
                    position: relative;
                    padding-top: 70px;
                }

                header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub .menu-name {
                    display: block;
                    position: absolute;
                    top: 20px;
                    left: 0px;
                    padding: 0;
                    color: var(--text-dark);
                    width: max-content;
                    font-size: 1.5rem;
                    font-weight: 600;
                }

                header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li {
                    width: 100%;
                }

                    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li a {
                        position: relative;
                        width: 100%;
                        overflow: hidden;
                        padding: 15px 0;
                        padding-left: 20px;
                        font-size: 2rem;
                        letter-spacing: 3px;
                        font-weight: 600;
                        color: rgba(255, 255, 255, 0.8);
                        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                        display: flex;
                    }

                        header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li a .image {
                            width: 100%;
                            height: 100%;
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 1;
                        }

                        header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li a span {
                            z-index: 2;
                        }
}

@media screen and (max-width: 768px) {



    header .navbar .logo {
        width: 35% !important;
    }

    header .navbar .menu {
        width: 55%;
    }
}

@media screen and (max-width: 600px) {

    header {
        padding-top: 5px;
    }

        header .navbar {
            width: 94% !important;
        }

            header .navbar .logo {
                width: 45% !important;
            }

            header .navbar .menu {
                width: 70%;
            }
}

/* navbar mega menu */

.navbar .mega-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 460px;
    opacity: 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow-y: hidden;
    transition: all 0.5s ease;
}


    .navbar .mega-menu .content-area {
        width: 90%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        position: relative;
    }

    .navbar .mega-menu .image {
        width: 30%;
        height: 100%;
        position: relative;
    }

        .navbar .mega-menu .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px 0 0 10px;
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
        }

    .navbar .mega-menu .list {
        width: 90%;
        height: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        position: relative;
    }

        .navbar .mega-menu .list ul {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 20px;
            position: relative;
        }

            .navbar .mega-menu .list ul li {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 10px;
                border-radius: 5px;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
                width: 180px;
                height: 80px;
                margin: 0 !important;
                opacity: 1;
                position: relative;
                cursor: pointer;
            }

                .navbar .mega-menu .list ul li:hover {
                    color: var(--text-light);
                    transform: scale(1.05) translateY(-5px);
                    background-color: var(--secondary-color);
                }

                .navbar .mega-menu .list ul li .image {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    z-index: -1;
                }

                    .navbar .mega-menu .list ul li .image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 5px;
                        mask-image: unset !important;
                        filter: brightness(0.7);
                    }

                .navbar .mega-menu .list ul li h2,
                .navbar .mega-menu .list ul li a {
                    font-size: 1.3rem;
                    font-weight: 600;
                    color: rgba(255, 255, 255, 0.8);
                    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                    text-align: center;
                }


            .navbar .mega-menu .list ul .menu-part {
                position: absolute;
                top: 0;
                left: 0;
                box-shadow: 0;
                opacity: 0;
                z-index: 0;
                width: 100%;
            }

        .navbar .mega-menu .list.main {
            opacity: 0;
            z-index: -1;
        }

            .navbar .mega-menu .list.main.active {
                opacity: 1;
                z-index: 1;
            }



        .navbar .mega-menu .list ul .menu-part.active {
            opacity: 1;
            z-index: 1;
        }


        .navbar .mega-menu .list ul .menu-part ul li {
            box-shadow: unset;
        }

    .navbar .mega-menu .content-area .button-area {
        position: absolute;
        bottom: 0;
        right: -2%;
        width: 98%;
        display: flex;
        justify-content: end;
        align-items: center;
        margin-bottom: 5px;
    }

        .navbar .mega-menu .content-area .button-area a {
            padding: 3px 12px;
            border-radius: 5px;
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.5s ease;
            margin-right: 10px;
        }


    .navbar .mega-menu .sub-menu-area {
        position: absolute;
        top: 0;
        left: 10;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
    }

        .navbar .mega-menu .sub-menu-area.active {
            z-index: 1000;
            opacity: 1;
        }

        .navbar .mega-menu .sub-menu-area .list {
            position: absolute;
        }


        .navbar .mega-menu .sub-menu-area .button-area {
            margin-bottom: 46px;
        }

        .navbar .mega-menu .sub-menu-area .list.sub {
            opacity: 0;
            z-index: -1;
        }

            .navbar .mega-menu .sub-menu-area .list.sub.active {
                opacity: 1;
                z-index: 1;
            }


.navbar .mini-menu {
    transition: all 0.5s ease;
}

    .navbar .mini-menu .mini-menu-content {
        position: absolute;
        top: 120%;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 45vh;
        opacity: 0;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.5s ease;
        display: none;
    }

        .navbar .mini-menu .mini-menu-content.active {
            opacity: 1;
            display: flex;
            transition: all 0.5s ease;
        }

        .navbar .mini-menu .mini-menu-content .image {
            width: 30%;
            height: 100%;
            position: relative;
        }

            .navbar .mini-menu .mini-menu-content .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px 0 0 10px;
                mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
            }

        .navbar .mini-menu .mini-menu-content ul {
            width: 70%;
            height: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            position: relative;
        }

            .navbar .mini-menu .mini-menu-content ul li {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 10px;
                border-radius: 5px;
                width: 90%;
                margin: 5px 0 !important;
                opacity: 1;
                position: relative;
                cursor: pointer;
            }

                .navbar .mini-menu .mini-menu-content ul li:hover {
                    color: var(--text-light);
                    transform: scale(1.05) translateY(-5px);
                    background-color: rgba(0, 0, 0, 0.1);
                }







.landing-sec {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}


    .landing-sec .bg {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

        .landing-sec .bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .landing-sec .bg::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-color) 100%);
            z-index: 1;
        }

    .landing-sec .content {
        width: 50%;
        margin-left: 10%;
        margin-top: 20%;
        position: relative;
    }

        .landing-sec .content .slogan {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 20px;
            background: rgba(0, 0, 0, 0.8);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

/* landing-sec responsive */

@media screen and (max-width: 1024px) {
    .landing-sec .content {
        width: 80%;
        margin-left: 5%;
    }

        .landing-sec .content .slogan {
            font-size: 2.3rem;
        }
}




.about-sec {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

    .about-sec .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 0 100px;
    }

        .about-sec .content .about-content {
            width: 80%;
            padding: 0 50px;
            text-align: center;
        }

            .about-sec .content .about-content p {
                font-size: 1.2rem;
                font-weight: 400;
                color: var(--text-dark);
                margin-bottom: 20px;
            }

.about.reversed .right .content .btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.5s ease;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
}

    .about.reversed .right .content .btn:hover {
        background-color: var(--primary-color-low);
        transform: translateY(-5px) scale(1.05);
    }

.about-sec .content .parallax {
    width: 70%;
    position: relative;
    overflow: hidden;
}

    .about-sec .content .parallax img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 20px;
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
    }

/* about-sec responsive */

@media screen and (max-width: 1024px) {
    .about-sec .content .about-content {
        width: 100%;
    }

    .about-sec .content .parallax {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .about-sec .content {
        padding: 0 30px;
    }
}

@media screen and (max-width: 550px) {
    .about-sec .content .about-content p {
        font-size: 1rem;
    }
}


.slider-sec {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin-top: -5%;
    position: relative;
    overflow-y: hidden;
}

    .slider-sec .flickity-viewport {
        overflow: visible;
    }

    .slider-sec .slider .slide {
        width: 50%;
        height: 500px;
        margin: 0 15px;
        border-radius: 15px;
        overflow: visible;
    }

        .slider-sec .slider .slide .title {
            position: absolute;
            bottom: 5%;
            left: 5%;
            font-size: 3rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            z-index: 1;
            transition: all 1s ease;
            opacity: 0;
            white-space: nowrap;
            transform: translate(50%, 0%);
        }

        .slider-sec .slider .slide.is-selected .title {
            transform: translate(0%, 0%);
            opacity: 1;
        }

        .slider-sec .slider .slide .image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            z-index: -1;
        }

            .slider-sec .slider .slide .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 15px;
            }


/* slider-sec responsive */

@media screen and (max-width: 1200px) {
    .slider-sec .slider .slide .title {
        font-size: 2.5rem;
    }

    .slider-sec .slider .slide {
        height: 450px;
        width: 60%;
        margin: 0 10px;
    }
}

@media screen and (max-width: 1024px) {
    .slider-sec .slider .slide .title {
        font-size: 2rem;
    }

    .slider-sec .slider .slide {
        height: 400px;
        width: 70%;
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .slider-sec .slider .slide .title {
        font-size: 1.4rem;
    }

    .slider-sec .slider .slide {
        height: 300px;
        width: 80%;
        margin: 0 5px;
    }
}


.flickity-page-dots {
    bottom: 10px;
}

    .flickity-page-dots .dot {
        width: 20px;
        height: 6px;
        border-radius: 2px;
        background: var(--bg-color);
        opacity: 0.7;
        transition: all 0.5s ease;
    }

        .flickity-page-dots .dot.is-selected {
            background: var(--secondary-color);
            width: 30px;
            transform: scale(1.2);
        }

/* responsive */

@media screen and (max-width: 768px) {
    .flickity-page-dots .dot {
        width: 15px;
        height: 4px;
    }

        .flickity-page-dots .dot.is-selected {
            width: 20px;
        }
}

@media screen and (max-width: 550px) {
    .flickity-page-dots .dot {
        width: 10px;
        height: 3px;
    }

        .flickity-page-dots .dot.is-selected {
            width: 15px;
        }
}


.category-sec {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
}

    .category-sec .sec-title {
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 20px;
        text-align: center;
        position: absolute;
        top: -12%;
        left: 5%;
    }

    .category-sec .btn {
        position: absolute;
        bottom: 25%;
        right: 5%;
        background-color: var(--secondary-color);
        color: var(--text-light);
        padding: 15px 40px;
        border-radius: 5px;
        font-size: 1.2rem;
        font-weight: 500;
        transition: all 0.5s ease;
    }

        .category-sec .btn i {
            transition: all 0.5s ease;
            position: relative;
            top: 1px;
            font-size: 1.2rem;
        }

        .category-sec .btn:hover {
            background-color: var(--secondary-color-low);
        }

            .category-sec .btn:hover i {
                transform: translateX(5px);
            }



    .category-sec .cards {
        width: 100%;
        margin-top: 0%;
        overflow-x: hidden;
        position: relative;
        height: 100vh;
        overflow-x: hidden;
    }

        .category-sec .cards .card {
            border-radius: 20px;
            overflow: hidden;
            position: absolute;
            top: -100%;
            left: 0;
            width: 500px;
            height: 300px;
        }

            .category-sec .cards .card:first-child {
                top: 0%;
                left: 5%;
                width: 30%;
            }

            .category-sec .cards .card:nth-child(2) {
                top: 0%;
                left: 36%;
                width: 40%;
            }

            .category-sec .cards .card:nth-child(3) {
                top: 0%;
                left: 77%;
                width: 20%;
                height: 628px;
            }


            .category-sec .cards .card:nth-child(4) {
                top: 35%;
                left: 5%;
                width: 40%;
            }

            .category-sec .cards .card:nth-child(5) {
                top: 35%;
                left: 46%;
                width: 30%;
            }


            .category-sec .cards .card .title {
                position: absolute;
                z-index: 1000;
                bottom: 10px;
                left: 15px;
                font-size: 3rem;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.8);
                text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            }


            .category-sec .cards .card .card-btn {
                position: absolute;
                bottom: 20px;
                right: 0;
                transform: translateX(-50%);
                background-color: var(--secondary-color-dark);
                color: var(--text-light);
                padding: 15px 20px;
                border-radius: 5px;
                font-size: 1.2rem;
                font-weight: 500;
                transition: all 0.5s ease;
            }


                .category-sec .cards .card .card-btn i {
                    transition: all 0.5s ease;
                }

            .category-sec .cards .card:hover .card-btn {
                background-color: var(--secondary-color);
            }

                .category-sec .cards .card:hover .card-btn:hover {
                    background-color: var(--secondary-color-low);
                }

                    .category-sec .cards .card:hover .card-btn:hover i {
                        transform: translateX(5px);
                    }

            .category-sec .cards .card .image {
                width: 100%;
                height: 100%;
                position: relative;
            }

                .category-sec .cards .card .image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                    filter: brightness(0.7);
                }

/* category-sec responsive */

@media screen and (max-height: 1500px) {
    .category-sec .cards .card .title {
        font-size: 2.5rem;
    }

    .category-sec .cards .card {
        width: 400px;
        height: 250px;
    }

        .category-sec .cards .card:nth-child(3) {
            height: 520px;
        }

        .category-sec .cards .card:nth-child(4) {
            top: 37%;
        }

        .category-sec .cards .card:nth-child(5) {
            top: 37%;
        }

    .category-sec .btn {
        bottom: 20%;
        padding: 10px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1500px) {
    .category-sec .cards .card .title {
        font-size: 2.5rem;
    }

    .category-sec .cards .card {
        width: 400px;
        height: 250px;
    }

        .category-sec .cards .card:nth-child(3) {
            height: 520px;
        }

        .category-sec .cards .card:nth-child(4) {
            top: 36%;
        }

        .category-sec .cards .card:nth-child(5) {
            top: 36%;
        }

    .category-sec .btn {
        bottom: 32%;
        padding: 10px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .category-sec {
        height: 100%;
        min-height: auto;
        position: relative;
        padding-top: 4%;
        padding-bottom: 10%;
    }

        .category-sec .sec-title {
            top: -4%;
            left: 50%;
            width: 100%;
            transform: translateX(-50%);
            font-size: 2.5rem;
        }

        .category-sec .cards {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: auto;
            overflow-y: hidden;
        }

        .category-sec a.btn {
            bottom: 0;
        }

        .category-sec .cards .card {
            position: relative !important;
            top: unset !important;
            left: unset !important;
            width: 44% !important;
            margin: 10px !important;
            height: 300px !important;
        }

            .category-sec .cards .card:nth-child(3) {
                width: 90% !important;
                height: 500px !important;
            }
}

@media screen and (max-width: 768px) {
    .category-sec .sec-title {
        font-size: 2rem;
        top: -2%;
    }



    .category-sec .cards .card {
        width: 90% !important;
        margin: 10px !important;
    }

        .category-sec .cards .card:nth-child(3) {
            width: 90% !important;
            height: 300px !important;
        }
}

.referances {
    margin-top: -8%;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: auto;
    overflow: hidden;
}

    .referances .sliders {
        overflow: hidden;
    }

        .referances .sliders .referance-list {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            position: relative;
            left: 50%;
            padding: 40px 0;
            width: max-content;
        }

            .referances .sliders .referance-list:last-child {
                left: -110%;
                padding-bottom: 100px;
            }

            .referances .sliders .referance-list a {
                height: 80px;
                margin: 0 20px;
            }

                .referances .sliders .referance-list a img {
                    height: 100%;
                    object-fit: contain;
                }

            .referances .sliders .referance-list h2 {
                font-size: 2.5rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-top: 5px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }


    .referances .catalogs {
        width: 50%;
        position: absolute;
        right: 0;
    }

        .referances .catalogs .catalog:first-child {
            padding-left: 20px;
        }


        .referances .catalogs .catalog {
            width: 300px;
            margin-left: 20px;
            padding-left: 20px;
        }

    .referances .content {
        display: flex;
        flex-direction: row;
        overflow: hidden;
    }

    .referances .image {
        position: absolute;
        width: 50%;
        height: 83%;
        left: 0%;
        top: 15%;
    }

        .referances .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 20px 0 0;
        }

        .referances .image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, var(--bg-color) 95%);
            z-index: 1;
        }

    .referances .sec-title {
        display: none;
    }

/* referances responsive */

@media screen and (max-width: 1024px) {
    .referances {
        margin-top: 0%;
    }

        .referances .catalogs {
            bottom: 0px;
        }
}

@media screen and (max-width: 768px) {
    .referances .slider {
        width: 100%;
    }

    .referances .sliders .referance-list a {
        height: 60px;
        margin: 0 10px;
    }

    .referances .sliders .referance-list:last-child {
        margin-top: -50px;
    }


    .referances .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .referances .image {
        display: none;
    }

    .referances .catalogs {
        width: 100%;
        position: relative;
        margin-top: 20px;
        padding-bottom: 10px;
    }

        .referances .catalogs .catalog {
            width: 50%;
            margin-left: 7px;
        }

    .referances .sliders .referance-list a {
        height: 50px;
        margin: 0 10px;
    }

    .referances .sliders .referance-list h2 {
        font-size: 2rem;
    }

    .referances .sec-title {
        font-size: 2.5rem;
        font-weight: 600;
        top: -2%;
        display: block;
    }

    .referances .catalogs .flickity-page-dots {
        bottom: -5px;
    }

        .referances .catalogs .flickity-page-dots .dot {
            background: var(--primary-color);
            width: 10px;
            height: 5px;
        }

            .referances .catalogs .flickity-page-dots .dot.is-selected {
                background: var(--secondary-color);
            }
}





.fade-right {
    position: relative;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.5s ease;
}

.fade-left {
    position: relative;
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.5s ease;
}

.fade-down {
    position: relative;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1.5s ease;
}

.fade-up {
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.5s ease;
}

.fade-active {
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 1;
    transition: all 1.5s ease;
}


.testimonials-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    position: relative;
    overflow-x: hidden;
    height: auto;
    min-height: auto;
    margin-top: 5%;
}

    .testimonials-sec .sec-title {
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 20px;
        text-align: center;
        position: absolute;
        top: 4%;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonials-sec .flickity-viewport {
        overflow: visible !important;
    }

    .testimonials-sec .testimonials {
        width: 100%;
        overflow: visible;
        height: 45vh;
    }

        .testimonials-sec .testimonials .testimonial {
            width: 30%;
            margin: 0 20px;
            padding: 20px;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            text-align: center;
            background: #f1f1f1;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            overflow: visible;
            padding-top: 40px;
            transition: all 0.5s ease;
        }

            .testimonials-sec .testimonials .testimonial .person {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-top: 20px;
            }

                .testimonials-sec .testimonials .testimonial .person .image {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    overflow: hidden;
                }

                    .testimonials-sec .testimonials .testimonial .person .image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .testimonials-sec .testimonials .testimonial .person h3 {
                    font-size: 1.5rem;
                    font-weight: 600;
                    color: var(--text-dark);
                    margin-left: 5px;
                }

                .testimonials-sec .testimonials .testimonial .person span {
                    font-size: 1rem;
                    font-weight: 400;
                    color: var(--text-dark-low);
                }


        .testimonials-sec .testimonials .testimonial {
            rotate: 2deg;
            top: -50px;
        }

            .testimonials-sec .testimonials .testimonial.is-selected {
                rotate: 0deg !important;
                top: 0px;
            }

                /* .testimonials-sec .testimonials .testimonial.is-selected ' dan sonraki .testimonial 'ları seçmek için */
                .testimonials-sec .testimonials .testimonial.is-selected ~ .testimonial {
                    rotate: -2deg !important;
                    top: 50px;
                }

    .testimonials-sec .flickity-page-dots {
        bottom: 30px;
    }

        .testimonials-sec .flickity-page-dots .dot {
            width: 20px;
            height: 6px;
            border-radius: 2px;
            background: var(--primary-color);
            opacity: 0.7;
            transition: all 0.5s ease;
        }

            .testimonials-sec .flickity-page-dots .dot.is-selected {
                background: var(--secondary-color);
                width: 30px;
                transform: scale(1.2);
            }

/* testimonials-sec responsive */

@media screen and (max-width: 1500px) {
    .testimonials-sec .testimonials {
        height: 50vh;
        padding-top: 50px;
    }

        .testimonials-sec .testimonials .testimonial {
            width: 40%;
            height: 220px;
        }
}

@media screen and (max-width: 1200px) {
    .testimonials-sec .testimonials {
        padding-top: 60px;
    }

        .testimonials-sec .testimonials .testimonial {
            width: 50%;
            height: 220px;
        }
}

@media screen and (max-width: 1024px) {
    .testimonials-sec .sec-title {
        font-size: 3rem;
        width: 97%;
    }

    .testimonials-sec .testimonials {
        padding-top: 80px;
    }

        .testimonials-sec .testimonials .testimonial {
            width: 60%;
            height: 220px;
        }
}

@media screen and (max-width: 768px) {

    .testimonials-sec .sec-title {
        font-size: 2.4rem;
    }

    .testimonials-sec .testimonials {
        padding-top: 100px;
    }

        .testimonials-sec .testimonials .testimonial {
            width: 80%;
            height: 220px;
        }
}

@media screen and (max-width: 550px) {
    .testimonials-sec .sec-title {
        font-size: 1.8rem;
    }

    .testimonials-sec .testimonials {
        padding-top: 120px;
    }



        .testimonials-sec .testimonials .testimonial:first-child {
            margin-left: 20px !important;
        }

        .testimonials-sec .testimonials .testimonial {
            width: 90%;
            height: 240px;
            top: unset !important;
            rotate: unset !important;
            margin: 0 !important;
            margin-left: 20px !important;
        }

            .testimonials-sec .testimonials .testimonial.is-selected {
                rotate: unset !important;
                top: unset !important;
            }

                .testimonials-sec .testimonials .testimonial.is-selected ~ .testimonial {
                    rotate: unset !important;
                    top: unset !important;
                }

            .testimonials-sec .testimonials .testimonial .person .image {
                width: 35px;
                height: 35px;
            }

    .testimonials-sec .flickity-page-dots {
        bottom: 60px;
    }
}



.contact-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    position: relative;
    overflow-x: hidden;
    height: auto;
    min-height: auto;
    overflow: hidden;
}

    .contact-sec .sec-title {
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 20px;
        text-align: center;
        position: absolute;
        top: 17%;
        left: 31%;
        transform: translateX(-50%);
    }

    .contact-sec .contact {
        width: 65%;
        height: 500px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 20px;
        background-image: url("/themes/assets/img/shower.png");
        background-size: cover;
        background-position: 40%;
        border-radius: 20px;
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 10%, var(--bg-color) 18%);
    }

        .contact-sec .contact form {
            width: 60%;
            height: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            position: relative;
        }


            .contact-sec .contact form .form-group {
                width: 45%;
                margin: 0 2%;
                display: flex;
                flex-direction: column;
            }

                .contact-sec .contact form .form-group.w-100 {
                    width: 100%;
                    position: relative;
                    top: -10%;
                    left: 1%;
                }

                .contact-sec .contact form .form-group input,
                .contact-sec .contact form .form-group textarea {
                    width: 80%;
                    padding: 10px;
                    border-bottom: 1px solid var(--primary-color);
                    background-color: transparent;
                    color: var(--text-dark);
                    font-size: 1rem;
                    font-weight: 400;
                    transition: all 0.5s ease;
                }


                .contact-sec .contact form .form-group textarea {
                    height: 95px;
                    resize: none;
                }

                    .contact-sec .contact form .form-group input:focus,
                    .contact-sec .contact form .form-group textarea:focus {
                        border-bottom: 2px solid var(--secondary-color);
                    }

                .contact-sec .contact form .form-group label {
                    font-size: 0.9rem;
                    font-weight: 500;
                    color: var(--text-dark);
                    margin-bottom: -5px;
                }

                .contact-sec .contact form .form-group.bottom {
                    display: flex;
                    flex-direction: row;
                    width: 100%;
                    justify-content: space-between;
                }

                    .contact-sec .contact form .form-group.bottom .privacy {
                        display: flex;
                        flex-direction: row;
                        justify-content: start;
                        align-items: start;
                        width: 60%;
                    }

                        .contact-sec .contact form .form-group.bottom .privacy input {
                            width: 20px;
                            height: 20px;
                            margin-right: 10px;
                        }

                        .contact-sec .contact form .form-group.bottom .privacy label {
                            font-size: 1rem;
                            font-weight: 400;
                            color: var(--text-dark);
                        }

            .contact-sec .contact form button {
                position: absolute;
                right: 8%;
                bottom: 20%;
                background-color: var(--secondary-color-light);
                color: var(--text-light);
                padding: 18px 20px;
                border-radius: 5px;
                font-size: 1.2rem;
                font-weight: 500;
                transition: all 0.5s ease;
                box-shadow: inner 0 0 20px rgba(0, 0, 0, 1);
            }

                .contact-sec .contact form button i {
                    transition: all 0.5s ease;
                }

                .contact-sec .contact form button:hover {
                    background-color: var(--secondary-color-low);
                }

                    .contact-sec .contact form button:hover i {
                        transform: rotate(5deg) translateX(5px) translateY(-7px);
                    }

@media screen and (max-width: 1500px) {
    .contact-sec .sec-title {
        font-size: 2.5rem;
        top: 10%;
    }

    .contact-sec .contact {
        height: 450px;
    }

        .contact-sec .contact form .form-group input,
        .contact-sec .contact form .form-group textarea {
            font-size: 0.9rem;
        }

        .contact-sec .contact form button {
            padding: 15px 15px;
            font-size: 1rem;
        }
}

@media screen and (max-width: 1200px) {
    .contact-sec .sec-title {
        font-size: 2.5rem;
        top: 6%;
    }

    .contact-sec .contact {
        height: 450px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .contact-sec .contact form {
            width: 80%;
        }

            .contact-sec .contact form .form-group input,
            .contact-sec .contact form .form-group textarea {
                font-size: 0.9rem;
            }

            .contact-sec .contact form button {
                position: relative;
                top: -15px;
            }
}

@media screen and (max-width: 1200px) {
    .contact-sec .sec-title {
        font-size: 2.5rem;
        top: 6%;
        left: 52%;
        transform: translateX(-50%);
        width: 100%;
    }


    .contact-sec .contact {
        width: 65%;
        height: 450px;
        background-image: none;
        mask-image: none;
        box-shadow: unset;
    }

        .contact-sec .contact form {
            width: 100%;
        }

            .contact-sec .contact form .form-group {
                width: 40%;
                margin: 0 5%;
            }

                .contact-sec .contact form .form-group.w-100 {
                    width: 94%;
                    position: relative;
                    top: -6%;
                    left: 0%;
                }

                .contact-sec .contact form .form-group input,
                .contact-sec .contact form .form-group textarea {
                    width: 100%;
                    background-color: rgba(255, 255, 255, 0.8);
                    border-bottom: unset;
                    border-radius: 5px;
                    padding: 10px;
                    margin-bottom: 10px;
                }

                .contact-sec .contact form .form-group textarea {
                    height: 70px;
                }

            .contact-sec .contact form button {
                position: relative;
                right: 0;
                bottom: 0;
                width: 70px;
                padding: 15px 0;
                background-color: var(--secondary-color);
            }
}

@media screen and (max-width: 768px) {
    .contact-sec .sec-title {
        font-size: 2rem;
        top: 4%;
    }

    .contact-sec .contact {
        width: 85%;
        height: 450px;
    }

        .contact-sec .contact form {
            width: 90%;
        }

            .contact-sec .contact form .form-group input,
            .contact-sec .contact form .form-group textarea {
                font-size: 0.8rem;
            }

            .contact-sec .contact form button {
                padding: 15px 15px;
                font-size: 1rem;
            }
}

@media screen and (max-width: 550px) {
    .contact-sec .sec-title {
        font-size: 1.8rem;
        top: 2%;
    }

    .contact-sec .contact {
        height: 450px;
    }

        .contact-sec .contact form {
            width: 98%;
        }

            .contact-sec .contact form .form-group input,
            .contact-sec .contact form .form-group textarea {
                font-size: 0.7rem;
            }

            .contact-sec .contact form .form-group label {
                margin-bottom: 2px;
            }

            .contact-sec .contact form button {
                padding: 15px 15px;
                font-size: 1rem;
            }

            .contact-sec .contact form .form-group.bottom {
                flex-wrap: wrap;
            }

                .contact-sec .contact form .form-group.bottom .privacy {
                    width: 100%;
                }

                .contact-sec .contact form .form-group.bottom button {
                    width: 100%;
                    top: 0;
                    margin-top: 20px;
                }
}





footer {
    width: 100%;
    padding-top: 10%;
    overflow-x: hidden;
}

    footer .head {
        width: 100%;
        z-index: 0;
        overflow: hidden;
        position: relative;
    }

        footer .head .footer-image {
            width: 100%;
            height: 60vh;
        }



            footer .head .footer-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 7%, var(--bg-color) 30%);
            }

            footer .head .footer-image::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, var(--bg-color) 95%);
                z-index: 1;
            }

    footer .body {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 20px;
        padding-top: 50px;
        width: 80%;
        margin: 0 auto;
        margin-top: -10%;
        z-index: 100;
        position: relative;
        background-color: var(--bg-color);
        border-radius: 20px 20px 0 0;
        height: 25vh;
    }

        footer .body .content {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            height: 25%;
            margin-top: 1%;
        }

            footer .body .content .left {
                width: 25%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

                footer .body .content .left .logo {
                    width: 100%;
                    height: 100px;
                }

                    footer .body .content .left .logo img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                footer .body .content .left .info p {
                    font-size: 1.1rem;
                    font-weight: 400;
                    color: var(--text-dark);
                    margin-left: 50px;
                    position: relative;
                    top: -20px;
                    white-space: nowrap;
                }

            footer .body .content .right {
                width: 70%;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

                footer .body .content .right .contact {
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    padding: 0;
                }

                    footer .body .content .right .contact ul {
                        width: 100%;
                        display: flex;
                        flex-direction: row;
                        justify-content: space-around;
                        align-items: center;
                    }

                        footer .body .content .right .contact ul li {
                            display: flex;
                            flex-direction: row;
                            justify-content: center;
                            align-items: center;
                        }

                            footer .body .content .right .contact ul li i {
                                font-size: 1.5rem;
                                color: var(--text-dark);
                                margin-right: 10px;
                            }

                            footer .body .content .right .contact ul li p {
                                font-size: 1.1rem;
                                font-weight: 400;
                                color: var(--text-dark);
                            }


        footer .body .menu-list {
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }

            footer .body .menu-list ul {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0 20px;
            }

                footer .body .menu-list ul:nth-child(2) {
                    margin: 0 20px;
                }

                footer .body .menu-list ul li {
                    margin: 0 10px;
                }

                    footer .body .menu-list ul li a {
                        font-size: 1.1rem;
                        font-weight: 400;
                        color: var(--text-dark);
                        transition: all 0.5s ease;
                    }

                        footer .body .menu-list ul li a:hover {
                            color: var(--secondary-color);
                        }

/* footer responsive */

@media screen and (max-width: 1500px) {
    footer .body {
        padding-top: 0px;
        height: auto;
        margin-top: -10%;
    }

        footer .body .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: auto;
        }

            footer .body .content .left {
                width: 100%;
            }

                footer .body .content .left .logo {
                    width: 40%;
                    height: 80px;
                }

                footer .body .content .left .info p {
                    margin-left: 0;
                    top: 0;
                    margin-bottom: 10px;
                }

            footer .body .content .right {
                width: 100%;
                margin-top: 0px;
            }

                footer .body .content .right .contact {
                    padding-top: 5px;
                }

        footer .body .menu-list {
            align-items: start;
            justify-content: space-between;
            width: 80%;
        }

            footer .body .menu-list ul {
                flex-direction: column;
                justify-content: start;
                align-items: start;
            }

                footer .body .menu-list ul li {
                    justify-content: start;
                    align-items: start;
                }
}

@media screen and (max-width: 1090px) {

    footer .body .content .left .logo {
        width: 40%;
        height: 70px;
    }

    footer .body .content .left .info p {
        margin-left: 0;
        top: 0;
    }

    footer .body .content .right .contact {
        justify-content: center;
        align-items: center;
    }

        footer .body .content .right .contact ul {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

            footer .body .content .right .contact ul li {
                margin-bottom: 10px;
                width: 40%
            }

    footer .body .menu-list ul {
        margin-top: 20px;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 940px) {

    footer .body .content .right .contact ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        footer .body .content .right .contact ul li {
            width: 100%;
        }

    footer .body .menu-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

        footer .body .menu-list ul {
            margin-top: 0px;
            justify-content: center;
            align-items: center;
            width: 50%;
        }

            footer .body .menu-list ul li {
                text-align: center;
            }

    footer .body .content .left .logo img {
        object-fit: contain;
    }

    footer .body .content .left .logo {
        width: 200px;
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    footer .body .content .left .info p {
        font-size: 0.9rem;
    }

    footer .body .content .right .contact ul li i {
        font-size: 1.2rem;
    }

    footer .body .content .right .contact ul li p {
        font-size: 0.9rem;
    }

    footer .body .menu-list ul li a {
        font-size: 1rem;
    }
}





.breadcrumb {
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

    .breadcrumb .image {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: -1;
    }

        .breadcrumb .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .breadcrumb .image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, var(--bg-color) 95%);
            z-index: 1;
        }

    .breadcrumb .content {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        display: flex;
        width: 95%;
        flex-direction: column;
    }

        .breadcrumb .content h1 {
            font-size: 4rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
        }

/* breadcrumb responsive */

@media screen and (max-width: 1500px) {
    .breadcrumb .content h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .breadcrumb .content h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1024px) {
    .breadcrumb .content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {


    .breadcrumb .content h1 {
        font-size: 2rem;
    }
}



.about {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
}

    .about.reversed {
        flex-direction: row-reverse;
    }

    .about.columned {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about .left {
        width: 60%;
        display: flex;
    }

        .about .left .image {
            width: 100%;
            height: 600px;
            position: relative;
        }

            .about .left .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, var(--bg-color) 20%);
                border-radius: 60px;
            }

            .about .left .image::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to right, rgba(0, 0, 0, 0) 80%, var(--bg-color) 100%);
            }

            .about .left .image::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 90%, var(--bg-color) 100%);
                z-index: 1;
            }

            .about .left .image .bg {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: linear-gradient(to top, rgba(0, 0, 0, 0) 60%, var(--bg-color) 95%);
                z-index: 1;
            }

    .about .right {
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .about.columned .right {
        width: 90%;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding-top: 50px;
    }

    .about.reversed .right {
        align-items: start;
    }

        .about.reversed .right .content {
            align-items: start;
        }

    .about .right .content .btn {
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 10px 40px;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.5s ease;
        margin-top: 20px;
        text-align: center;
        cursor: pointer;
    }

        .about .right .content .btn:hover {
            background-color: var(--primary-color-low);
            transform: translateY(-5px) scale(1.05);
        }


    .about .right .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding-top: 20%;
    }

    .about.columned .right .content {
        padding-top: 0;
        width: 40%;
    }

    .about .right .content h2 {
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 20px;
    }

    .about.columned .right .content h2 {
        text-align: center;
        width: 100%;
    }

    .about.right .content p {
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--text-dark);
        margin-bottom: 20px;
    }

    .about.columned .right .content p {
        text-align: center;
        width: 100%;
    }




@media screen and (max-width: 1500px) {
    .about .left .image {
        height: 500px;
    }

    .about .right .content h2 {
        font-size: 2.5rem;
    }

    .about .right .content p {
        font-size: 1rem;
    }

    .about.reversed .right {
        align-items: center;
    }

    .about.columned .left .image {
        height: 500px;
    }

    .about.columned .right .content h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .about .left .image {
        height: 450px;
    }

    .about .right .content h2 {
        font-size: 2.5rem;
    }

    .about .right .content p {
        font-size: 1rem;
    }

    .about.columned .left {
        width: 95%;
    }

        .about.columned .left .image {
            height: 450px;
        }

    .about.columned .right {
        width: 95%;
    }

        .about.columned .right .content {
            width: 45%;
        }

            .about.columned .right .content h2 {
                font-size: 2.5rem;
            }

            .about.columned .right .content p {
                font-size: 1rem;
            }

    .about.reversed .right {
        align-items: center;
    }
}

@media screen and (max-width: 1024px) {
    .about {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .about.reversed .right {
            align-items: center;
        }

            .about.reversed .right .content {
                align-items: center;
            }

                .about.reversed .right .content h2 {
                    text-align: center;
                }

                .about.reversed .right .content p {
                    text-align: center;
                }

        .about .left {
            width: 90%;
        }

            .about .left .image {
                height: 400px;
            }

        .about .right {
            width: 90%;
            padding-top: 30px;
        }

            .about .right .content {
                padding-top: 0;
            }



        .about.columned .left {
            width: 95%;
        }

            .about.columned .left .image {
                height: 450px;
            }

        .about.columned .right {
            width: 95%;
        }

            .about.columned .right .content {
                width: 45%;
            }
}

@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding-bottom: 20px;
    }

        .about.reversed {
            flex-direction: column;
        }

        .about .left {
            width: 90%;
        }

            .about .left .image {
                height: 400px;
            }

        .about .right {
            width: 90%;
            padding-top: 50px;
        }

            .about .right .content {
                padding-top: 0;
            }

                .about .right .content h2 {
                    font-size: 2rem;
                }

                .about .right .content p {
                    font-size: 1rem;
                }

        .about.columned .right {
            flex-direction: column;
        }

            .about.columned .right .content {
                width: 100%;
                margin-bottom: 20px;
            }

        .about.reversed .right {
            align-items: center;
        }
}

@media screen and (max-width: 550px) {
    .about .left .image {
        height: 300px;
    }

    .about .right .content h2 {
        font-size: 1.8rem;
    }

    .about .right .content p {
        font-size: 0.9rem;
    }

    .about.columned .left .image {
        height: 300px;
    }

    .about.columned .right .content h2 {
        font-size: 1.8rem;
    }

    .about.columned .right .content p {
        font-size: 0.9rem;
    }
}


.timeline-sec {
    width: 70%;
    margin: 0 auto;
    margin-top: -200px;
}

    .timeline-sec .list {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding-top: 250px;
    }

        .timeline-sec .list .item {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            width: 40%;
            position: relative;
        }


            .timeline-sec .list .item:nth-child(odd) {
                align-self: flex-start;
                margin-left: 5%;
            }

            .timeline-sec .list .item:nth-child(even) {
                align-self: flex-end;
                margin-right: 5%;
            }

            .timeline-sec .list .item .content {
                width: 100%;
                padding: 20px;
                background-color: var(--bg-color);
                border-radius: 10px;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            }




        .timeline-sec .list .line {
            width: 3px;
            height: calc(88% + 150px);
            background-color: var(--secondary-color);
            position: absolute;
            top: -50px;
            left: 50%;
            z-index: -1;
        }



        .timeline-sec .list .item::after {
            content: '';
            position: absolute;
            left: 113%;
            top: 52%;
            width: 20px;
            height: 20px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            z-index: 1;
            transform: translate(-50%, -50%);
        }

        .timeline-sec .list .item:nth-child(even)::after {
            left: -12%;
        }

/* timeline-sec responsive */

@media screen and (max-width: 1500px) {
    .timeline-sec .list .item:after {
        left: 113%;
        top: 100%;
    }

    .timeline-sec .list .item:nth-child(even)::after {
        left: -12%;
    }

    .timeline-sec .list .line {
        height: calc(95% + 200px);
    }
}

@media screen and (max-width: 1024px) {
    .timeline-sec .list .line {
        left: -10%;
    }


    .timeline-sec .list {
        padding-top: 200px;
    }

        .timeline-sec .list .item:nth-child(odd) {
            align-self: center;
            margin-left: 0;
        }

        .timeline-sec .list .item:nth-child(even) {
            align-self: center;
            margin-right: 0;
        }

        .timeline-sec .list .item::after {
            left: 0% !important;
            top: 0%;
        }

        .timeline-sec .list .item {
            width: 90%;
        }
}

@media screen and (max-width: 768px) {

    .timeline-sec .list .line {
        top: -350px;
        left: -10%;
        height: calc(95% + 350px);
    }

    .timeline-sec .list {
        padding-top: 200px;
    }

        .timeline-sec .list .item {
            width: 90%;
        }
}



.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    .loader-wrapper .loader {
        width: 50%;
    }

        .loader-wrapper .loader svg {
            width: 100%;
            height: 100%;
            opacity: 0;
        }

@media screen and (max-width: 768px) {
    .loader-wrapper {
        width: 100%;
    }

        .loader-wrapper .loader {
            width: 120%;
        }
}


.loader-wrapper .loader .logo {
    position: relative;
}

.loader-wrapper .loader svg .icon-side {
    position: relative;
}

.loader-wrapper .maskedBox {
    position: absolute;
    top: -2%;
    left: 37.4%;
    width: 23.4%;
    height: 86%;
    background-color: rgba(255, 0, 0, 0.4);
    z-index: 100000;
    overflow: hidden;
    clip-path: polygon(0 40%, 100% 0, 100% 55%, 0% 99%);
    border-radius: 0 0px 0 0;
    opacity: 0;
}

    .loader-wrapper .maskedBox .images {
        width: 100%;
        height: 100%;
        position: relative;
    }

        .loader-wrapper .maskedBox .images img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
            z-index: 0;
        }


.contact {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
}

    .contact .left {
        width: 45%;
        display: flex;
        border-radius: 0 30px 30px 0;
    }

        .contact .left .map {
            width: 100%;
            height: 600px;
            position: relative;
            border-radius: 0 30px 30px 0;
        }


            .contact .left .map iframe {
                width: 100%;
                height: 100%;
                border-radius: 0 30px 30px 0;
                mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, var(--bg-color) 20%);
            }

            .contact .left .map::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 10%;
                background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, var(--bg-color) 100%);
                z-index: 1;
            }

            .contact .left .map::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 10%;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-color) 100%);
                z-index: 1;
                user-select: none;
            }


    .contact .right {
        width: 55%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

        .contact .right .contact-items {
            width: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding-top: 40px;
        }

            .contact .right .contact-items .contact-item {
                width: 35%;
                display: flex;
                flex-direction: row;
                justify-content: start;
                align-items: center;
                margin: 0 30px;
                margin-bottom: 50px;
                background-color: rgba(255, 255, 255, 0.3);
                padding: 10px 20px;
                border-radius: 10px;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
                position: relative;
            }

                .contact .right .contact-items .contact-item:last-child {
                    width: 80%;
                }

                .contact .right .contact-items .contact-item.w-100 {
                    width: 80%;
                }

                .contact .right .contact-items .contact-item .icon {
                    width: 60px;
                    height: 60px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-right: 20px;
                }

                    .contact .right .contact-items .contact-item .icon i {
                        font-size: 2.8rem;
                        color: var(--secondary-color);
                    }

                .contact .right .contact-items .contact-item .content {
                    display: flex;
                    flex-direction: column;
                    justify-content: start;
                    align-items: start;
                }

                    .contact .right .contact-items .contact-item .content h2 {
                        font-size: 1.7rem;
                        font-weight: 600;
                        color: var(--text-dark);
                        margin-bottom: 10px;
                    }

                    .contact .right .contact-items .contact-item .content p {
                        font-size: 1.1rem;
                        font-weight: 400;
                        color: var(--text-dark);
                        margin-bottom: 10px;
                    }

/* contact responsive */

@media screen and (max-width: 1500px) {
    .contact .left .map {
        height: 500px;
    }

    .contact .right .contact-items {
        flex-direction: row;
        flex-wrap: wrap;
    }

        .contact .right .contact-items .contact-item {
            width: 37%;
        }

            .contact .right .contact-items .contact-item .icon {
                width: 50px;
                height: 50px;
            }

                .contact .right .contact-items .contact-item .icon i {
                    font-size: 2.5rem;
                }

            .contact .right .contact-items .contact-item .content h2 {
                font-size: 1.5rem;
            }

            .contact .right .contact-items .contact-item .content p {
                font-size: 1rem;
            }
}

@media screen and (max-width: 1200px) {
    .contact .left .map {
        height: 450px;
    }

    .contact .right .contact-items .contact-item {
        width: 45%;
    }

        .contact .right .contact-items .contact-item .icon {
            width: 50px;
            height: 50px;
        }

            .contact .right .contact-items .contact-item .icon i {
                font-size: 2.5rem;
            }

        .contact .right .contact-items .contact-item .content h2 {
            font-size: 1.5rem;
        }

        .contact .right .contact-items .contact-item .content p {
            font-size: 1rem;
        }
}

@media screen and (max-width: 1024px) {
    .contact {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .contact .left {
            width: 90%;
        }

            .contact .left .map {
                height: 400px;
            }

        .contact .right {
            width: 90%;
            padding-top: 50px;
        }

            .contact .right .contact-items {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
            }

                .contact .right .contact-items .contact-item {
                    width: 40%;
                    margin-left: 10px;
                    margin-right: 5px;
                    margin-bottom: 15px;
                }

                    .contact .right .contact-items .contact-item:last-child {
                        width: 86%;
                    }

                    .contact .right .contact-items .contact-item.w-100 {
                        width: 86%;
                    }

                    .contact .right .contact-items .contact-item .icon {
                        width: 50px;
                        height: 50px;
                    }

                        .contact .right .contact-items .contact-item .icon i {
                            font-size: 2.5rem;
                        }

                    .contact .right .contact-items .contact-item .content h2 {
                        font-size: 1.5rem;
                    }

                    .contact .right .contact-items .contact-item .content p {
                        font-size: 1rem;
                    }
}

@media screen and (max-width: 768px) {
    .contact .left .map {
        height: 300px;
    }

    .contact .right .contact-items .contact-item {
        width: 90% !important;
    }

        .contact .right .contact-items .contact-item .icon {
            width: 50px;
            height: 50px;
        }

            .contact .right .contact-items .contact-item .icon i {
                font-size: 2.5rem;
            }

        .contact .right .contact-items .contact-item .content h2 {
            font-size: 1.5rem;
        }

        .contact .right .contact-items .contact-item .content p {
            font-size: 1rem;
        }
}

@media screen and (max-width: 550px) {
    .contact .left .map {
        height: 250px;
    }

    .contact .right .contact-items .contact-item .icon {
        width: 40px;
        height: 40px;
    }

        .contact .right .contact-items .contact-item .icon i {
            font-size: 2rem;
        }

    .contact .right .contact-items .contact-item .content h2 {
        font-size: 1.3rem;
    }

    .contact .right .contact-items .contact-item .content p {
        font-size: 0.9rem;
    }
}




.products {
    display: flex;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
    overflow: hidden;
}


    .products .products-cont {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

        .products .products-cont .pdf-item {
            width: 32%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            margin: 0 10px;
            margin-bottom: 50px;
            background-color: white;
            border-radius: 8px;
            position: relative;
        }

            .products .products-cont .pdf-item canvas {
                width: 45%;
                height: 400px;
                border-radius: 20px;
                position: relative;
                object-fit: contain;
                top: 0;
                left: 0;
                padding: 20px;
            }

            .products .products-cont .pdf-item .image {
                width: 55%;
                height: 350px;
                border-radius: 5px;
                position: relative;
                object-fit: contain;
                top: 0;
                left: 0;
                padding: 35px 20px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .products .products-cont .pdf-item .image img {
                    width: 100%;
                    max-height: 100%;
                    object-fit: contain;
                    border-radius: 5px;
                }

        .products .products-cont #pdf-loader {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgba(255, 255, 255, 0.8);
            z-index: 1000;
        }

        .products .products-cont .pdf-item .content {
            width: 60%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            padding: 20px;
            padding-top: 50px;
        }

            .products .products-cont .pdf-item .content h2 {
                font-size: 2rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 10px;
            }

            .products .products-cont .pdf-item .content p {
                font-size: 1rem;
                font-weight: 400;
                color: var(--text-dark);
                margin-bottom: 10px;
                width: 100%;
                text-align: start;
            }

            .products .products-cont .pdf-item .content .btn {
                background-color: var(--primary-color);
                color: var(--text-light);
                padding: 10px 40px;
                border-radius: 5px;
                font-size: 1rem;
                font-weight: 500;
                transition: all 0.5s ease;
                position: absolute;
                bottom: -18px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 1001;
            }

                .products .products-cont .pdf-item .content .btn:hover {
                    background-color: var(--primary-color-low);
                    transform: translateY(-5px) translateX(-50%) scale(1.1);
                }

                .products .products-cont .pdf-item .content .btn i {
                    font-size: 1.2rem;
                    position: relative;
                    top: 1px;
                    transition: all 0.5s ease;
                }

/* products responsive */

@media screen and (max-width: 1500px) {
    .products .products-cont .pdf-item {
        width: 45%;
    }

        .products .products-cont .pdf-item canvas {
            width: 50%;
            height: 350px;
        }

        .products .products-cont .pdf-item .image {
            width: 50%;
            height: 350px;
        }

        .products .products-cont .pdf-item .content h2 {
            font-size: 1.8rem;
        }

        .products .products-cont .pdf-item .content p {
            font-size: 0.9rem;
        }

        .products .products-cont .pdf-item .content .btn {
            padding: 10px 30px;
            font-size: 0.9rem;
        }

            .products .products-cont .pdf-item .content .btn i {
                font-size: 1rem;
            }
}

@media screen and (max-width: 1200px) {
    .products .products-cont .pdf-item {
        width: 45%;
    }

        .products .products-cont .pdf-item canvas {
            width: 50%;
            height: 300px;
        }

        .products .products-cont .pdf-item .image {
            width: 50%;
            height: 300px;
        }

        .products .products-cont .pdf-item .content h2 {
            font-size: 1.8rem;
        }

        .products .products-cont .pdf-item .content p {
            font-size: 0.9rem;
        }

        .products .products-cont .pdf-item .content .btn {
            padding: 10px 30px;
            font-size: 0.9rem;
        }

            .products .products-cont .pdf-item .content .btn i {
                font-size: 1rem;
            }
}

@media screen and (max-width: 1024px) {
    .products {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
    }

        .products .products-cont {
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .products .products-cont .pdf-item {
                width: 90%;
            }

                .products .products-cont .pdf-item canvas {
                    width: 100%;
                    height: 300px;
                }

                .products .products-cont .pdf-item .image {
                    width: 100%;
                    height: 300px;
                }

                .products .products-cont .pdf-item .content {
                    width: 100%;
                    padding-top: 20px;
                }

                    .products .products-cont .pdf-item .content h2 {
                        font-size: 1.5rem;
                    }

                    .products .products-cont .pdf-item .content p {
                        font-size: 0.9rem;
                    }

                    .products .products-cont .pdf-item .content .btn {
                        padding: 10px 30px;
                        font-size: 0.9rem;
                    }

                        .products .products-cont .pdf-item .content .btn i {
                            font-size: 1rem;
                        }
}

@media screen and (max-width: 768px) {

    .products {
        padding-top: 00px;
    }

        .products .products-cont .pdf-item {
            width: 90%;
        }

            .products .products-cont .pdf-item canvas {
                width: 100%;
                height: 250px;
            }

            .products .products-cont .pdf-item .image {
                width: 100%;
                height: 250px;
            }

            .products .products-cont .pdf-item .content h2 {
                font-size: 1.3rem;
            }

            .products .products-cont .pdf-item .content p {
                font-size: 0.8rem;
            }

            .products .products-cont .pdf-item .content .btn {
                padding: 10px 20px;
                font-size: 0.8rem;
            }

                .products .products-cont .pdf-item .content .btn i {
                    font-size: 0.9rem;
                }
}

@media screen and (max-width: 550px) {
    .products .products-cont .pdf-item {
        width: 90%;
    }

        .products .products-cont .pdf-item canvas {
            width: 100%;
            height: 200px;
        }

        .products .products-cont .pdf-item .image {
            width: 100%;
            height: 200px;
        }

        .products .products-cont .pdf-item .content h2 {
            font-size: 1.1rem;
        }

        .products .products-cont .pdf-item .content p {
            font-size: 0.7rem;
        }

        .products .products-cont .pdf-item .content .btn {
            padding: 10px 20px;
            font-size: 0.7rem;
        }

            .products .products-cont .pdf-item .content .btn i {
                font-size: 0.8rem;
            }
}


.survey {
    display: flex;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 70px;
}

    .survey .survey-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

        .survey .survey-content .survey-question {
            width: 40%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 50px;
            background-color: white;
            border-radius: 8px;
            position: relative;
        }

            .survey .survey-content .survey-question .question {
                width: 100%;
                padding: 20px;
                background-color: var(--bg-color);
                border-radius: 8px;
                position: relative;
            }

                .survey .survey-content .survey-question .question h2 {
                    font-size: 1.5rem;
                    font-weight: 600;
                    color: var(--text-dark);
                    margin-bottom: 10px;
                }

            .survey .survey-content .survey-question .answers {
                width: 100%;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                padding: 20px;
            }

                .survey .survey-content .survey-question .answers .answer {
                    width: 30%;
                    display: flex;
                    flex-direction: row;
                    justify-content: start;
                    align-items: center;
                    margin: 0 10px;
                    margin-bottom: 20px;
                    padding: 10px 20px;
                    border-radius: 10px;
                    position: relative;
                }

                    .survey .survey-content .survey-question .answers .answer input[type="radio"] {
                        width: 20px;
                        height: 20px;
                        margin-right: 10px;
                    }

                        .survey .survey-content .survey-question .answers .answer input[type="radio"]:checked {
                            background-color: var(--primary-color);
                        }


                    .survey .survey-content .survey-question .answers .answer input[type="text"] {
                        width: 100%;
                        padding: 10px;
                        border-radius: 5px;
                        border: 1px solid var(--primary-color);
                    }

    .survey .survey-title {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }

        .survey .survey-title h1 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
            padding-top: 40px;
        }

    .survey #submitSurvey {
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 10px 40px;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.5s ease;
        position: relative;
        top: 20px;
    }


@media screen and (max-width: 1500px) {
    .survey .survey-content .survey-question {
        width: 45%;
    }

        .survey .survey-content .survey-question .question h2 {
            font-size: 1.3rem;
        }

        .survey .survey-content .survey-question .answers .answer {
            width: 35%;
        }

            .survey .survey-content .survey-question .answers .answer input[type="text"] {
                padding: 10px;
            }

    .survey .survey-title h1 {
        font-size: 1.8rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1200px) {
    .survey .survey-content .survey-question {
        width: 45%;
    }

        .survey .survey-content .survey-question .question h2 {
            font-size: 1.3rem;
        }

        .survey .survey-content .survey-question .answers .answer {
            width: 35%;
        }

            .survey .survey-content .survey-question .answers .answer input[type="text"] {
                padding: 10px;
            }

    .survey .survey-title h1 {
        font-size: 1.8rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1024px) {
    .survey {
        padding-top: 50px;
    }

        .survey .survey-content .survey-question {
            width: 90%;
        }

            .survey .survey-content .survey-question .question {
                padding: 20px;
            }

                .survey .survey-content .survey-question .question h2 {
                    font-size: 1.3rem;
                }

            .survey .survey-content .survey-question .answers {
                padding: 20px;
            }

                .survey .survey-content .survey-question .answers .answer {
                    width: 40%;
                }

                    .survey .survey-content .survey-question .answers .answer input[type="text"] {
                        padding: 10px;
                    }

        .survey .survey-title h1 {
            font-size: 1.5rem;
        }

        .survey #submitSurvey {
            padding: 10px 30px;
            font-size: 0.9rem;
        }
}

@media screen and (max-width: 768px) {
    .survey .survey-content .survey-question {
        width: 90%;
    }

        .survey .survey-content .survey-question .question {
            padding: 20px;
        }

            .survey .survey-content .survey-question .question h2 {
                font-size: 1.3rem;
            }

        .survey .survey-content .survey-question .answers {
            padding: 20px;
        }

            .survey .survey-content .survey-question .answers .answer {
                width: 40%;
            }

                .survey .survey-content .survey-question .answers .answer input[type="text"] {
                    padding: 10px;
                }

    .survey .survey-title h1 {
        font-size: 1.5rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}


.marketing-sec {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 70px;
}

    .marketing-sec .left {
        width: 60%;
    }


    .marketing-sec .logos {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .marketing-sec .logos .row {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: start;
            align-items: center;
            margin-bottom: 80px;
            transition: all 0.5s ease;
        }

            .marketing-sec .logos .row:hover {
                transform: translateY(-10px);
            }

            .marketing-sec .logos .row a {
                margin: 0 20px;
                width: 25%;
            }

            .marketing-sec .logos .row .logo {
                width: 100%;
                transition: all 0.5s ease;
                filter: invert(70%) hue-rotate(20deg) grayscale(100%);
            }

            .marketing-sec .logos .row:hover .logo {
                filter: invert(0%) hue-rotate(0deg) grayscale(0%);
            }


            .marketing-sec .logos .row:nth-child(even) {
                margin-left: 70px;
            }


    .marketing-sec .right {
        width: auto;
    }

        .marketing-sec .right .content {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            padding: 20px;
            padding-top: 250px;
            padding-left: 80px;
        }

            .marketing-sec .right .content h2 {
                font-size: 4rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 20px;
                width: 86%;
                white-space: nowrap;
            }

            .marketing-sec .right .content p {
                font-size: 1.2rem;
                font-weight: 400;
                color: var(--text-dark);
                margin-bottom: 20px;
                letter-spacing: 1px;
                width: 80%;
                margin: 10px 0;
            }

            .marketing-sec .right .content .btn {
                background-color: var(--primary-color);
                color: var(--text-light);
                padding: 10px 40px;
                border-radius: 5px;
                font-size: 1rem;
                font-weight: 500;
                transition: all 0.5s ease;
                margin-top: 20px;
            }

@media screen and (max-width: 1800px) {
    .marketing-sec .right .content h2 {
        font-size: 3.5rem;
    }

    .marketing-sec .right .content p {
        font-size: 1.1rem;
    }

    .marketing-sec .right .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1024px) {
    .marketing-sec .left {
        width: 650%;
    }

    .marketing-sec .right {
        width: 35%;
        padding-top: 0px;
    }

        .marketing-sec .right .content h2 {
            font-size: 2rem;
        }
}

@media screen and (max-width: 800px) {
    .marketing-sec {
        flex-direction: column-reverse;
        margin-top: -250px;
    }

        .marketing-sec .left {
            width: 93%;
            margin: 0 auto;
        }

            .marketing-sec .left .row {
                margin-bottom: 15px;
            }

        .marketing-sec .right {
            width: 93%;
            padding-top: 50px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .marketing-sec .right .content h2 {
                font-size: 2rem;
                text-align: center;
                /* br bile olsa alt satıra geçme!*/
                white-space: nowrap;
                width: 100%;
            }

                .marketing-sec .right .content h2 span {
                    display: none;
                }
}

@media screen and (max-width: 768px) {
    .marketing-sec .right .content h2 {
        font-size: 1.8rem;
    }

    .marketing-sec .right .content p {
        font-size: 1rem;
    }

    .marketing-sec .right .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}


@media screen and (max-width: 600px) {
    .marketing-sec .left {
        justify-content: center;
        align-items: center;
    }

        .marketing-sec .left .row {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-evenly;
        }

            .marketing-sec .left .row a {
                width: 40%;
                margin: 0 10px;
            }

            .marketing-sec .left .row .logo {
                width: 100%;
                margin-bottom: 20px;
            }

            .marketing-sec .left .row:nth-child(even) {
                margin-left: 0;
            }
}

.projects-sec {
    padding: 70px 0;
    background-color: var(--bg-color);
}

.projects-cont {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .category-title::before {
        content: '';
        width: 8px;
        height: 60px;
        background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-color-low));
        border-radius: 4px;
    }

.list-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark-low);
    margin: 40px 0;
    padding-left: 60px;
    position: relative;
}

    .list-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 40px;
        height: 2px;
        background: var(--secondary-color);
        transform: translateY(-50%);
    }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.project-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

    .project-card:hover {
        transform: translateY(-20px);
    }

    .project-card .image {
        width: 100%;
        height: 350px;
        position: relative;
        overflow: hidden;
    }

        .project-card .image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.6) 100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

    .project-card:hover .image::after {
        opacity: 1;
    }

    .project-card .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .project-card:hover .image img {
        transform: scale(1.1);
    }

    .project-card .content {
        position: relative;
        padding: 30px;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
    }

        .project-card .content::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 0;
            width: 100%;
            height: 30px;
            background: inherit;
            border-radius: 30px 30px 0 0;
        }

        .project-card .content h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

            .project-card .content h4::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 3px;
                background: var(--secondary-color);
                border-radius: 2px;
            }

    .project-card:hover .content h4::after {
        width: 60px;
    }

    .project-card .content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark-low);
        margin-bottom: 20px;
        min-height: 80px;
    }

    .project-card .project-info {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

        .project-card .project-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(0,0,0,0.03);
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

            .project-card .project-info span:hover {
                background: var(--secondary-color);
                color: white;
            }

            .project-card .project-info span i {
                font-size: 1rem;
            }

        .project-card .project-info i {
            font-size: 1rem;
            margin-right: 5px;
            color: var(--secondary-color);
        }

    /* Ongoing Project Styles */
    .project-card.ongoing {
        background: linear-gradient(145deg, #ffffff, #fff5e6);
    }

        .project-card.ongoing::before {
            content: 'Devam Ediyor';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--secondary-color);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            z-index: 2;
            font-size: 0.8rem;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

.progress-circle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .progress-circle::before {
        content: '';
        position: absolute;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: conic-gradient(var(--secondary-color) var(--progress), #f0f0f0 0);
    }

    .progress-circle::after {
        content: '';
        position: absolute;
        width: 48px;
        height: 48px;
        background: white;
        border-radius: 50%;
    }

    .progress-circle span {
        position: relative;
        z-index: 1;
        font-weight: 600;
        color: var(--secondary-color);
    }

/* Brands Section Styles */
.brands-sec {
    padding: 70px 0;
    background-color: var(--bg-color);
}

.brands-cont {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

    .brand-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .brand-card a {
        text-decoration: none;
        display: block;
    }

.brand-image {
    height: 160px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    position: relative;
}

    .brand-image img {
        max-width: 85%;
        max-height: 85%;
        object-fit: contain;
        transition: transform 0.4s ease;
        filter: grayscale(100%);
        opacity: 0.7;
    }

.brand-card:hover .brand-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

.brand-content {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

    .brand-content h3 {
        font-size: 1.1rem;
        color: var(--text-dark);
        margin: 0;
        font-weight: 500;
        transition: color 0.3s ease;
    }

.brand-card:hover .brand-content h3 {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .brands-cont {
        width: 95%;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-image {
        height: 140px;
        padding: 20px;
    }
}


.artificial {
    padding: 100px 0;
    background-color: var(--bg-color);
    min-height: auto;
    position: relative;
    overflow: hidden;
}

    .artificial .partnership-cards {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .artificial .sec-title {
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 60px;
        text-align: center;
    }

    .artificial .cards {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding: 20px;
    }

    .artificial .card {
        width: 400px;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.5s ease;
        text-decoration: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    }

        .artificial .card:hover {
            transform: translateY(-15px);
        }

        .artificial .card .image {
            height: 200px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            position: relative;
        }

            .artificial .card .image img {
                max-width: 80%;
                max-height: 80%;
                object-fit: contain;
                transition: transform 0.5s ease;
                filter: grayscale(100%);
                opacity: 0.7;
            }

        .artificial .card:hover .image img {
            transform: scale(1.1);
            filter: grayscale(0%);
            opacity: 1;
        }

        .artificial .card .content {
            padding: 30px;
            background: #fff;
            position: relative;
        }

            .artificial .card .content h3 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 15px;
                position: relative;
                padding-bottom: 15px;
            }

                .artificial .card .content h3::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 40px;
                    height: 3px;
                    background: var(--secondary-color);
                    border-radius: 2px;
                    transition: width 0.3s ease;
                }

        .artificial .card:hover .content h3::after {
            width: 60px;
        }

        .artificial .card .content p {
            font-size: 1rem;
            color: var(--text-dark-low);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .artificial .card .content .link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary-color);
            font-weight: 500;
            transition: gap 0.3s ease;
        }

        .artificial .card:hover .content .link {
            gap: 15px;
        }

        .artificial .card .content .link i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .artificial .card:hover .content .link i {
            transform: translateX(5px);
        }

/* Responsive Tasarım */
@media screen and (max-width: 1024px) {
    .artificial .cards {
        flex-direction: column;
        align-items: center;
    }

    .artificial .card {
        width: 80%;
    }

    .artificial .sec-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .artificial {
        padding: 60px 0;
    }

        .artificial .card {
            width: 90%;
        }

        .artificial .sec-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .artificial .card .image {
            height: 180px;
            padding: 30px;
        }

        .artificial .card .content {
            padding: 25px;
        }

            .artificial .card .content h3 {
                font-size: 1.3rem;
            }
}

@media screen and (max-width: 480px) {
    .artificial .card {
        width: 95%;
    }

        .artificial .card .image {
            height: 160px;
            padding: 25px;
        }

        .artificial .card .content {
            padding: 20px;
        }

    .artificial .sec-title {
        font-size: 1.8rem;
    }
}


/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    min-height: auto;
    .contact-info

{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    .info-item

{
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    &:hover

{
    transform: translateY(-10px);
}

.icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    i

{
    font-size: 25px;
    color: #fff;
}

}

.details {
    h3

{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

p {
    color: var(--text-dark-low);
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

}
}
}
}

/* Lokasyonlar Bölümü */
.locations-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, #fff 100%);
    min-height: auto;
    .container

{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    .locations-grid

{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    .location-card

{
    min-width: 380px; /* Minimum genişlik */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    &:hover

{
    transform: translateY(-10px);
}

.map {
    height: 300px;
    overflow: hidden;
    iframe

{
    width: 100%;
    height: 100%;
    border: none;
}

}

.details {
    padding: 35px;
    text-align: center;
    h3

{
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

p {
    font-size: 1.1rem;
    color: var(--text-dark-low);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

}
}
}
}
}

/* Responsive tasarım için düzenlemeler */
@media screen and (max-width: 1400px) {
    .locations-section .container .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .contact-section .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .locations-section .container .locations-grid {
        grid-template-columns: 1fr !important;
    }

    .location-card {
        width: 100%;
        min-width: unset !important;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

        .contact-section .contact-info {
            grid-template-columns: 1fr;
            gap: 15px;
        }

    .company-info-section .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card .details h3 {
        font-size: 1.5rem;
    }

    .location-card .map {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section .info-item {
        padding: 25px 15px;
    }

        .contact-section .info-item .icon {
            width: 50px;
            height: 50px;
        }

    .location-card {
        min-width: unset;
        margin: 0 10px;
    }

        .location-card .details {
            padding: 25px 15px;
        }

        .location-card .map {
            height: 200px;
        }
}

/* Responsive tasarım için kolonları düzenleme */
@media screen and (max-width: 1200px) {
    .locations-section .container .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-section .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .contact-section .contact-info {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .contact-info .info-item.phones {
        grid-column: auto;
    }

        .contact-info .info-item.phones .phone-group {
            flex-direction: column;
            gap: 15px;
        }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .location-card .map {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info .info-item.phones {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-card {
        max-width: 100%; /* Mobilde tam genişlik */
        margin: 0 auto;
    }

    .locations-grid {
        grid-template-columns: 1fr; /* 1 kolon */
    }

    .location-card .map {
        height: 280px;
    }

    .location-card .details h3 {
        font-size: 1.6rem;
    }

    .tax-info, .bank-info {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .bank-card {
        flex-direction: column;
        text-align: center;
    }

        .bank-card .bank-logo {
            width: 60px;
            height: 60px;
        }

    .info-list .info-row {
        flex-direction: column;
        gap: 5px;
    }
}

/* Şirket Bilgileri Bölümü */
.company-info-section {
    padding: 80px 0;
    background: #fff;
}

    .company-info-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tax-info, .bank-info {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .tax-info h3, .bank-info h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: var(--text-dark);
        position: relative;
        padding-bottom: 15px;
    }

        .tax-info h3::after, .bank-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

.info-list .info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

    .info-list .info-row:last-child {
        border-bottom: none;
    }

    .info-list .info-row span:first-child {
        color: var(--text-dark);
        font-weight: 500;
    }

    .info-list .info-row span:last-child {
        color: var(--text-dark-low);
    }

.bank-accounts {
    display: grid;
    gap: 20px;
}

.bank-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .bank-card .bank-logo {
        width: 80px;
        height: 80px;
        padding: 15px;
        background: var(--bg-color);
        border-radius: 10px;
    }

        .bank-card .bank-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .bank-card .account-details {
        flex: 1;
    }

        .bank-card .account-details h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .bank-card .account-details .iban {
            font-family: monospace;
            font-size: 1rem;
            color: var(--text-dark-low);
            margin-bottom: 10px;
        }

    .bank-card .copy-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: var(--bg-color);
        color: var(--text-dark);
        border-radius: 6px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .bank-card .copy-btn:hover {
            background: var(--secondary-color);
            color: #fff;
        }


.buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
    margin-top: -80px;
    background-color: var(--bg-color);
}

    .buy-btn .content {
        text-align: center;
        padding: 40px 200px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transition: all 0.5s ease;
    }

        .buy-btn .content:hover {
            transform: translateY(-10px);
        }

    .buy-btn h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .buy-btn p {
        font-size: 1.1rem;
        color: var(--text-dark-low);
        margin-bottom: 30px;
    }

    .buy-btn .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 40px;
        background: var(--secondary-color);
        color: #fff;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .buy-btn .cta-btn:hover {
            background: var(--secondary-color-low);
            transform: translateY(-5px);
        }

        .buy-btn .cta-btn i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .buy-btn .cta-btn:hover i {
            transform: translateX(5px);
        }

@media screen and (max-width: 768px) {
    .buy-btn {
        padding: 40px 20px;
        margin-top: 20px;
    }

        .buy-btn .content {
            padding: 30px 20px;
        }

        .buy-btn h2 {
            font-size: 2rem;
        }

        .buy-btn p {
            font-size: 1rem;
        }

        .buy-btn .cta-btn {
            padding: 12px 30px;
            font-size: 1rem;
        }
}

@media screen and (max-width: 480px) {
    .buy-btn h2 {
        font-size: 1.8rem;
    }

    .buy-btn p {
        font-size: 0.9rem;
    }

    .buy-btn .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .buy-btn {
        margin-bottom: 100px;
    }
}


/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    min-height: auto;
    .contact-info

{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    .info-item

{
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    &:hover

{
    transform: translateY(-10px);
}

.icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    i

{
    font-size: 25px;
    color: #fff;
}

}

.details {
    h3

{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

p {
    color: var(--text-dark-low);
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

}
}
}
}

/* Lokasyonlar Bölümü */
.locations-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, #fff 100%);
    min-height: auto;
    .container

{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    .locations-grid

{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    .location-card

{
    min-width: 380px; /* Minimum genişlik */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    &:hover

{
    transform: translateY(-10px);
}

.map {
    height: 300px;
    overflow: hidden;
    iframe

{
    width: 100%;
    height: 100%;
    border: none;
}

}

.details {
    padding: 35px;
    text-align: center;
    h3

{
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

p {
    font-size: 1.1rem;
    color: var(--text-dark-low);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

}
}
}
}
}

/* Responsive tasarım için düzenlemeler */
@media screen and (max-width: 1400px) {
    .locations-section .container .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .contact-section .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .locations-section .container .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        width: 100%;
        min-width: unset !important;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

        .contact-section .contact-info {
            grid-template-columns: 1fr;
            gap: 15px;
        }

    .company-info-section .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card .details h3 {
        font-size: 1.5rem;
    }

    .location-card .map {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section .info-item {
        padding: 25px 15px;
    }

        .contact-section .info-item .icon {
            width: 50px;
            height: 50px;
        }

    .location-card {
        min-width: unset;
        margin: 0 10px;
    }

        .location-card .details {
            padding: 25px 15px;
        }

        .location-card .map {
            height: 200px;
        }
}

/* Responsive tasarım için kolonları düzenleme */
@media screen and (max-width: 1200px) {
    .locations-section .container .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-section .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .contact-section .contact-info {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .contact-info .info-item.phones {
        grid-column: auto;
    }

        .contact-info .info-item.phones .phone-group {
            flex-direction: column;
            gap: 15px;
        }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .location-card .map {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info .info-item.phones {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-card {
        max-width: 100%; /* Mobilde tam genişlik */
        margin: 0 auto;
    }

    .locations-grid {
        grid-template-columns: 1fr; /* 1 kolon */
    }

    .location-card .map {
        height: 280px;
    }

    .location-card .details h3 {
        font-size: 1.6rem;
    }

    .tax-info, .bank-info {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .bank-card {
        flex-direction: column;
        text-align: center;
    }

        .bank-card .bank-logo {
            width: 60px;
            height: 60px;
        }

    .info-list .info-row {
        flex-direction: column;
        gap: 5px;
    }
}

/* Şirket Bilgileri Bölümü */
.company-info-section {
    padding: 80px 0;
    background: #fff;
}

    .company-info-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tax-info, .bank-info {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .tax-info h3, .bank-info h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: var(--text-dark);
        position: relative;
        padding-bottom: 15px;
    }

        .tax-info h3::after, .bank-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

.info-list .info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

    .info-list .info-row:last-child {
        border-bottom: none;
    }

    .info-list .info-row span:first-child {
        color: var(--text-dark);
        font-weight: 500;
    }

    .info-list .info-row span:last-child {
        color: var(--text-dark-low);
    }

.bank-accounts {
    display: grid;
    gap: 20px;
}

.bank-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .bank-card .bank-logo {
        width: 80px;
        height: 80px;
        padding: 15px;
        background: var(--bg-color);
        border-radius: 10px;
    }

        .bank-card .bank-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .bank-card .account-details {
        flex: 1;
    }

        .bank-card .account-details h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .bank-card .account-details .iban {
            font-family: monospace;
            font-size: 1rem;
            color: var(--text-dark-low);
            margin-bottom: 10px;
        }

    .bank-card .copy-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: var(--bg-color);
        color: var(--text-dark);
        border-radius: 6px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .bank-card .copy-btn:hover {
            background: var(--secondary-color);
            color: #fff;
        }

/* Projects Section Responsive */
@media screen and (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .category-title {
        font-size: 2.5rem;
    }

    .project-card .content h4 {
        font-size: 1.3rem;
    }

    .project-card .content p {
        font-size: 0.9rem;
        min-height: 60px;
    }

    .project-card .project-info span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 768px) {
    .projects-sec {
        padding: 40px 0;
    }

    .projects-cont {
        width: 95%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .list-title {
        font-size: 1.6rem;
        padding-left: 40px;
        margin: 30px 0;
    }

        .list-title::before {
            width: 30px;
        }

    .project-card .image {
        height: 250px;
    }

    .project-card .content {
        padding: 20px;
    }

        .project-card .content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .project-card .content p {
            min-height: auto;
            margin-bottom: 15px;
        }

    .project-card .project-info {
        flex-direction: column;
        gap: 10px;
    }

        .project-card .project-info span {
            width: 100%;
            justify-content: center;
        }

    .project-card.ongoing::before {
        font-size: 0.7rem;
        padding: 6px 30px;
        right: -30px;
    }

    .progress-circle {
        width: 50px;
        height: 50px;
    }

        .progress-circle::before {
            width: 44px;
            height: 44px;
        }

        .progress-circle::after {
            width: 38px;
            height: 38px;
        }

        .progress-circle span {
            font-size: 0.8rem;
        }
}

@media screen and (max-width: 480px) {
    .projects-cont {
        width: 92%;
    }

    .category-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

        .category-title::before {
            height: 40px;
            width: 6px;
        }

    .list-title {
        font-size: 1.4rem;
        padding-left: 30px;
    }

    .project-card {
        border-radius: 20px;
    }

        .project-card .image {
            height: 200px;
        }

        .project-card .content {
            padding: 15px;
        }

            .project-card .content h4 {
                font-size: 1.1rem;
            }

            .project-card .content p {
                font-size: 0.85rem;
            }

        .project-card .project-info span {
            font-size: 0.75rem;
            padding: 5px 10px;
        }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    min-height: auto;
    .contact-info

{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    .info-item

{
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    &:hover

{
    transform: translateY(-10px);
}

.icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    i

{
    font-size: 25px;
    color: #fff;
}

}

.details {
    h3

{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

p {
    color: var(--text-dark-low);
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

}
}
}
}

/* Lokasyonlar Bölümü */
.locations-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, #fff 100%);
    min-height: auto;
    .container

{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    .locations-grid

{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    .location-card

{
    min-width: 380px; /* Minimum genişlik */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    &:hover

{
    transform: translateY(-10px);
}

.map {
    height: 300px;
    overflow: hidden;
    iframe

{
    width: 100%;
    height: 100%;
    border: none;
}

}

.details {
    padding: 35px;
    text-align: center;
    h3

{
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

p {
    font-size: 1.1rem;
    color: var(--text-dark-low);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

}
}
}
}
}

/* Responsive tasarım için düzenlemeler */
@media screen and (max-width: 1400px) {
    .locations-section .container .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .contact-section .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .locations-section .container .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        width: 100%;
        min-width: unset !important;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

        .contact-section .contact-info {
            grid-template-columns: 1fr;
            gap: 15px;
        }

    .company-info-section .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card .details h3 {
        font-size: 1.5rem;
    }

    .location-card .map {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section .info-item {
        padding: 25px 15px;
    }

        .contact-section .info-item .icon {
            width: 50px;
            height: 50px;
        }

    .location-card {
        min-width: unset;
        margin: 0 10px;
    }

        .location-card .details {
            padding: 25px 15px;
        }

        .location-card .map {
            height: 200px;
        }
}

/* Responsive tasarım için kolonları düzenleme */
@media screen and (max-width: 1200px) {
    .locations-section .container .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-section .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .contact-section .contact-info {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .contact-info .info-item.phones {
        grid-column: auto;
    }

        .contact-info .info-item.phones .phone-group {
            flex-direction: column;
            gap: 15px;
        }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .location-card .map {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info .info-item.phones {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-card {
        max-width: 100%; /* Mobilde tam genişlik */
        margin: 0 auto;
    }

    .locations-grid {
        grid-template-columns: 1fr; /* 1 kolon */
    }

    .location-card .map {
        height: 280px;
    }

    .location-card .details h3 {
        font-size: 1.6rem;
    }

    .tax-info, .bank-info {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .bank-card {
        flex-direction: column;
        text-align: center;
    }

        .bank-card .bank-logo {
            width: 60px;
            height: 60px;
        }

    .info-list .info-row {
        flex-direction: column;
        gap: 5px;
    }
}

/* Şirket Bilgileri Bölümü */
.company-info-section {
    padding: 80px 0;
    background: #fff;
}

    .company-info-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tax-info, .bank-info {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .tax-info h3, .bank-info h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: var(--text-dark);
        position: relative;
        padding-bottom: 15px;
    }

        .tax-info h3::after, .bank-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

.info-list .info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

    .info-list .info-row:last-child {
        border-bottom: none;
    }

    .info-list .info-row span:first-child {
        color: var(--text-dark);
        font-weight: 500;
    }

    .info-list .info-row span:last-child {
        color: var(--text-dark-low);
    }

.bank-accounts {
    display: grid;
    gap: 20px;
}

.bank-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .bank-card .bank-logo {
        width: 80px;
        height: 80px;
        padding: 15px;
        background: var(--bg-color);
        border-radius: 10px;
    }

        .bank-card .bank-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .bank-card .account-details {
        flex: 1;
    }

        .bank-card .account-details h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .bank-card .account-details .iban {
            font-family: monospace;
            font-size: 1rem;
            color: var(--text-dark-low);
            margin-bottom: 10px;
        }

    .bank-card .copy-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: var(--bg-color);
        color: var(--text-dark);
        border-radius: 6px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .bank-card .copy-btn:hover {
            background: var(--secondary-color);
            color: #fff;
        }

.project-details-sec {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 2%;
}

/* Banner Slider Styles */
.project-banner {
    position: relative;
    margin: 0 auto;
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 90%;
    background: #fff;
}

.banner-slider {
    height: 70vh;
}

.banner-slide {
    width: 100%;
    height: 100%;
}

    .banner-slide .image {
        width: 100%;
        height: 100%;
    }

        .banner-slide .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* Project Content Styles */
.project-content {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 90%;
    margin: 0 auto;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.project-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.project-title h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    background: var(--secondary-color-light);
    color: #fff;
}

.status-active {
    background: #e8f5e9;
    color: #2e7d32;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

    .meta-item i {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

/* Project Description Styles */
.project-description {
    color: #666;
    line-height: 1.8;
}

    .project-description h2 {
        color: var(--text-color);
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .project-details-sec {
        padding: 1rem;
    }

    .banner-slider {
        height: 40vh;
    }

    .project-title h1 {
        font-size: 1.8rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .project-content {
        margin-top: -30px;
        padding: 1.5rem;
    }

    .meta-item {
        font-size: 0.9rem;
    }
}

/* Flickity Customization */
.flickity-prev-next-button {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
}

    .flickity-prev-next-button:hover {
        background: #fff;
    }

.flickity-button-icon {
    fill: var(--primary-color);
}

/* Animation Classes */
.project-content {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1500px) {
    .banner-slider {
        height: 60vh;
    }

    .project-title h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .project-banner,
    .project-content {
        width: 95%;
    }

    .banner-slider {
        height: 50vh;
    }
}

@media screen and (max-width: 1024px) {
    .project-details-sec {
        margin-top: 0;
    }

    .banner-slider {
        height: 45vh;
    }

    .project-title h1 {
        font-size: 2.2rem;
    }

    .project-meta {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .banner-slider {
        height: 35vh;
    }

    .project-content {
        padding: 1rem;
    }

    .project-title h1 {
        font-size: 1.5rem;
    }

    .project-status {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .project-meta {
        margin-top: 1rem;
    }

    .meta-item i {
        font-size: 1rem;
    }
}



.developer-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 40px auto 20px;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(45deg, rgba(194, 122, 51, 0.08), rgba(236, 179, 44, 0.08));
    border: 1px solid rgba(194, 122, 51, 0.1);
    border-radius: 10px;
    color: var(--text-dark-low);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .developer-link:hover {
        background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color-low));
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(194, 122, 51, 0.2);
    }

    .developer-link i {
        font-size: 1.1rem;
        color: var(--secondary-color);
        transition: all 0.4s ease;
    }

    .developer-link:hover i {
        color: #fff;
        transform: rotate(360deg);
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 1200px) {
    .developer-link {
        margin: 35px auto 18px;
        padding: 11px 22px;
        font-size: 0.85rem;
    }

        .developer-link i {
            font-size: 1rem;
        }
}

@media screen and (max-width: 992px) {
    .developer-link {
        margin: 30px auto 15px;
        padding: 10px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
}

@media screen and (max-width: 768px) {
    .developer-link {
        margin: 25px auto 12px;
        padding: 9px 18px;
        font-size: 0.75rem;
        gap: 8px;
    }

        .developer-link i {
            font-size: 0.9rem;
        }
}

@media screen and (max-width: 576px) {
    .developer-link {
        margin: 20px auto 10px;
        padding: 8px 16px;
        font-size: 0.7rem;
        gap: 6px;
        width: 90%;
        max-width: 300px;
    }

        .developer-link i {
            font-size: 0.8rem;
        }
}

@media screen and (max-width: 400px) {
    .developer-link {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        font-size: 0.65rem;
    }
}
