img {
  width: 100%;
  display: inline-table;
}

.bg-primary,
.btn-primary {
  background-color: #3ebb26 !important;
}

.btn {
  background-color: transparent;
  font-family: "Outfit", Sans-serif;
  font-size: 22px;
  font-weight: 800;
  fill: #fff;
  color: #fff;
  background-image: linear-gradient(120deg, #36b71d 0%, #47c32e 100%);
  border-radius: 15px;
  padding: 8px 20px;
  border-color: #36b71d;
}

.bg-primary-light {
  background-color: #4ad92312 !important;
}

.text-primary {
  color: #3ebb26 !important;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.navigation-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #f8f9fa;
  padding: 20px;
  border-right: 1px solid #ccc;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(0);
  /* visible by default on desktop */
  transition: transform 0.3s ease;
}


.main-content {
  margin-left: 120px;
  margin-right: 138px;
  padding: 20px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  overflow-y: auto;
  /* Enable vertical scrolling */
  overflow-x: hidden;
  /* Disable horizontal scrolling */
  z-index: 1000;
  /* Ensure it stays on top of other content */
  width: 20%;
  background-color: #f8f9fa;
  padding: 20px;
  border-left: 1px solid #dee2e6;
}

.mobile-toggle {
  position: fixed;
  top: 5px;
  left: 3px;
  z-index: 1100;
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .navigation-sidebar {
    transform: translateX(-100%);
  }

  .navigation-sidebar.active {
    transform: translateX(0);
  }

  .mobile-toggle {
    display: block;
  }

  .main-content {
    margin-left: -75px;
    margin-right: -75px;
  }

  .mobile-only {
    display: block;
  }

}

@media (min-width: 769px) {
  .mobile-toggle {
    display: none;
  }
}

.navigation-sidebar ul li {
  list-style: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #4ad92312;
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.navigation-sidebar ul li:hover {
  background-color: #ced4da;
  /* Change color on hover */
}

.navigation-sidebar ul li a {
  text-decoration: none;
  color: #000;
  /* Change link color */
  font-weight: 600;
}

.navigation-sidebar ul li a:hover {
  color: #007bff;
  /* Change link color on hover */
}

.navigation-sidebar h2 {
  margin-bottom: 20px;
}

.sidebar ul li {
  list-style: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #4ad92312;
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.sidebar ul li:hover {
  background-color: #ced4da;
  /* Change color on hover */
}

.sidebar ul li a {
  text-decoration: none;
  color: #000;
  /* Change link color */
  font-weight: 600;
}

.sidebar ul li a:hover {
  color: #007bff;
  /* Change link color on hover */
}

.about-item {
  margin-bottom: 20px;
  background-color: #2dd9231c;
  border-radius: 12px;
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #36b71d;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 15px 25px;
}

.custom-border-bottom {
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #36b71d;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}

.para-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: #00022b;
}

.heading-secondary {
  font-size: 18px;
  font-weight: 600;
  color: #36b71d;
}

.navigation-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 285px;
  background-color: #f9f9f9;
  border-right: 1px solid #e0e0e0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  z-index: 1000;
  padding-bottom: 10px;
  padding-top: 0px;
}

.navigation-sidebar::-webkit-scrollbar {
  width: 2px;
}

.navigation-sidebar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.sidebar-header {
  text-align: center;
  padding: 25px 15px 15px;
  border-bottom: 1px solid #ddd;
}

.sidebar-header img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.sidebar-header h4 {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
}

.sidebar-header p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.navigation-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation-sidebar a {
  text-decoration: none;
  color: #333;
}

.navigation-sidebar .list-group-item {
  text-transform: uppercase;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  background: transparent;
  color: #333;
  display: flex;
  align-items: center;
  transition: all 0.25s ease-in-out;
}

.navigation-sidebar .list-group-item.active-nav {
  background-color: #d8f7ce;
  color: #3ebb26;
  border-left: 4px solid #3ebb26;
  border-radius: 5px;
  padding-left: 16px;
}

.navigation-sidebar .list-group-item i {
  margin-right: 12px;
  font-size: 16px;
  color: #3ebb26;
  width: 20px;
  text-align: center;
}

.navigation-sidebar .list-group-item:hover {
  background-color: #eafce5;
  color: #3ebb26;
  border-left: 4px solid #3ebb26;
  border-radius: 5px;
  padding-left: 16px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar a {
  text-decoration: none;
  color: #333;
}

.sidebar .list-group-item {
  text-transform: uppercase;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  background: transparent;
  color: #333;
  display: flex;
  align-items: center;
  transition: all 0.25s ease-in-out;
}

.sidebar .list-group-item.active-nav {
  background-color: #d8f7ce;
  color: #3ebb26;
  border-left: 4px solid #3ebb26;
  border-radius: 5px;
  padding-left: 16px;
}

.sidebar .list-group-item i {
  margin-right: 12px;
  font-size: 16px;
  color: #3ebb26;
  width: 20px;
  text-align: center;
}

.sidebar .list-group-item:hover {
  background-color: #eafce5;
  color: #3ebb26;
  border-left: 4px solid #3ebb26;
  border-radius: 5px;
  padding-left: 16px;
}