/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #000000;
}

/* Logo styling */
.logo img {
    max-width: 100px; /* Set a maximum width for the logo */
    height: auto;
}


.header  {
    border-radius: 10px;
        padding: 10px 0;
    text-align: center;
    background-color: #333;
    color: #FFFFFF;
}

.footer {
  text-align: center;
    color: #000;
    padding: 10px 0;
}

/* Styles for Bootstrap buttons */
.btn-primary {
    background-color: #007BFF;
    border-color: #007BFF;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6C757D;
    border-color: #6C757D;
}

.btn-secondary:hover {
    background-color: #545b61;
    border-color: #545b61;
}

/* Responsive styles using Bootstrap classes */
.container {
    margin-top: 50px;
}

/* Navigation menu styling */
.nav-menu {

    padding: 10px 0;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Horizontally center the items */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: gray;
    font-weight: bold;
    margin: 0 20px;
    position: relative;
    transition: color 0.3s;
}


.nav-link:hover {
       color: black;
   
}

.nav-link:hover:before {
    transform: scaleX(1);
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
    }

    .nav-link {
        margin: 10px 0;
    }
}