body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.header {
    background: linear-gradient(to right, #006400, #FFD700);
    color: white;
    padding: 20px 0;
}

.logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-header {
    background: linear-gradient(to right, #006400, #FFD700) !important;
    color: white;
    border: none;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="url"], 
select, 
textarea {
    direction: rtl;
    text-align: right;
}

.landing-page {
    min-height: 00vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-card {
    background-color: rgba(255,255,255,0.9);
    border: 2px solid #006400;
}

.btn-primary {
    background: linear-gradient(to right, #006400, #FFD700);
    border: none;
    color: white;
    transition: all 0.3s ease;
}


.btn-primary:hover {
    background: linear-gradient(to right, #FFD700, #006400);
    transform: scale(1.05);
    color: white;
}

/* Additional styling for Mauritanian flag colors */
.mauritania-gradient-text {
    background: linear-gradient(to right, #006400, #FFD700);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* Ensure RTL support for Arabic text */
[dir="rtl"] {
    text-align: right;
}

/* New styles for landing page */
.navbar-logo {
    max-height: 50px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #006400;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FFD700;
}

.feature-box {
    border: 2px solid #006400;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box i {
    font-size: 3rem;
    color: #006400;
    margin-bottom: 15px;
}


/* Alignement des champs sur la même ligne */
.form-row-group {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-group > div {
    flex: 1;
}

.feature-box-hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e7e7e7;
}