
@font-face {
    font-family: head;
    src: url("../fonts/A2RecordGothic-Regular.ttf");
}
@font-face {
    font-family: headb;
    src: url("../fonts/A2RecordGothicCondensed-Bold.ttf");
}
@font-face {
    font-family: headm;
    src: url("../fonts/A2RecordGothicCondensed-Medium.ttf");
}
  @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        .marquee {
            animation: marquee 30s linear infinite;
        }
        
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #1e3a8a, #dc2626, #4338ca);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .product-card {
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .pattern-bg {
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(67, 56, 202, 0.1) 0%, transparent 50%);
        }
#menuline{

    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    position: relative;
}
#menuline .line{
    width: 60%;
    flex-shrink: 0;
    height: 1.5px;
    background-color: #575349;
    position: relative;
    position: relative;
    z-index: 99999;
}
#menuline .line::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

background-color: #D7D1C6;
left: 0%;
transform: scaleX(0);
transform-origin: bottom right;
transition: transform ease-in-out .5s;
}



#menuline:hover .line::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}
.menu-right:hover{
    filter: blur(1.1px);
    cursor: pointer;
}
.menu-right{
    filter: blur(0px);
    transition: filter .5s;
    cursor: pointer;
    
}

