body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #121212;
    color: #fff;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    transition: top 0.3s ease-in-out;
    z-index: 1000;
}

header.hidden {
    top: -100px; /* Cache la barre en la déplaçant vers le haut */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00bfff;
}

#theme-toggle {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 1rem;
}

#theme-toggle:hover {
    background-color: rgba(0, 0, 255, 0.2);
}

section {
    padding: 2rem;
    margin: 2rem 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
    transition: background-color 0.3s, color 0.3s;
    opacity: 0;
}

section.visible {
    opacity: 1;
}

section.dark-mode {
    background-color: #1f1f1f;
    color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: static; /* ou relative, selon le contexte */
    width: 100%;
    bottom: 0;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: url('images/futuristic-computer.jpg') no-repeat center center/cover;
}

.hero-content {
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00bfff;
    animation: fadeInDown 1s ease-in-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    animation: fadeInUp 1s ease-in-out;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #00bfff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    animation: fadeInUp 1s ease-in-out;
}

.btn:hover {
    background-color: #009fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-effect {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #00bfff;
}

.presentation-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.block {
    width: 30%;
    height: 200px;
    perspective: 1000px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.block:hover {
    transform: rotateY(180deg);
}

.block-front, .block-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.block-front {
    background-color: #00bfff;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.block-back {
    background-color: #fff;
    color: #333;
    transform: rotateY(180deg);
    padding: 1rem;
}

.formation-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.option {
    width: 45%;
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
}

.option p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.option .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00bfff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.option .btn:hover {
    background-color: #009fff;
}

.project-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.project-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Dark Mode Adjustments */
body.dark-mode .modal-content {
    background-color: #1f1f1f;
    color: #fff;
}

body.dark-mode .close {
    color: #ddd;
}

body.dark-mode .close:hover,
body.dark-mode .close:focus {
    color: #fff;
}

.entreprise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.entreprise-header {
    display: flex;
    justify-content: center; /* Centrer les conteneurs au milieu */
    align-items: center;
    gap: 20px; /* Espacement entre les conteneurs */
}

.logo-container {
    width: 200px; /* Ajustez cette valeur selon vos besoins */
    height: 100px; /* Ajustez cette valeur selon vos besoins */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Pour s'assurer que les images ne débordent pas */
    background-color: #fff; /* Couleur de fond pour les conteneurs */
    border: 1px solid #fff; /* Bordure pour les conteneurs */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombre pour les conteneurs */
}

.logo-container .logo {
    max-width: 100%;
    max-height: 100%;
}

.entreprise-header img:hover {
    transform: scale(1.1);
}

.entreprise-description {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
}

.details-row {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.detail {
    width: 45%;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.detail:hover {
    transform: translateY(-10px);
}

.detail h3, .detail h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
}

.detail p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.detail ul {
    list-style: none;
    padding: 0;
}

.detail ul li {
    margin-bottom: 0.5rem;
}

.parcours-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.parcours-left, .parcours-right {
    width: 48%;
}

.parcours-link {
    text-decoration: none;
    color: inherit;
}

.parcours-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.parcours-item.dark-mode {
    background-color: #333;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.parcours-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.parcours-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
}

.parcours-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.parcours-item.dark-mode p {
    color: #ccc;
}

.parcours-stages {
    display: flex;
    flex-direction: column;
}

.stage {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.stage.dark-mode {
    background-color: #444;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.stage:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.stage h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #00bfff;
}

.stage p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.stage.dark-mode p {
    color: #ccc;
}

.competences-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.competence-category {
    width: 100%;
    margin-bottom: 2rem;
}

.competence-category h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00bfff;
    text-align: center;
}

.competence-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.competence-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px;
    text-align: center;
    cursor: pointer;
}

.competence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.competence-item i {
    font-size: 2rem;
    color: #00bfff;
    margin-bottom: 1rem;
}

.competence-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.competence-progress {
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.competence-bar {
    height: 20px;
    background-color: #ddd;
    border-radius: 8px;
    position: relative;
}

.competence-level {
    height: 100%;
    background-color: #00bfff;
    border-radius: 8px;
    width: 0;
    transition: width 1s;
}

.competence-details {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.competence-detail {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.competence-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
}

.competence-details p {
    font-size: 1rem;
    margin-top: 1rem;
    color: #333;
}

.competences-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.competences-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.competence-category {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    transition: opacity 0.5s;
}

.competence-category h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00bfff;
    text-align: center;
}

#left-arrow, #right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

#left-arrow {
    left: 10px;
}

#right-arrow {
    right: 10px;
}

.competence-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px;
    text-align: center;
    cursor: pointer;
}

.competence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .competence-item p {
    color: #000; /* Assurez-vous que le texte est noir */
}

.competence-item img {
    width: 50px; /* Ajustez la taille selon vos besoins */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Ajoutez un espace sous l'image */
}

#diplomes {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.diplome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diplome-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #0056b3;
}

.diplome-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.diplome-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
    cursor: pointer;
}

.diplome-item:hover {
    transform: scale(1.05);
}

.diplome-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.diplome-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

/* Styles pour le modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Styles pour le mode sombre */
.dark-mode #diplomes {
    background-color: #1e1e1e;
    color: #fff;
}

.dark-mode .filter-btn {
    background-color: #333;
    color: #fff;
}

.dark-mode .filter-btn.active,
.dark-mode .filter-btn:hover {
    background-color: #555;
}

.dark-mode .diplome-item {
    background-color: #333;
    border-color: #555;
    color: #fff;
}

.dark-mode .diplome-item p {
    color: #fff;
}

.dark-mode .modal {
    background-color: rgba(0, 0, 0, 0.9);
}

#projet {
    padding: 2rem;
    margin: 2rem 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
    transition: background-color 0.3s, color 0.3s;
}

#projet.dark-mode {
    background-color: #1f1f1f;
    color: #fff;
}

.project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
}

.project-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 1rem;
    width: 300px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.project-image img {
    width: 100px; /* Ajustez selon vos besoins */
    height: auto;
    border-radius: 8px 0 0 8px;
    transition: transform 0.3s;
    margin-right: 1rem; /* Espacement entre l'image et le texte */
}

.project-image img:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 1rem;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00bfff;
}

.project-content p {
    font-size: 1rem;
    color: #333;
    margin: 0; /* Enlever les marges par défaut */
}

.documentation-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.doc-item {
    display: flex;
    text-decoration: none; /* Remove underline from link */
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    width: 100%;
    margin-top: 2rem;
}

.doc-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.doc-item img {
    width: 200px; /* Ajustez la taille selon vos besoins */
    height: auto;
    border-radius: 8px;
    margin-right: 20rem; /* Espacement entre l'image et le texte */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.doc-item .doc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.doc-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
    text-align: center;
}

.doc-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.doc-item .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00bfff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
    text-align: center;
}

.doc-item .btn:hover {
    background-color: #009fff;
}

/* Mode sombre */
body.dark-mode #documentation {
    background-color: #1f1f1f;
    color: #fff;
}

body.dark-mode .doc-item {
    background-color: #fff;
    color: #e0e0e0;
}

body.dark-mode .doc-item .btn {
    background-color: #009fff;
    color: #fff;
}

/* Veille Technologique Section */
.veille-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.veille-item {
    display: flex;
    text-decoration: none; /* Remove underline from link */
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
    width: 100%;
    margin-top: 2rem;
    cursor: pointer;
}

.veille-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.veille-item img {
    width: 200px; /* Ajustez la taille selon vos besoins */
    height: auto;
    border-radius: 8px;
    margin-right: 20rem; /* Espacement entre l'image et le texte */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.veille-item .veille-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.veille-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
    text-align: center;
}

.veille-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.veille-item .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00bfff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
    text-align: center;
}

.veille-item .btn:hover {
    background-color: #009fff;
}

/* Mode sombre */
body.dark-mode #veille {
    background-color: #1f1f1f;
    color: #fff;
}

body.dark-mode .veille-item {
    background-color: #fff;
    color: #e0e0e0;
}

body.dark-mode .veille-item .btn {
    background-color: #009fff;
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 2rem;
    margin: 2rem 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
    transition: background-color 0.3s, color 0.3s;
}

.contact-section.dark-mode {
    background-color: #1f1f1f;
    color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.contact-details-form {
    flex: 1 1 calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-photo {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-photo img:hover {
    transform: scale(1.1);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bfff;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-details p a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed;
    transition: color 0.3s;
}

.contact-details p a:hover {
    color: #00bfff;
}

/* Dark Mode Adjustments */
.contact-section.dark-mode .contact-details p,
.contact-section.dark-mode .contact-form label {
    color: #e0e0e0;
}

.social-media {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.social-media a {
    margin-right: 0.5rem;
    color: #00bfff;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #009fff;
}

.contact-form {
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
}

/* Dark Mode Adjustments for Inputs */
.contact-section.dark-mode .contact-form input,
.contact-section.dark-mode .contact-form textarea {
    background-color: #333;
    color: #e0e0e0;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #00bfff;
}

.contact-form button {
    padding: 0.5rem 1rem;
    background-color: #00bfff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #009fff;
}

#map {
    flex: 1 1 calc(50% - 2rem);
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#map:hover {
    transform: scale(1.05);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#copyright-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font-size: inherit;
    margin-right: 0.5rem;
}

#copyright-link:hover {
    color: #00bfff;
}
