:root {
    --jaune-senegal: #FFC107;
    --vert-senegal: #198754;
    --noir: #000000;
    --blanc: #FFFFFF;
    --gris-fonce: #1a1a2e;
    --gris-moyen: #16213e;
}

/* Validation Formulaire */
.form-group { position: relative; margin-bottom: 2rem !important; }

.char-counter { 
    font-size: 0.7rem; 
    color: #888; 
    position: absolute; 
    right: 10px; 
    bottom: -18px; 
    font-weight: 600; 
}

.validation-feedback { 
    font-size: 0.7rem; 
    position: absolute; 
    left: 10px; 
    bottom: -18px; 
    display: none; 
}

/* Affichage auto via les classes d'état de Symfony/Bootstrap */
.form-control.is-invalid ~ .validation-feedback { display: block; color: #dc3545; }
.form-control.is-valid { border-color: #28a745 !important; }
.form-control.is-invalid { border-color: #dc3545 !important; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--noir);
    background: var(--blanc);
}

/* Navbar */
.navbar-custom {
    padding: 1rem 2rem;
    transition: all 0.4s ease;
    background: var(--gris-fonce) !important;
    z-index: 1030;
}

.navbar-custom.scrolled {
    background: rgba(26, 26, 46, 0.98) !important;
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--jaune-senegal) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}



.nav-link:hover {
    color: var(--jaune-senegal) !important;
}

.btn-auth {
    border: 2px solid var(--jaune-senegal);
    color: var(--jaune-senegal) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: var(--jaune-senegal);
    color: var(--noir) !important;
    transform: translateY(-2px);
}

/* Hero Section Parallax */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="sky" x1="0%25" y1="0%25" x2="0%25" y2="100%25"><stop offset="0%25" style="stop-color:%23FF6B35"/><stop offset="50%25" style="stop-color:%23F7931E"/><stop offset="100%25" style="stop-color:%23FFC107"/></linearGradient></defs><rect fill="url(%23sky)" width="1200" height="800"/><g fill="%231a1a2e"><rect x="50" y="400" width="80" height="400" rx="2"/><rect x="60" y="350" width="60" height="50"/><rect x="150" y="300" width="120" height="500" rx="2"/><rect x="160" y="320" width="30" height="40" fill="%23FFC107" opacity="0.8"/><rect x="200" y="320" width="30" height="40" fill="%23FFC107" opacity="0.6"/><rect x="160" y="380" width="30" height="40" fill="%23FFC107" opacity="0.7"/><rect x="200" y="380" width="30" height="40" fill="%23FFC107" opacity="0.5"/><rect x="300" y="450" width="100" height="350" rx="2"/><rect x="420" y="350" width="150" height="450" rx="2"/><rect x="440" y="370" width="35" height="50" fill="%23FFC107" opacity="0.6"/><rect x="490" y="370" width="35" height="50" fill="%23FFC107" opacity="0.8"/><rect x="540" y="370" width="35" height="50" fill="%23FFC107" opacity="0.5"/><rect x="600" y="250" width="180" height="550" rx="3"/><rect x="620" y="280" width="40" height="60" fill="%23FFC107" opacity="0.7"/><rect x="680" y="280" width="40" height="60" fill="%23FFC107" opacity="0.9"/><rect x="740" y="280" width="40" height="60" fill="%23FFC107" opacity="0.6"/><rect x="620" y="360" width="40" height="60" fill="%23FFC107" opacity="0.5"/><rect x="680" y="360" width="40" height="60" fill="%23FFC107" opacity="0.8"/><rect x="800" y="380" width="90" height="420" rx="2"/><rect x="910" y="320" width="130" height="480" rx="2"/><rect x="930" y="350" width="30" height="45" fill="%23FFC107" opacity="0.7"/><rect x="975" y="350" width="30" height="45" fill="%23FFC107" opacity="0.6"/><rect x="1060" y="420" width="100" height="380" rx="2"/><ellipse cx="100" cy="600" rx="200" ry="15" fill="%23198754" opacity="0.3"/><ellipse cx="600" cy="650" rx="300" ry="20" fill="%23198754" opacity="0.2"/></g><circle cx="150" cy="100" r="60" fill="%23FFC107" opacity="0.9"/><g fill="white" opacity="0.8"><ellipse cx="900" cy="150" rx="80" ry="30"/><ellipse cx="950" cy="140" rx="60" ry="25"/><ellipse cx="850" cy="160" rx="50" ry="20"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--blanc);
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--vert-senegal);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.2;
}

.hero-title span {
    color: var(--jaune-senegal);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: var(--jaune-senegal);
    color: var(--noir);
    border: none;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
}

.btn-hero-primary:hover {
    background: #e0a800;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.5);
    color: var(--noir);
    text-decoration: none;
}

.btn-hero-outline {
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--blanc);
}

.btn-hero-outline:hover {
    background: var(--blanc);
    color: var(--noir);
    transform: translateY(-5px);
    text-decoration: none;
}

/* Floating elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--jaune-senegal);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: var(--vert-senegal);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: var(--blanc);
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--blanc);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(25, 135, 84, 0.1);
    color: var(--vert-senegal);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gris-fonce);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: var(--blanc);
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--jaune-senegal) 0%, #e0a800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--noir);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gris-fonce);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Parallax Middle Section */
.parallax-middle {
    height: 500px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.9) 0%, rgba(0, 100, 50, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><path d="M400 50 L750 300 L650 550 L150 550 L50 300 Z" fill="%23FFC107" opacity="0.3"/><path d="M400 100 L700 320 L620 520 L180 520 L100 320 Z" fill="none" stroke="%23FFC107" stroke-width="3" opacity="0.5"/><circle cx="400" cy="300" r="8" fill="%23FFC107"/><text x="400" y="330" text-anchor="middle" fill="%23FFC107" font-size="14" font-family="Arial" opacity="0.8">Dakar</text><circle cx="300" cy="350" r="5" fill="%23fff" opacity="0.6"/><circle cx="500" cy="280" r="5" fill="%23fff" opacity="0.6"/><circle cx="350" cy="420" r="5" fill="%23fff" opacity="0.6"/><circle cx="480" cy="380" r="5" fill="%23fff" opacity="0.6"/><circle cx="250" cy="300" r="4" fill="%23fff" opacity="0.4"/><circle cx="550" cy="350" r="4" fill="%23fff" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-content {
    text-align: center;
    color: var(--blanc);
    padding: 0 20px;
    max-width: 800px;
    z-index: 2;
}

.parallax-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

.parallax-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.category-card {
    background: var(--blanc);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--jaune-senegal), var(--vert-senegal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(25, 135, 84, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: var(--jaune-senegal);
    transform: rotate(-5deg) scale(1.1);
}

.category-icon i {
    font-size: 2.2rem;
    color: var(--vert-senegal);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon i {
    color: var(--noir);
}

.category-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gris-fonce);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 0.9rem;
    color: #888;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--blanc);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--jaune-senegal), var(--vert-senegal));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--blanc);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--jaune-senegal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--noir);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gris-fonce);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gris-fonce) 0%, var(--gris-moyen) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--jaune-senegal);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--jaune-senegal);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: var(--blanc);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(25, 135, 84, 0.1) 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    color: var(--gris-fonce);
    margin-bottom: 10px;
    display: block;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--jaune-senegal);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--jaune-senegal) 0%, #e0a800 100%);
    color: var(--noir);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    color: var(--noir);
}

.contact-info {
    padding: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--blanc);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--jaune-senegal) 0%, #e0a800 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--noir);
}

.contact-info-text h5 {
    font-weight: 700;
    color: var(--gris-fonce);
    margin-bottom: 5px;
}

.contact-info-text p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--gris-fonce);
    padding: 80px 0 30px;
    color: var(--blanc);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--jaune-senegal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    font-size: 2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blanc);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--jaune-senegal);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--jaune-senegal);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--jaune-senegal);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 1.2rem;
    color: var(--blanc);
    transition: all 0.3s ease;
}

.social-link:hover i {
    color: var(--noir);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: var(--jaune-senegal);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .parallax-middle {
        height: 400px;
    }

    .parallax-content h2 {
        font-size: 1.8rem;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--jaune-senegal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

.scroll-top i {
    font-size: 1.2rem;
    color: var(--noir);
}

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--vert-senegal);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(200%);
    transition: transform 0.4s ease;
    z-index: 1000;
}

.toast-notification.show {
    transform: translateX(0);
}

body {
    box-sizing: border-box;
}