*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Vazirmatn", Tahoma, sans-serif;
}

.comp6 {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 2000px;
    margin: auto;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px);
    padding: 20px; 
}

.comp6 .bg-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.comp6 .title6-k {
    position: relative;
    width: 100%;
    max-width: 1200px;
    font-size: 22px;
    color: white;
    z-index: 2;
    padding: 40px 20px;
    text-align: justify;
}

.comp6 .title6-k h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.4;
    text-align: center;
}

.comp6 .title6-k span {
    color: #a855f7;
}

.comp6 .title6-k p {
    margin: 2rem 0;
    line-height: 1.8;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(40px);
}

.link6-k {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(126, 34, 206, 0.3);
    opacity: 0;
    transform: translateY(30px);
    margin-top: 2rem;
    font-size: 1.1rem;
    width: 45%;
}

.About-Us {
    display: inline-block;
}

.link6-k::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.link6-k:hover::before {
    left: 100%;
}

.link6-k:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #b466fa 0%, #8b2bd6 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.link6-k svg {
    transition: all 0.4s ease;
    fill: currentColor;
}

.link6-k .btnArrow-norm {
    opacity: 1;
}

.link6-k .btnArrow-hov {
    opacity: 0;
    transform: translateX(-10px);
}

.link6-k:hover .btnArrow-norm {
    opacity: 0;
    transform: translateX(10px);
}

.link6-k:hover .btnArrow-hov {
    opacity: 1;
    transform: translateX(0);
}

.comp6 .title6-k a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
    font-weight: 600 !important;
}

@media screen and (max-width: 1024px) {
    .comp6 {
        min-height: 600px;
    }
}

@media screen and (max-width: 768px) {
    .comp6 {
        min-height: 500px;
        padding: 10px;
    }
    
    .title6-k {
        font-size: 18px;
        width: 90%;
    }
    
    .link6-k {
        width: 100%;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .comp6 {
        min-height: 600px;
    }
    
    .comp6 .title6-k p {
        font-size: 0.95rem;
    }
}