/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --light-gold: #F4E5C0;
    --dark-black: #0a0a0a;
    --medium-black: #1a1a1a;
    --light-black: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    
    /* Shadows */
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.3);
    --shadow-gold-strong: 0 0 60px rgba(212, 175, 55, 0.5);
    --shadow-dark: 0 10px 50px rgba(0, 0, 0, 0.5);
    
    /* Fonts */
    --font-main: 'Cairo', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Particles Background
   =========================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-gold);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-gold-strong);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

.animate-scale-up {
    animation: scaleUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--dark-black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-gold);
    animation: glow 2s ease-in-out infinite;
}

.badge i {
    font-size: 1.2rem;
}

.main-title {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.main-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 10px;
    position: relative;
}

.main-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--dark-black);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold-strong);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(-5px);
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-path {
    fill: var(--medium-black);
    animation: wave-animation 10s ease-in-out infinite;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25px);
    }
}

/* ===========================
   Topics Section
   =========================== */
.topics-section {
    position: relative;
    padding: 100px 0;
    background: var(--medium-black);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-black);
    box-shadow: var(--shadow-gold);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.topic-card {
    position: relative;
    background: var(--light-black);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.topic-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.topic-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-black);
    margin-bottom: 25px;
    box-shadow: var(--shadow-gold);
    transition: transform 0.4s ease;
}

.topic-card:hover .topic-icon {
    transform: scale(1.1) rotate(5deg);
}

.topic-content {
    position: relative;
    z-index: 1;
}

.topic-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.topic-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.topic-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    z-index: 0;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits-section {
    position: relative;
    padding: 100px 0;
    background: var(--dark-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--medium-black);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    border: 2px solid var(--light-black);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-overlay);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.benefit-card:hover::before {
    width: 500px;
    height: 500px;
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-gold);
}

.benefit-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-black);
    box-shadow: var(--shadow-gold);
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotateY(360deg);
}

.benefit-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.benefit-card p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===========================
   Features Section
   =========================== */
.features-section {
    padding: 80px 0;
    background: var(--medium-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-black);
    padding: 25px 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(-5px);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.2);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* ===========================
   Registration Section
   =========================== */
.registration-section {
    position: relative;
    padding: 100px 0;
    background: var(--dark-black);
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.registration-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.registration-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pulse-dot {
    width: 15px;
    height: 15px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.registration-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Countdown Timer */
.countdown-timer {
    background: var(--medium-black);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.countdown-label {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-box {
    background: var(--light-black);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--medium-black);
    padding: 20px 30px;
    border-radius: 15px;
}

.avatar-group {
    display: flex;
    margin-left: -10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--medium-black);
    background: var(--gradient-gold);
    margin-left: -15px;
}

.social-proof p {
    color: var(--text-gray);
    font-size: 1rem;
}

.social-proof strong {
    color: var(--primary-gold);
}

/* Registration Form */
.registration-form-wrapper {
    background: var(--medium-black);
    border-radius: 25px;
    padding: 50px;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-group label i {
    color: var(--primary-gold);
}

.form-group input {
    padding: 18px 20px;
    border: 2px solid var(--light-black);
    border-radius: 12px;
    background: var(--light-black);
    color: var(--text-white);
    font-size: 1.05rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
    color: #666;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--dark-black);
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-gold);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 100px 0;
    background: var(--medium-black);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-black);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-black);
    padding: 60px 0 30px;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-content > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--medium-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.3rem;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--dark-black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding-top: 30px;
    border-top: 1px solid var(--light-black);
}

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--medium-black);
    border-radius: 25px;
    padding: 50px;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold-strong);
    animation: scaleUp 0.5s ease;
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3.5rem;
    color: var(--dark-black);
    animation: pulse 2s ease-in-out infinite;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.modal-button {
    background: var(--gradient-gold);
    color: var(--dark-black);
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===========================
   AOS Animations
   =========================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .stats {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-boxes {
        gap: 10px;
    }
    
    .countdown-box {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .registration-form-wrapper {
        padding: 30px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 35px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .topic-card {
        padding: 30px 25px;
    }
    
    .registration-title {
        font-size: 2rem;
    }

    #whats-grp{
        font-size: 15px;
    }

    .countdown-box {
        padding: 10px;
        min-width: 50px;
    }
}

/* ===========================
   Whats Button
   =========================== */
   .whatsapp_direct_btn {
		position: fixed;
		bottom: 30px;
		right: 25px;
		width: 50px;
		height: 50px;
		background-color: var(--primary-gold);
		z-index: 99999;
		border-radius: 100%;
		text-align: center;
		padding: 0;
	}

	.whatsapp_direct_btn a {
		float: left;
		width: 100%;
		height: 100%;
		border-radius: 100%;
		padding: 5px;
	}

	.whatsapp_direct_btn a::before {
		content: "";
		position: absolute;
		inset: 0;
		border: 1px solid #fff;
		border-radius: 50%;
		animation-name: pulse;
		animation-duration: 2s;
		animation-timing-function: linear;
		animation-iteration-count: infinite;
		box-shadow: 0 0 10px 2px var(--secondary-gold);
		-webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
		-moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
		-ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
		animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	}

	.whatsapp_direct_btn a span {
		font-size: 40px;
		color: #fff;
	}

    .whatsappBtn span{
        /*margin-right: 9px;*/
    }


	@keyframes pulse {
		0% {
			transform: scale(1);
		}
		50% {
			transform: scale(1.2);
		}
		100% {
			transform: scale(1);
		}
	}