:root {
    --bg-dark: #0a0b10;
    --neon-green: #39ff14;
    --text-white: #ffffff;
    --card-bg: #161b22;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    transition: direction 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #1a1c2c 0%, #0a0b10 100%);
}

.hero h1 {
    color: var(--neon-green);
    font-size: 3rem;
}

.trust-bar {
    background: var(--card-bg);
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid var(--neon-green);
    font-size: 0.9rem;
}

.paths {
    display: flex;
    justify-content: space-around;
    padding: 50px 5%;
    flex-wrap: wrap;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    margin: 10px;
    border: 1px solid #30363d;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
}

.btn-main {
    background: var(--neon-green);
    color: black;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

[dir="rtl"] .nav-links {
    margin-right: auto;
}

[dir="ltr"] .nav-links {
    margin-left: auto;
}

.lang-btn {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
}

.contact {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111420 100%);
}

.contact h2 {
    color: var(--neon-green);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#contact-form input,
#contact-form textarea {
    background: #0d1117;
    border: 1px solid #30363d;
    color: var(--text-white);
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--neon-green);
}

#contact-form textarea {
    height: 150px;
    resize: none;
}

#contact-form .btn-main {
    margin-top: 10px;
    align-self: center;
    width: 200px;
}
.trust-data {
    display: flex;
    justify-content: center;
    gap: 30;
    padding: 15px;
    background: #111420;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}

.trust-item {
    font-size: 0.85rem;
    color: #8b949e;
}

.trust-item strong {
    color: var(--neon-green);
    margin-left: 5px;
}

footer {
    padding: 40px 5%;
    background-color: #050608;
    border-top: 1px solid #30363d;
    text-align: center;
    color: #8b949e;
}

footer p {
    margin: 10px 0;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-socials a {
    color: var(--neon-green);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 0.7;
}
.footer-legal {
    margin-bottom: 15px;
}

.footer-legal a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}