:root {
    --primary-color: #005082; /* Mavi */
    --primary-color-low: rgba(0, 80, 130, 0.5);
    --primary-color-dark: #003c66;

    --secondary-color: #adb5bd; /* Açık Gri */
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef; /* Beyazımsı Gri */
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f8f9fa; /* Beyaz */
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e9ecef;

    --text-dark: #343a40; /* Koyu Gri */
    --text-dark-low: #495057;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa; /* Beyaz */
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #005082; /* Daha koyu ve soft mavi */
    --button-color-low: rgba(0, 80, 130, 0.5);
    --button-color-dark: #003c66;
}

.btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.9rem 1.4rem;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease;
    width: max-content;
}

.btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.btn.primary {
    position: relative;
    padding-right: calc(1.4rem + 40px);
}

.btn.primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.btn.primary::after {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url('../../assets/icon/right-white.svg');
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn.basic {
    background-color: unset;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.btn.basic:hover {
    transform: translateY(-6px);
    box-shadow: none;
}



.btn.basic:hover::after {
    left: 15px;
}

.btn.basic::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.btn.basic:hover::before {
    width: 80%;
    left: 13%;
    transition: all 0.3s ease;
}


.curve-btn i {
    font-size: 2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    animation: updown 1s infinite;
}

.curve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.8rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.curve-btn::before {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    background-color: var(--bg-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.curve-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.curve-btn:hover::before {
    width: 0%;
    height: 0;
    transition: all 0.3s ease;
}

.curve-btn:hover i {
    font-size: 2rem;
    color: var(--text-light);
    animation: updown2 2s infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes updown2 {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(10px) rotate(5deg);
    }

    50% {
        transform: translateY(8px) rotate(0deg);
    }
    

    80% {
        transform: translateY(10px) rotate(-5deg);
    }

    100% {
        transform: translateY(0);
    }
}



.h-title {
    position: relative;
    text-align: center;
}

.h-title h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.h-title h2 .h-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-wrap: nowrap;
}

/* h title responsive */

@media screen and (max-width: 992px) {
    .h-title h2 {
        font-size: 2.8rem;
    }

    .h-title h2 .h-tag {
        font-size: 1.3rem;
    }
}


@media screen and (max-width: 768px) {
    .h-title h2 {
        font-size: 2.2rem;
    }

    .h-title h2 .h-tag {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .h-title h2 {
        font-size: 2rem;
    }

    .h-title h2 .h-tag {
        font-size: 1rem;
    }
}






.Smoothline {
    transition: all 0.3s ease;
}


.d-none {
    display: none!important;
}




.fixed-menu {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: var(--card-bg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    opacity: 0;
    bottom: -10%;
    transition: all 0.5s ease;
    width: 0;
    overflow: hidden;
}


.fixed-menu .menu {
    width: 450px;
    height: 60px;
    display: flex;
}


.fixed-menu.productSliderMenu .menu {
    width: max-content;
    height: 70px;
}

.fixed-menu.productSliderMenu .list {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.fixed-menu.productSliderMenu .list .menu-item {
    width: 40%;
    height: 85%;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: -4px;
    border-radius: 50px;
}

.fixed-menu.productSliderMenu .list .menu-item .image {
    height: 80%;
    width: 60px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    
}


.fixed-menu.productSliderMenu .list .menu-item .image img {
    height: 150%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.fixed-menu.productSliderMenu .list .menu-item.active .image img {
    scale: 1.3;
    filter: drop-shadow(0 0 10px rgba(2, 17, 131, 0.5));
}

.fixed-menu.productSliderMenu .list .menu-item:hover .image img {
    scale: 1.1;
    filter: drop-shadow(0 0 10px rgba(2, 17, 131, 0.5));
}

.fixed-menu.productSliderMenu .list .menu-item.active:hover .image img {
    scale: 1.3;
    filter: drop-shadow(0 0 10px rgba(2, 17, 131, 0.5));
}

.fixed-menu.productSliderMenu .list .menu-item h3 {
    display: none;
}

.fixed-menu.LinkMenu .menu {
    width: max-content;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-size: 1.2rem;
}

.fixed-menu:hover {
    margin-bottom: 5px;
    box-shadow: 0 0 40px rgba(2, 17, 131,0.3);
}






