/* why choose us*/

/* ===============================
WHY CHOOSE US STYLE
=============================== */

.why-choose-us-area {
    
    color: #fff;
    overflow: hidden;
}

.highlight-text {
    color: var(--color-primary);
}

/* CARD */
.why-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    transition: all .4s ease;
    backdrop-filter: blur(6px);
    position: relative;
}

/* ICON */
.why-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--color-secondary);
    transition: .4s;
}

/* TITLE */
.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* DESC */
.why-card p {
    font-size: 15px;
    opacity: .85;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.why-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

/* CTA */
.why-cta {
    animation: fadeUp 1.2s ease forwards;
}

/* ===============================
ANIMATION
=============================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FLOATING BG EFFECT */
.why-choose-us-area::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(255,183,3,.15),
        transparent);
    top: -200px;
    right: -200px;
    animation: floatBg 10s infinite linear;
}

@keyframes floatBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}