    * {
        font-family: 'Tajawal', sans-serif;
    }

    /* Added 3D flip card animation styles */
    .flip-card {
        background-color: transparent;
        width: 100%;
        height: 300px;
        perspective: 1000px;
        cursor: pointer;
        border-radius:20px;
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        border-radius:20px;
    }

    .flip-card-inner.flipped {
        transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 1rem;
        padding: 2rem;
        border-radius:20px;
    }

    .flip-card-front {
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
        border: 0px solid;
        color: black;
    }

    .flip-card-back {
        background: linear-gradient(135deg, #f7f7f7, #fefefe);
        transform: rotateY(180deg);
    }

    .hero-bg {
        background: linear-gradient(135deg, rgba(75, 85, 120, 0.7), rgba(100, 50, 80, 0.7)), 
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="water" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,40 50,50 T100,50" stroke="rgba(200,200,200,0.1)" fill="none"/></pattern></defs><rect fill="%236B5B95" width="1200" height="600"/><use href="%23water" y="0"/><use href="%23water" y="50"/><use href="%23water" y="100"/></svg>');
        background-size: cover;
        background-position: center;
    }

    .experience-badge {
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    /* Added smooth pulse animation for badges */
    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.2); }
        50% { box-shadow: 0 0 30px rgba(255, 165, 0, 0.8), 0 10px 40px rgba(0, 0, 0, 0.3); }
    }

    .experience-badge {
        animation: float 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
    }

    .service-card {
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Added smooth scale and lift animation for feature cards */
    .feature-card {
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(255, 165, 0, 0.15);
    }

    /* Added shine effect animation */
    .feature-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    /* Added smooth rotation animation for country cards */
    .country-card {
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
    }

    .country-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .country-card:hover::before {
        opacity: 1;
    }

    .country-card:hover {
        transform: translateY(-8px) rotateY(5deg) scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .country-card:hover .order-btn {
        background-color: white;
        color: inherit;
        transform: scale(1.05);
    }

    .order-btn {
        transition: all 0.3s ease;
    }

    .distinguish-number {
        font-size: 3rem;
        font-weight: 700;
        color: #FFA500;
        animation: number-bounce 2s ease-in-out infinite;
    }

    @keyframes number-bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    .faq-content {
        display: none;
        max-height: 0;
        overflow: hidden;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .faq-content.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    /* Added rotating services grid animation */
    .service-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .service-item:nth-child(1) { animation-delay: 0.1s; }
    .service-item:nth-child(2) { animation-delay: 0.2s; }
    .service-item:nth-child(3) { animation-delay: 0.3s; }
    .service-item:nth-child(4) { animation-delay: 0.4s; }
    .service-item:nth-child(5) { animation-delay: 0.5s; }
    .service-item:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-item:hover {
        transform: translateY(-10px) scale(1.05);
}