.whatsapp-float {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background-color: #25D366;
  width: 60px; /* Increased from 50px */
  height: 60px; /* Increased from 50px */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px; /* Increased from 26px */
  height: 32px;
}

/* 👉 Note message floats next to button */
.whatsapp-note {
  position: fixed;
  bottom: 20px;
  left: 85px; /* Adjusted for new button size */
  background: #ffffff;
  color: #0A2239;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  animation: fadeOut 0.5s ease-in-out 5s forwards;
  transition: opacity 0.5s;
  white-space: nowrap;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
  }
}

/* 📱 Mobile styling */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px; /* Increased from 45px */
    height: 55px; /* Increased from 45px */
    bottom: 10px;
    left: 10px;
  }

  .whatsapp-float img {
    width: 28px; /* Increased from 22px */
    height: 28px;
  }

  .whatsapp-note {
    bottom: 15px;
    left: 72px; /* Adjusted based on button width */
    font-size: 13px;
    padding: 6px 10px;
  }
}


  /* Header background color */
.ast-primary-header-bar {
    background-color: #0A2239; /* deep blue */
  }
  
  /* Header text / menu links */
  .ast-primary-header-bar .main-header-menu a {
    color: #ffffff;
  }
  
  /* On hover */
  .ast-primary-header-bar .main-header-menu a:hover {
    color: #CDA349; /* gold accent */
  }
  
  /* Site title / logo text (if text logo is used) */
  .ast-site-identity .site-title a {
    color: #ffffff;
  }
  
  
  .home .ast-primary-header-bar {
    background-color: #0A2239 !important;
  }
  @media (max-width: 768px) {
    /* Reduce logo height but maintain aspect ratio */
    .ast-header-break-point .ast-site-identity img {
      height: 45px;
      width: auto;
      max-height: 45px;
    }
  
    /* Reduce vertical padding around header */
    .ast-header-break-point .ast-primary-header-bar {
      padding-top: 8px;
      padding-bottom: 8px;
    }
  
    /* Optional: Adjust site title font size (if text logo is used) */
    .ast-header-break-point .site-title {
      font-size: 18px;
      line-height: 1.2;
    }
  
    /* Optional: Tighten mobile menu icon position */
    .ast-header-break-point .main-header-bar-navigation {
      margin-top: 5px;
    }
  }
  
  .whatsapp-note {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: #ffffff;
    color: #0A2239;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    animation: fadeOut 0.5s ease-in-out 5s forwards;
    transition: opacity 0.5s;
  }
  
  @keyframes fadeOut {
    to {
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
    }
  }
  


  /* Add space after header */
.site-content {
    padding-top: 100px; /* You can adjust this value */
  }
  

  .main-header-bar-wrap {
  will-change: transform;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .site-content {
    padding-top: 70px !important;
  }
}
