/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header styles */
.custom-header {
  background-color: #ffffff;
  padding: 15px 0;
  color: white;
  position: relative;
  z-index: 1000;
}

.header-logo img {
  max-height: 200px !important;
}

/* Navigation */
.custom-nav {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #80cbc4;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: transparent;
  border: none;
  color: rgb(0, 0, 0);
}

/* Mobile menu */
.custom-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #004d40;
  color: white;
  box-shadow: 2px 0 12px rgba(0,0,0,0.5);
  transition: left 0.3s ease;
  z-index: 1100;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.custom-mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-close-btn {
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-logo img {
  height: 40px;
}

/* Mobile nav list */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  flex-grow: 1;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-list li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-nav-list li a:hover {
  color: #80cbc4;
}

/* Social icons */
.mobile-social-links {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-top: auto;
}

.mobile-social-links a {
  color: white;
  font-size: 1.5rem;
}

.mobile-social-links a:hover {
  color: #80cbc4;
}

/* Responsive: show mobile menu toggle and hide desktop nav at small widths */
@media (max-width: 768px) {
  .custom-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}



.mob-list{
  display: block;
  margin-left: 45px;
}