/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;

}

h2 span {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.navbar-custom {
    background: linear-gradient(90deg, #171718, #024a93);
}


.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* Section styling */
#contact {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/Desig.png);
}

/* Container styling */
#contact .container {
    max-width: 800px;
    background-color: linear-gradient(135deg, #4684c2, #2f6dca); /* Gray gradient */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top:120px ;
}

/* Heading styling */
.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
}

/* Form label styling */
.form-label {
    font-weight: bold;
    color: #333333;
}

/* Form input styling */
.form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    background-color: #f8f9fa;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

/* Button styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    color: white;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Char counter */
.char-counter {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

/* Text error styling */
.text-danger {
    color: #dc3545;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #contact .container {
        padding: 10px;
    }
    .section-title {
        font-size: 28px;
    }
}
#btn[type="submit"] {
    background-color: #024a93; /* Appliquer la couleur souhaitée */
    color: #fff; /* Couleur du texte en blanc pour un bon contraste */
    border: none; /* Retirer les bordures */
    padding: 10px 20px; /* Ajuster le padding pour un aspect plus professionnel */
    border-radius: 5px; /* Coins légèrement arrondis */
    font-size: 1.2rem; /* Taille de la police */
    cursor: pointer; /* Afficher un curseur de pointeur pour indiquer qu'il est cliquable */
    transition: background-color 0.3s ease; /* Animation douce lors du changement de couleur */
}

.footer {
    background: linear-gradient(90deg, #004080, #1e3853); /* Dégradé bleu */
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.footer i {
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

.footer i:hover {
    color: #007bff;
}

.bold-text {
    font-weight: bold;
}
