/* --- Variables & Smoothness --- */
:root {
    --primary-color: #00AEEF;
    --primary-dark: #008ac0;
    --snow-white: #f0f8ff;
    --bg-color: #ffffff;
    --text-color: #2a2a2a;
    --text-light: #666666;
    --card-bg: #f8fdff;
    --nav-bg-transparent: rgba(255, 255, 255, 0);
    --nav-bg-solid: rgba(255, 255, 255, 0.98);
    --mobile-menu-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 15px 35px rgba(0, 174, 239, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
    --bg-color: #0a0a0a;
    --text-color: #f0f8ff;
    --text-light: #a0a0a0;
    --card-bg: #141414;
    --nav-bg-transparent: rgba(0, 0, 0, 0);
    --nav-bg-solid: rgba(10, 10, 10, 0.98);
    --mobile-menu-bg: rgba(20, 20, 20, 0.95);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.5);
    --shadow-md: 0 15px 35px rgba(0, 174, 239, 0.15);
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', 'Cairo', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-color); transition: background-color 0.5s ease, color 0.5s ease; line-height: 1.7; overflow-x: hidden; }

/* Animations */
@keyframes floatLogo { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } }
.logo-animate { animation: floatLogo 3s ease-in-out infinite; }
@keyframes smoothFloatImage { 0%, 100% { transform: translateY(0) scale(1); box-shadow: var(--shadow-md); } 50% { transform: translateY(-15px) scale(1.02); box-shadow: 0 25px 50px rgba(0, 174, 239, 0.2); } }
.about-img-smooth { width: 100%; max-width: 550px; height: auto; border-radius: 30px; animation: smoothFloatImage 6s ease-in-out infinite; }

/* --- Navigation & Fixed Layout --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.2rem 5%; 
    background: var(--nav-bg-transparent); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: var(--transition);
    direction: ltr !important; 
}

nav.scrolled { background: var(--nav-bg-solid); padding: 0.8rem 5%; box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.logo img { height: 50px; transition: var(--transition); }
nav.scrolled .logo img { height: 42px; }

/* Desktop Links */
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 2.5rem; 
}

html[dir="rtl"] .nav-links { flex-direction: row-reverse; }

.nav-links a { text-decoration: none; color: var(--text-color); font-weight: 700; font-size: 1.05rem; position: relative; padding: 5px 0; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; background-color: var(--primary-color); transition: width 0.3s ease; border-radius: 2px; }
html[dir="rtl"] .nav-links a::after { right: 0; left: auto; }
html[dir="ltr"] .nav-links a::after { left: 0; right: auto; }
.nav-links a:hover::after { width: 100%; }

.nav-right-side { display: flex; align-items: center; gap: 15px; }
.nav-controls { display: flex; align-items: center; gap: 15px; }

.lang-btn { background: transparent; border: 2px solid var(--text-color); color: var(--text-color); padding: 5px 12px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 0.9rem; transition: var(--transition); }
.lang-btn:hover { background: var(--text-color); color: var(--bg-color); }
.theme-toggle { cursor: pointer; font-size: 1.4rem; color: var(--text-color); background: none; border: none; transition: var(--transition); }
.theme-toggle:hover { transform: rotate(15deg) scale(1.1); color: var(--primary-color); }

/* --- Mobile Controls --- */
.mobile-header-controls {
    display: none; 
    align-items: center;
    gap: 15px;
}

.mobile-top-btn { font-size: 0.8rem; padding: 4px 10px; }
.theme-toggle.mobile-top-btn { font-size: 1.2rem; }

/* --- Improved Hamburger Animation --- */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.hamburger-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.hamburger-menu-btn.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger-menu-btn.active .bar:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger-menu-btn.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu-container {
    position: fixed;
    top: 75px; 
    width: 280px; 
    max-height: 75vh;
    background: var(--mobile-menu-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0, 174, 239, 0.1);
    z-index: 1001;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    right: 5%; 
    left: auto;
    transform-origin: top right;
}

.mobile-menu-container.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 15px; margin-bottom: 0; }
html[dir="rtl"] .mobile-nav-links { text-align: right; }
html[dir="ltr"] .mobile-nav-links { text-align: left; }

.mobile-link {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
}
.mobile-link:hover { background: rgba(0, 174, 239, 0.08); color: var(--primary-color); }
html[dir="rtl"] .mobile-link:hover { padding-right: 15px; }
html[dir="ltr"] .mobile-link:hover { padding-left: 15px; }

.mobile-menu-container::-webkit-scrollbar { width: 5px; }
.mobile-menu-container::-webkit-scrollbar-track { background: transparent; }
.mobile-menu-container::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

/* Sections */
header { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; background: radial-gradient(circle at top, rgba(0, 174, 239, 0.08) 0%, rgba(var(--bg-color),0) 70%), var(--bg-color); padding-top: 80px; }
.hero-content h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.3; margin-bottom: 1.5rem; }
.hero-content span:last-child { color: var(--primary-color); background: linear-gradient(90deg, var(--primary-color), #0077a3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.3rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 700px; margin-inline: auto; }

.cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 40px; background: linear-gradient(45deg, var(--primary-color), var(--primary-dark)); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 20px -5px rgba(0, 174, 239, 0.4); transition: var(--transition); position: relative; overflow: hidden; }
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 30px -10px rgba(0, 174, 239, 0.6); }
html[dir="ltr"] .arrow-icon { transform: rotate(180deg); }

section { padding: 6rem 10%; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 800; margin-bottom: 4rem; }
.section-title::after { content: ''; display: block; width: 70px; height: 5px; background: var(--primary-color); margin: 15px auto 0; border-radius: 10px; }

.roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.role-card { background: var(--card-bg); border: 2px solid transparent; border-radius: 15px; padding: 2rem 1.5rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.role-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.role-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; background: rgba(0, 174, 239, 0.1); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-inline: auto; }
.role-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; } 
.role-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; }
.role-btn { display: inline-block; padding: 8px 25px; background: var(--primary-color); color: #fff; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 0.95rem; transition: var(--transition); }
.role-btn.secondary { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.role-btn:hover { transform: scale(1.05); }
.role-btn.secondary:hover { background: var(--primary-color); color: #fff; }

.goals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.goal-card { background: var(--card-bg); padding: 2.5rem 1.5rem; border-radius: 20px; text-align: center; border: 1px solid rgba(0,0,0,0.03); box-shadow: var(--shadow-sm); transition: var(--transition); }
.goal-card:hover { transform: translateY(-10px); border-color: rgba(0, 174, 239, 0.3); box-shadow: var(--shadow-md); }
.icon-box { width: 75px; height: 75px; background: rgba(0, 174, 239, 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; transition: var(--transition); }
.goal-card:hover .icon-box { background: var(--primary-color); transform: scale(1.1) rotate(10deg); }
.goal-card i { font-size: 2.2rem; color: var(--primary-color); transition: var(--transition); }
.goal-card:hover i { color: #fff; }

.about-content { display: flex; align-items: center; gap: 4rem; }
.about-text { flex: 1; }
.about-image-container { flex: 1; display: flex; justify-content: center; align-items: center; }

.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; background: var(--card-bg); padding: 3rem; border-radius: 30px; box-shadow: var(--shadow-md); }
.contact-form i { transition: var(--transition); }
.contact-form:hover i { transform: rotate(-20deg) scale(1.2); }

.partners-container { display: flex; justify-content: center; align-items: center; padding: 2rem 0; gap: 30px; flex-wrap: wrap; }
.partner-box { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0, 174, 239, 0.1); transition: var(--transition); animation: smoothFloatImage 6s ease-in-out infinite; }
.partner-box:nth-child(2) { animation-delay: 2s; }
[data-theme="dark"] .partner-box { background: rgba(20, 20, 20, 0.6); border-color: rgba(255, 255, 255, 0.05); }
.partner-img { max-width: 200px; height: auto; transition: var(--transition); }
.partner-box:hover .partner-img { transform: scale(1.05); }
.partner-box:hover { box-shadow: 0 0 20px rgba(0, 174, 239, 0.2); border-color: var(--primary-color); }

.app-launch-section { padding: 6rem 10%; background: var(--bg-color); text-align: center; border-top: 1px solid rgba(0, 174, 239, 0.1); transition: var(--transition); position: relative; overflow: hidden; }
.app-launch-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: var(--primary-color); opacity: 0.03; filter: blur(80px); border-radius: 50%; z-index: 0; }
.launch-title { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 3.5rem; font-weight: 800; position: relative; z-index: 1; text-shadow: 0 5px 15px rgba(0, 174, 239, 0.15); }

.countdown-container { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
@keyframes pulse-ice { 0%, 100% { box-shadow: 0 5px 15px rgba(0, 174, 239, 0.05); border-color: rgba(0, 174, 239, 0.1); transform: translateY(0); } 50% { box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15); border-color: rgba(0, 174, 239, 0.3); transform: translateY(-3px); } }
.time-box { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); padding: 1.5rem 2rem; border-radius: 20px; border: 1px solid rgba(0, 174, 239, 0.1); display: flex; flex-direction: column; align-items: center; min-width: 110px; transition: var(--transition); animation: pulse-ice 4s ease-in-out infinite; }
.time-box:nth-child(1) { animation-delay: 0s; } .time-box:nth-child(2) { animation-delay: 1s; } .time-box:nth-child(3) { animation-delay: 2s; } .time-box:nth-child(4) { animation-delay: 3s; }
[data-theme="dark"] .time-box { background: rgba(20, 20, 20, 0.6); border-color: rgba(255, 255, 255, 0.05); }
.time-box span:first-child { font-size: 2.8rem; font-weight: 800; background: linear-gradient(180deg, var(--text-color) 0%, var(--primary-color) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; font-family: 'Poppins', sans-serif; }
.time-box .label { font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; font-weight: 600; }

.store-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
.store-btn { display: flex; align-items: center; background: transparent; border: 2px solid var(--primary-color); color: var(--text-color); padding: 10px 25px; border-radius: 50px; cursor: not-allowed; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); opacity: 0.5; text-decoration: none; min-width: 210px; position: relative; overflow: hidden; }
.store-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: var(--primary-color); transition: width 0.4s ease; z-index: -1; }
.store-btn:hover::before { width: 100%; }
.store-btn:hover { color: #fff; opacity: 1; box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3); transform: translateY(-3px); border-color: var(--primary-color); }
.store-btn i { font-size: 2rem; margin-right: 15px; margin-left: 5px; transition: var(--transition); }
html[dir="rtl"] .store-btn i { margin-right: 5px; margin-left: 15px; }
.btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.small-txt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.big-txt { font-size: 1.1rem; font-weight: 700; }

.dev-note-container { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-light); font-size: 0.95rem; opacity: 0.8; font-weight: 600; z-index: 1; position: relative; }
.dev-note-container i { color: var(--primary-color); animation: spin-slow 3s linear infinite; }
@keyframes spin-slow { 100% { transform: rotate(360deg); } }

.animate-hidden { opacity: 0; filter: blur(5px); transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); filter: blur(0); } .fade-up { transform: translateY(40px); }
.fade-right.show { opacity: 1; transform: translateX(0); filter: blur(0); } .fade-right { transform: translateX(50px); }
.fade-left.show { opacity: 1; transform: translateX(0); filter: blur(0); } .fade-left { transform: translateX(-50px); }
.fade-in-down { animation: fadeInDown 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; opacity: 0; animation-delay: var(--delay, 0s); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
footer { text-align: center; padding: 3rem; background: var(--card-bg); margin-top: 0; font-size: 0.9rem; color: var(--text-light); }
.social-links { display: flex; gap: 15px; align-items: center; margin-top: 25px; }
.social-icon { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--primary-color); color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); background-color: transparent; position: relative; overflow: hidden; }
.social-icon:hover { background-color: #f0f8ff; color: var(--primary-color); border-color: var(--primary-color); transform: translateY(-5px) scale(1.1); box-shadow: 0 0 20px rgba(0, 174, 239, 0.4), 0 0 10px rgba(0, 174, 239, 0.2); }

/* --- Subtitle Style --- */
.title-sub { display: block; font-size: 0.85em; font-weight: 600; color: var(--text-light); margin-top: 8px; }

/* --- Sticky Promo (Fixed Logic) --- */
.sticky-promo { position: fixed; bottom: 30px; right: 30px; background: var(--card-bg); backdrop-filter: blur(15px); border: 1px solid var(--primary-color); padding: 20px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 9999; max-width: 300px; text-align: center; transform: translateY(200%); opacity: 0; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease; }
[data-theme="dark"] .sticky-promo { background: rgba(20, 20, 20, 0.85); border-color: rgba(255, 255, 255, 0.1); }
.sticky-promo.show { transform: translateY(0); opacity: 1; }
.sticky-promo.hide { transform: translateY(20px); opacity: 0; pointer-events: none; }
.promo-content p { font-size: 0.95rem; font-weight: 700; margin-bottom: 15px; line-height: 1.5; color: var(--text-color); }
.promo-btn { display: inline-block; background: var(--primary-color); color: #fff; padding: 8px 20px; border-radius: 50px; text-decoration: none; font-size: 0.9rem; font-weight: bold; box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3); transition: all 0.3s ease; }
.promo-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 174, 239, 0.5); }

/* --- Top Notification Popup --- */
.top-notification { display: none; position: fixed; top: 100px; right: 15px; background: var(--card-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--primary-color); padding: 10px 15px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); z-index: 10002; transform: translateX(120%); opacity: 0; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); direction: ltr; width: auto; max-width: 260px; }
.top-notification.show { transform: translateX(0); opacity: 1; }
.notif-content { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--text-color); }
.notif-content i { color: var(--primary-color); font-size: 1.4rem; filter: drop-shadow(0 2px 4px rgba(0, 174, 239, 0.3)); }
.text-group { display: flex; align-items: center; gap: 8px; }
.text-group span { font-size: 0.8rem; font-weight: bold; line-height: 1.2; }
.top-install-btn { background: linear-gradient(45deg, var(--primary-color), var(--primary-dark)); color: #fff; border: none; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; cursor: pointer; box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3); white-space: nowrap; }
@keyframes shake-bell { 0% { transform: rotate(0); } 10%, 90% { transform: rotate(-25deg); } 20%, 80% { transform: rotate(25deg); } 30%, 50%, 70% { transform: rotate(-25deg); } 40%, 60% { transform: rotate(25deg); } 100% { transform: rotate(0); } }
.shake-icon { animation: shake-bell 2s infinite ease-in-out; }

/* --- iOS Modal --- */
.ios-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 10000; display: none; justify-content: center; align-items: flex-end; padding-bottom: 40px; }
.ios-modal.active { display: flex; }
.ios-content { background: var(--bg-color); width: 90%; max-width: 400px; border-radius: 20px; padding: 20px; text-align: center; position: relative; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.ios-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.ios-header img { width: 40px; border-radius: 8px; }
.ios-header h3 { font-size: 1.1rem; color: var(--text-color); }
#close-ios-modal { font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.ios-steps { text-align: right; line-height: 2; font-size: 0.95rem; color: var(--text-color); }
.ios-arrow-down { margin-top: 15px; color: var(--primary-color); font-size: 1.5rem; animation: bounce 2s infinite; }

/* --- Media Queries --- */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-header-controls { display: flex; }
    .hamburger-menu-btn { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-content { flex-direction: column; text-align: center; }
    .about-image-container { order: 2; margin-top: 30px; }
    .about-text { order: 1; }
    .social-links { justify-content: center; }
    .time-box { min-width: 70px; padding: 1rem 0.5rem; }
    .time-box span:first-child { font-size: 2rem; }
    .store-btn { width: 100%; justify-content: center; }
    
    /* Sticky Promo Adjustments for Mobile */
    .sticky-promo { 
        right: 20px;         
        left: auto;          
        bottom: 40px;        
        max-width: 280px;    
        padding: 15px;       
        border-radius: 15px;
    }
    .promo-content p { font-size: 0.9rem; line-height: 1.4; margin-bottom: 10px; }
    .promo-btn { padding: 8px 25px; font-size: 0.9rem; }

    /* Top Notification visible on Mobile */
    .top-notification { display: block; }
}

/* =========================================
   STYLE FOR THE NEW BUTTON (عيش التجربة)
   ========================================= */
.experience-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px; /* Space between grid and button */
}

.experience-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 50px;
    background: linear-gradient(45deg, #FF512F, #DD2476); /* Distinct gradient */
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(221, 36, 118, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

.experience-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(221, 36, 118, 0.6);
}

.experience-btn i {
    font-size: 1.4rem;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(221, 36, 118, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(221, 36, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(221, 36, 118, 0); }
}