.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
  
    width: auto;
}

.custom-nav-menu {
    position: relative;
}

.menu-trigger {
    background: none;
    border: 2px solid transparent;
    color: #333;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.menu-trigger:hover {
    color: #000;
    background: rgba(249, 249, 249, 1);
    border-color: #000;
}

.menu-trigger .icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-trigger i {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.menu-trigger .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.menu-trigger:hover .icon-wrapper::after {
    opacity: 1;
    transform: scale(1);
}

.custom-menu-content {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transform-origin: top right;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.custom-menu-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 4px;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
    border-left: 1px solid rgba(33, 150, 243, 0.1);
    border-top: 1px solid rgba(33, 150, 243, 0.1);
}

.custom-nav-menu.active .custom-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-nav-menu.active .menu-trigger i {
    transform: rotate(180deg);
}

a.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555!important;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item svg {
    margin-right: 12px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #D8D6D6;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    background: rgba(33, 150, 243, 0.05);
    color: #000!important;
}

.menu-item:hover::after {
    transform: translateX(0);
}

.menu-item:hover svg {
    transform: scale(1.1);
    opacity: 1;
}
picture img {
    opacity: 0.7;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .top-nav {
        padding: 15px;
    }

    .nav-logo img {
        height: 28px;
    }

    .menu-trigger {
        font-size: 14px;
        padding: 6px 12px;
    }

    .custom-menu-content {
        position: fixed;
        top: 60px;
        left: 15px;
        right: 15px;
        border-radius: 8px;
        transform: translateY(-10px);
        transform-origin: top center;
    }

    .custom-menu-content::before {
        display: none;
    }

    .menu-item {
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* Floating Action Button Menu (respond.io style) */
.fab-menu {
  position: fixed;
  right: 24px;
  bottom: 24px;
  /* z-index: 9999; */
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgb(69, 138, 255);
  box-shadow: 0 8px 32px rgba(161, 25, 138, 0.18), 0 2px 8px rgba(0,0,0,0.10);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.fab-main:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.fab-main-icon {
  display: inline;
  vertical-align: middle;
}

.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: 80px;
  right: 0;
  pointer-events: none;
}

.fab-menu.active .fab-options {
  pointer-events: auto;
}

.fab-btn {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A1198A 0%, #C32843 100%);
  box-shadow: 0 4px 16px rgba(161, 25, 138, 0.10), 0 1.5px 6px rgba(0,0,0,0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition: all 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  cursor: pointer;
  outline: none;
  pointer-events: auto;
  position: relative;
}

.fab-btn svg {
  display: block;
}

.fab-menu.active .fab-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-menu .fab-btn:nth-child(1) { transition-delay: 0.05s; }
.fab-menu .fab-btn:nth-child(2) { transition-delay: 0.10s; }
.fab-menu .fab-btn:nth-child(3) { transition-delay: 0.15s; }

.fab-menu .fab-btn:active {
  transform: scale(0.95);
}

.fab-label {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0 0 0 / 34%);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  margin-right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fab-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid rgb(0 0 0 / 34%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.fab-btn:hover .fab-label {
  opacity: 1;
  visibility: visible;
}

.fab-btn.active .fab-label {
  display: none;
}

/* Remove the backdrop overlay for fab-menu */
.fab-overlay {
  display: none !important;
  background: none !important;
}

.fab-menu.active ~ .fab-overlay {
  display: none !important;
}

@media (max-width: 600px) {
  .fab-menu {
    right: 12px;
    bottom: 12px;
  }
  .fab-main, .fab-btn {
    width: 52px;
    height: 52px;
  }
  .fab-btn svg, .fab-main svg {
    width: 24px;
    height: 24px;
  }
  .fab-label {
    font-size: 13px;
    padding: 7px 14px;
  }
  .fab-options {
    flex-direction: row;
    gap: 20px;
    bottom: 0;
    right: 90px;
  }
  .fab-btn {
    margin-bottom: 0;
  }
} 


.voice-bot-popup {
  position: fixed;
  bottom: 266px;
  right: 21px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  padding: 10px 70px 10px 15px;
  min-width: 320px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
.voice-bot-popup.show {
  transform: translateX(0);
}

.voice-bot-popup.hide {
  transform: translateX(100%);
}

.voice-bot-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: inherit;
}
.voice-bot-number {
  color: #C32843;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 2px;
}
.voice-bot-desc {
  color: #222;
  font-size: 15px;
  font-weight: 400;
}


