/* 
  Floating shapes animation inspired by Emadamerho Nefe (https://codepen.io/nefejames/pen/JoPPBxK)
  Hover text scaling effect inspired by Olivia Ng (https://codepen.io/oliviale/pen/YgzNzK)
*/

#intro-about-us .concept-two {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    padding: 0 4vw;
    z-index: 1;
}

#intro-about-us .concept-two.weare {
    padding: 0 3vw !important;
}

#intro-about-us .concept-two .hover {
    display: grid;
    place-items: center;
    cursor: pointer;
}

#intro-about-us .concept-two span {
    font: 900 clamp(3rem, 12vw, 9rem) 'Unbounded', cursive, sans-serif;
    color: #fff;
    -webkit-text-stroke: 4px #b91c1f;
    paint-order: stroke fill;
    /* đỏ đậm */
    text-shadow: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#intro-about-us .concept-two .hover:hover span {
    transform: scale(1.5);
    color: #b91c1f;
    background: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

#intro-about-us .concept-two.weare span {
    color: #b91c1c;
    font-weight: 900;
    -webkit-text-stroke: 2px #b91c1f;
    background: none;
    text-shadow: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#intro-about-us .concept-two.weare .hover:hover span {
    transform: scale(1.18);
    color: #b91c1c;
    background: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

#intro-about-us .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Để chuột không bị vướng khi hover/click */
}

#intro-about-us .shape {
    position: absolute;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
    /* Tự trôi bằng animation keyframes */
}

#intro-about-us .shape:nth-child(1) {
    top: 8%;
    left: 12%;
    width: 85px;
    height: 85px;
    background: #FEDEDF;
    border-radius: 32% 68% 58% 42% / 38% 46% 54% 62%;
    animation-delay: 0s;
}

#intro-about-us .shape:nth-child(2) {
    top: 25%;
    left: 68%;
    width: 80px;
    height: 50px;
    background: #FEDEDF;
    border-radius: 50% 40% 60% 50% / 55% 45% 55% 45%;
    animation-delay: 1.5s;
}

#intro-about-us .shape:nth-child(3) {
    top: 55%;
    left: 12%;
    width: 70px;
    height: 70px;
    background: #D71515;
    border-radius: 48% 52% 50% 50% / 55% 45% 45% 55%;
    animation-delay: 3s;
}

#intro-about-us .shape:nth-child(4) {
    top: 60%;
    left: 75%;
    width: 110px;
    height: 130px;
    background: #FC303C;
    border-radius: 60% 40% 65% 35% / 50% 60% 40% 50%;
    animation-delay: 4.5s;
}

#intro-about-us .shape:nth-child(5) {
    top: 15%;
    left: 85%;
    width: 55px;
    height: 55px;
    background: #D1090B;
    border-radius: 42% 58% 38% 62% / 48% 52% 52% 48%;
    animation-delay: 6s;
}

#intro-about-us .shape:nth-child(6) {
    top: 10%;
    left: 32%;
    width: 80px;
    height: 80px;
    background: #FC303C;
    border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}