/* IMPORTED FONT */
body, .custom-nav{
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

/* NAVIGATION BAR STYLES */
.custom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.1rem;
    font-size: calc(0.775rem + 0.5vw);
    /*font-size: calc(0.875rem + 0.5vw);*/
    /* SCALABLE FONT SIZE */
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 1001;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000; /* ENSURE NAV IS ABOVE OTHER CONTENT */
    background-color: #fff;
    border-top: 1px solid #ccc;
}

/* NAV ITEM STYLES */
.custom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: ;
    cursor: pointer;
    /*padding: 0.5rem;*/
    padding: 0.1rem;
    text-align: center;
}

/* LOGO STYLE */
.custom-nav .nav-logo {
    font-weight: bold;
    font-size: 0.1rem;
}

/* NAV LINKS */
.custom-nav .nav-link {
    text-decoration: none;
    color: #333; /* Default link color */
    transition: color 0.3s ease;
}

.custom-nav .nav-link i {
    font-size: 1rem; /* Icon size */
    margin-bottom: 0.25rem; /* Space below icons */
}

/* ACTIVE LINK COLOR */
.custom-nav .nav-link .active {
    color: #28a745; /* Green for active links */
}

  /* Contact Info */
.contact-info {
    margin-top: 60px;
    background-color: #f4f4f4;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* FOOTER STYLES */
body .custom-footer {
    font-family: sans-serif,helvetica,open-sans;
    font-size: 12px;
    text-align: center;
    padding: 1rem;
    padding-bottom: 5rem; /* Ensure footer is not overlapped */
    /*background-color: #006c5c;
    background :#006c5c;*/
    border-top: 1px solid #ddd;
    position: relative;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 500; /* LOWER THAN NAVS */
    color :#fff;
}

#textContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

#left, #right {
  width: 45%; /* Adjust width as needed */
}

#left ul, #right ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#left ul li, #right ul li {
  margin-bottom: 5px;
}

#left ul li a, #right ul li a {
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
}

#left ul li a:hover, #right ul li a:hover {
  text-decoration: underline;
}

#center {
  font-size: 14px;
  margin-top: 20px;
  color: #555;
  margin-bottom: 10px;
}


hr{
  border: none; /* Removes default border style */
    border-top: 2px solid coral; /* Sets a green color, adjust as needed */
    margin: 1rem 0; 
}
.info{
  padding: 1rem;
  border: solid turquoise 2px;
}

.container {
  min-height: 100vh;
  margin-top: 50px;
  margin-bottom: 50px;
}