/* LOGO */

.logo {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 28px;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.geneva {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.business {
  font-size: 13px;
  margin-left: -18px;
  color: var(--primary-color);
}

.lab {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.lab .dot {
  font-weight: 900;
  color: var(--primary-color);
}

.logo-left-bracket.top {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
}

.logo-right-bracket.bottom {
  position: absolute;
  bottom: 15px;
  right: 10px;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
}




.lead {
  max-width: 100%;  /* Limit width to column size */
  width: 100%;      /* Ensures it takes full width of its container */
  margin: 0 auto;   /* Center align the text within the container */
  font-size: 14px;
  text-align:center;
}



.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 45%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}
.service-card h4 {
  font-weight: 800;
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }
}



.navbar {
  color: var(--primary-color);
  border-radius: 20px;
  margin: 1rem auto;
  max-width: 90%;
  width: 100%;
  text-align: center;
  position: relative;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
}

/* Logo styles */
.logo {
  display: flex;
  align-items: center;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.main-nav a {
  margin: 0;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 8px 12px;
  transition: color 0.3s ease;
  display: block;
}

.nav-link {
  display: block !important;
}

.main-nav a:hover {
  color: #75054a;
}

/* Dropdown container */
.dropdown {
  position: relative;
  height: 100%;
}

/* Hide by default */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  padding: 20px;
  display: flex;
  gap: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Create a hover area */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px; /* Gap between toggle and dropdown menu */
  background: transparent;
}

/* Show on hover and keep visible with the hover bridge */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Add dropdown arrow */
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* Show only on hover */
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Submenus */
.submenu {
  display: flex;
  flex-direction: column;
}

.submenu span {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
}

.submenu a {
  font-size: 14px;
  color: #ccc;
  padding: 5px 0;
  transition: color 0.3s;
  white-space: nowrap;
}

.submenu a:hover {
  color: #ffffff;
}

/* CTA Button */
.cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-green {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-green:hover {
  background-color: #5e0339;
}

/* Mobile menu toggle button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-cta {
  display: none;
}

/* Responsive styles */
@media (max-width: 992px) {
  .navbar {
    max-width: 95%;
  }
  
  .main-nav {
    gap: 15px;
  }
  
  .main-nav a {
    font-size: 14px;
    padding: 6px 8px;
  }
  
  .btn-green {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    justify-content: space-between;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000; /* Higher z-index */
  }
  
  .main-nav.active {
    max-height: 600px; /* Increased to accommodate dropdown */
    visibility: visible;
    opacity: 1;
    padding: 1rem;
    overflow-y: auto; /* Add scroll if needed */
  }
  
  .main-nav a {
    width: 100%;
    text-align: left;
    padding: 12px;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
  }
  
  /* Change dropdown arrow direction on mobile */
  .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .dropdown.active .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    box-shadow: none;
    border-radius: 8px;
    margin: 0;
    max-height: 0;
    transform: none;
    left: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .dropdown:hover .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0 10px;
  }
  
  .dropdown.active .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    max-height: 500px;
    padding: 10px;
  }
  
  .submenu {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .desktop-cta {
    display: none;
  }
  
  .mobile-cta {
    display: flex;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .mobile-cta a {
    border-bottom: none !important;
  }
}








.btn-green {
  background-color: var(--primary-color);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  color: white;
}

.btn-white {
  background: white;
  color: #222;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  border: 1px solid #ccc;
}

.footer-contact-info {

  color: var(--dark-color);
}








/* Footer Contact Info */
.footer-contact-info {
  margin-bottom: 20px;
}

.footer-contact-info span {
  display: inline-block;
  margin-top: 5px;
  color: #fff;
  font-weight: 500;
}

/* Social Icons */
.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  color: #fff;
  background-color: #333;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social-links a:hover {
  background-color: var(--primary-color, #e91e63);
  color: #fff;
}

/* Footer Menu */
.footer-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-columns > div {
  flex: 1 1 45%;
  min-width: 250px;
}

/* Optional: Adjust for small screens */
@media (max-width: 600px) {
  .footer-columns {
    flex-direction: column;
  }

  .footer-columns > div {
    flex: 1 1 100%;
  }
}
