.header {
    --background-color: #242424;
    --default-color: #ffffff;
    --default-color-rgb: 255, 255, 255;
    --heading-color: #ffffff;
    --heading-color-rgb: 255, 255, 255;
    --contrast-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
  }
  
  .header .topbar {
    background-color: var(--background-color);
    height: 35px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
  }
  
  .home-button {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
    box-shadow: 1px 1px 1px #bebebe, -1px -1px 1px #ffffff;
  }
  
  .header .topbar {
    font-style: normal;
    color: var(--accent-color);
  }
  
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--default-color);
  }
  
  @media (max-width: 575px) {
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
      font-size: 13px;
    }
  }
  
  .header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
  .header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    /* text-decoration: underline; */
  }
  
  .header .topbar .social-links a {
    color: rgba(var(--default-color-rgb), 0.6);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
  }
  
  .header .topbar .social-links a:hover {
    color: var(--accent-color);
  }
  
  .header .branding {
    background-color: rgba(var(--default-color-rgb), 0.05);
    height: 80px; 
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 0 20px; 
  }
  
  .header .logo {
    line-height: 0.5;
    display: flex;
    align-items: center; 
  }
  
  .header .logo img {
    max-height: 45px; 
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading-color);
  }
  
  .neumorphic-btn {
    background-color: #e0e5ec;
    border: none;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 3px 3px 6px #bebebe,
                -3px -3px 6px #ffffff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .neumorphic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 6px #bebebe,
                -3px -3px 6px #ffffff;
  }
  
  .neumorphism {
    background: #242424;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 10px 10px 20px #bebebe, -3px -3px 6px #ffffff;
    transition: all 0.3s ease;
  }
  
  .neumorphism:hover {
    box-shadow: 5px 5px 10px #bebebe, -3px -3px 6px #ffffff;
  }
  

.footer {
  background: #242424; 
  padding: 30px 0;
  text-align: center; 
  margin-top: 60px;
}

.footer a {
  color: #333; 
  text-decoration: none; 
}


.footer-links {
  text-align: left; 
  margin-bottom: 20px; 
}

.useful-links-heading {
  color: #fff; 
  font-size: 20px; 
  margin-bottom: 15px; 
}

/* Additional styling for the ul and li to ensure proper alignment */
.footer-links ul {
  list-style: none; 
  padding: 0; 
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px; 
}

.footer-links ul li a {
  color: #fff; 
}


.useful-links-heading {
  color: white;
}
body {
  background: #e0e5ec;
  font-family: 'Arial', sans-serif;
}

.container-fluid {
  background: #e0e5ec;
  border-radius: 5px;
  /* box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #ffffff; */
  
}

.neo-input, .neo-select, .neo-button {
  border-radius: 12px;
  padding: 10px;
  font-size: 14px;
  background: #e0e5ec;
  box-shadow: inset -5px -5px 5px #ffffff;
}

.neo-input:focus, .neo-select:focus, .neo-button:focus {
  outline: none;
}

.neo-button {
  color: #333;
  cursor: pointer;
}

.neo-button:hover {
  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
}

button {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #ffffff;
}
.btn-primary {
  background-color: #fd6262;
  border-color: #f0f0f0;
  color: #333;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e0e5ec;
  color: #333;
  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
}

.neumorphic-branding {
  background: #333;
  box-shadow: 3px 3px 5px #bebebe, -3px -3px 5px #ffffff;
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box; 
}


.contact-info i,
.social-links a {
  color: #333;
  text-decoration: none;
  margin-right: 5px;
  font-size: 18px;
}
.contact-info i {
  color: #fd6262;
}

.social-links a:hover {
  color: #007bff;
}

.logo-img {
  vertical-align: middle;
}

.navmenu {
    display: flex;
    align-items: center;
    justify-content: center; 
  }
  
  .nav-list {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex; 
    gap: 10px; 
  }
  
  .nav-list li {
    margin: 0;
  }
  
  .nav-button {
    text-decoration: none;
    color: #fff;
    background-color: transparent; 
    padding: 10px 20px; 
    /* border-radius: 1px;  */
    /* box-shadow: 1px 1px 2px #bebebe, -1px -1px 2px #242424; */
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .nav-button:hover {
    background-color: #fd6262; 
    box-shadow: 1px 1px 2px #bebebe, -1px -1px 2px #ffffff;
  }
  
  .mobile-nav-toggle {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
  }

  .no-underline {
        text-decoration: none; 
    }

    .no-underline:hover {
        text-decoration: none; 
    }
  