
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}



a {
  color: inherit;
  text-decoration: none;
}


.btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ffffff;
  color: #000000;
}


.text-center {
  text-align: center;
}

.header {
  width: 100%;
  background-color: #008080; /* Teal for Health */
  color: white;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
}


:root {
  --brand-orange: rgb(255, 165, 0);
}

.header { 
  background-color: var(--brand-orange); 
  color: white; 
  position: sticky;
  top: 0;
  z-index: 1000;
    padding: 15px 30px; 
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-group {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo img {
    height: 75px;
    width: auto;
    display: block;
    margin: -10px;
}

@media (max-width: 992px) {
  .logo img {
    height: 65px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 10px 20px;
  }

  .logo img {
    height: 60;
  }

  .left-group {
    gap: 20px;
  }
}

.header-socials {
  display: flex;
  gap: 20px;
}

.header-socials a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.mobile-nav-socials {
  display: none; 
}


@media (max-width: 900px) {
  .header-socials {
    display: none; 
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--brand-orange);
    display: none; 
    flex-direction: column;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 25px;
    margin-top: 10px;
  }

  .mobile-nav-socials a {
    color: white;
    font-size: 22px;
  }
}


.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #e0f7f7; 
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.contact-us {
  padding: 60px 20px;
  background-color: #f0f7f7;
  text-align: center;
}

.contact-us h2 {
  font-size: 32px;
  color: #008080;
  margin-bottom: 20px;
}

.contact-us p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form input,
.contact-form select {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 200px;
  flex: 1;
}

.contact-form button.btn {
  padding: 12px 30px;
  border: 2px solid #008080;
  background-color: #008080;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s;
}

.contact-form button.btn:hover {
  background-color: #fff;
  color: #008080;
}
.footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 128, 128);
  color: white;
}
.link-card{
  text-decoration: none;
  display: block; 
  color: inherit; 
}


.wa-pulse-btn {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: wa-ripple 2s infinite;
}


.wa-tooltip {
  position: absolute;
  right: 85px;
  background: white;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 1; 
  pointer-events: none;
  border: 1px solid #eee;
}


@keyframes wa-ripple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes wa-wiggle {
  0%, 90% { transform: rotate(0); }
  92% { transform: rotate(20deg); }
  94% { transform: rotate(-20deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-10deg); }
  100% { transform: rotate(0); }
}

.wa-pulse-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.reveal {
  opacity: 0;
  transform: translateY(60px); 
  transition: all 0.9s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  visibility: hidden;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.safari-tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    width: 90%;
    max-width: 450px;
}

.tooltip-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tooltip-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.close-tooltip {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.close-tooltip:hover {
    opacity: 0.7;
}

.tooltip-content i {
    font-size: 1.2rem;
    color: #ff8c00; 
}