

@font-face {
    font-family: 'Equitan Sans';
    src: url('fonts/EquitanSans-Regular.woff2') format('woff2'),
        url('fonts/EquitanSans-Regular.woff') format('woff'),
        url('fonts/EquitanSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Heading Tags */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Equitan Sans', sans-serif;
    font-weight: bold;
    /* Adjust the weight as per your preference */
    color: #000;
    /* Adjust the color as needed */
    line-height: 1.4;
    /* Better readability */
    margin: 15px 0;
    /* Add some margin to separate headings */
}




.trusted-partners {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #f5f7fa, #e6ecf3);
}

.trusted-partners h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.partner-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner {
    text-align: center;
    width: 150px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner p {
    font-size: 1em;
    color: #555;
}

.partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}





body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navbar style */
nav {
    background-color: transparent;
    /* Makes the navbar background transparent */
    box-shadow: none;
    /* Remove shadow, or you can leave it if you want a subtle shadow */
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo style */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #9c4de4;
}

/* Menu and dropdowns */
.navbar-items {
    display: flex;
    align-items: center;
}

.navbar-items>div {
    margin: 0 15px;
    position: relative;
}

.navbar-items a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

/* Submenu styling */
.submenu-content {
    display: none;
    position: fixed;
    top: 80px;
    /* Adjust top position */
    left: -10vw;
    /* Align submenu at 12vw from the left */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 1050px !important;
    /* height: 700; */
    z-index: 10;
}

.submenu-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.submenu-section p {
    font-size: 14px;
    color: #777;
}

hr {
    margin: 10px 0;
    border: 0.5px solid #eee;
}

.submenu-columns {
    display: flex;
    justify-content: space-between;
}

.submenu-columns>div {
    flex: 1;
    margin: 0 10px;
}

.submenu-columns h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #6c63ff;
}

.submenu-columns ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;

}

.submenu-columns ul li {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

.omnichannel-list {
    display: inline-block;
    margin: 0 20px 0 0;
}

.cta .cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #6c63ff, #9c4de4);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: left;
    margin-top: 20px;
    cursor: pointer;
}

.cta-button span {
    font-size: 20px;
    margin-left: 5px;
}

.cta-button:hover {
    background: #5a52cc;
}

/* Right section */
.right-section {
    display: flex;
    align-items: center;
}

.right-section select,
.right-section button {
    margin-left: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
}

.right-section select {
    background-color: #fff;
}

/* Show submenu on hover */
.dropdown:hover .submenu-content {
    display: block;
}



/* Responsive Navbar */
@media (max-width: 768px) {

    /* Adjust the navbar items for smaller screens */
    nav {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-items {
        flex-direction: column;
        width: 100%;
    }

    .navbar-items>div {
        width: 100%;
        margin: 0;
    }

    .navbar-items a {
        font-size: 14px;
        text-align: left;
        padding: 10px 15px;
        display: block;
        width: 100%;
    }

    /* Hide the large submenu for mobile */
    .submenu-content {
        display: none;
        position: static;
        /* Reset position for mobile */
        width: 100%;
        box-shadow: none;
        padding: 10px;
    }

    /* Show the default dropdown submenu */
    .dropdown:hover .submenu-content {
        display: none;
        /* Disable hover functionality for mobile */
    }

    /* Mobile toggle for submenu */
    .dropdown.active .submenu-content {
        display: block;
    }
}



.header-inner {
    justify-content: flex-start !important;
}

.logo-outer {
    margin-right: auto;
    padding-left: 0;
}

@media (max-width: 768px) {
    .logo-outer {
        padding-left: 15px;
    }
}




/* Remove borders between submenu items */
.dropdown ul li {
    border: none !important;
    /* Remove any existing borders */
}

.dropdown ul li a {
    border-bottom: none !important;
    /* Remove bottom borders */
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

/* Optional: Add hover effect without borders */
.dropdown ul li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    /* Light gray background on hover */
}

/* If you want a border only around the entire submenu */
.dropdown ul {
    border: 1px solid #eee;
    /* Single border around the entire submenu */
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}




.whatsapp-widget {
    position: fixed;
    bottom: 70px;
    right: 60px;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.whatsapp-icon-container {
    position: relative;
    background: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 35px;
    color: white;
}

.tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-icon-container:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

.chat-popup {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 340px;
    background: #F6F4F9;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(0) scale(0.95);
    transform-origin: bottom right;
    animation: popupAnimation 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    z-index: 1;
}

@keyframes popupAnimation {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    background: #fc7718;
    color: white;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 18px 25px 0 0 !important;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-btn:hover {
    opacity: 1;
}

.popup-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 85%;
    align-self: flex-start;
    position: relative;
    animation: messageBubble 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes messageBubble {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    background: #FF6B00;
    color: white;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px 25px 0 0;
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.close-btn::before {
    content: '×';
    transform: translateY(-1px);
}

.close-btn:hover {
    color: white;
    transform: scale(1.2);
}

.greeting {
    font-size: 15px;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.help-text {
    font-size: 15px;
    margin: 0;
    color: #1a1a1a;
}

.greeting,
.help-text {
    font-size: 15px;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.4;
}

.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0052CC;
    color: white !important;
    padding: 13px 23px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-self: flex-end;
    width: auto;
    min-width: 200px;
    gap: 10px;
    margin: 0 8px 8px 0;
}

@keyframes buttonAnimation {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arrow-icon {
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.chat-button:hover {
    background: #0047B3;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.chat-button:hover .arrow-icon {
    transform: rotate(-45deg) translateX(3px);
}

.chat-popup {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 330px;
    background: #f8f8f8;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    animation: popupAnimation 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.popup-content {
    padding: 25px 0 0 25px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Hide WhatsApp icon when popup is visible */
.popup-visible .whatsapp-icon-container {
    opacity: 0;
    pointer-events: none;
}


@media (min-width: 992px) and (max-width: 1199px) {
    .submenu-content {
        width: 900px !important;
        left: 2vw;
        padding: 15px;
        top:75px
    }
    .submenu-columns h4 {
        font-size: 10px;
        font-weight: bold;
        margin-bottom: 5px;
        color: #6c63ff;
    }

    .submenu-section p {
        font-size: 10px;
        color: #777;
    }
}


/* ============================================================
   NEW NAVBAR — pb-* component styles
   ============================================================ */

/* ── Wrapper ─────────────────────────────────────────────── */
#pb-nav {
  font-family: 'Inter', sans-serif;
  padding: 0;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When scrolled: add top padding so the pill floats */
#pb-nav.scrolled {
  padding: 10px 16px;
}

/* ── Inner nav element ───────────────────────────────────── */
#pb-nav-inner {
  /* Flat at top: full-width, transparent, no radius */
  max-width: 100%;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition:
    max-width     0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background    0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color  0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow    0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding       0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pill / capsule when scrolled */
#pb-nav-inner.scrolled {
  max-width: 1100px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Nav button (top-level items) ────────────────────────── */
.pb-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.pb-btn:hover,
.pb-btn.open {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.06);
}

.pb-btn svg {
  transition: transform 0.2s ease;
}

.pb-btn.open svg {
  transform: rotate(180deg);
}

/* ── Dropdown panel ──────────────────────────────────────── */
.pb-drop {
  display: none;            /* hidden by default */
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  pointer-events: none;
}

.pb-drop.open {
  display: block;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Width variants */
.pb-wide { width: 780px; }
.pb-med  { width: 480px; }
.pb-sm   { width: 340px; }

/* ── Dropdown section label ──────────────────────────────── */
.pb-lbl {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
}

/* ── Menu item (link row) ────────────────────────────────── */
.pb-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.pb-item:hover {
  background: #f5f7fa;
  text-decoration: none;
}

/* ── Icon badge ──────────────────────────────────────────── */
.pb-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ── Item text ───────────────────────────────────────────── */
.pb-t {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.pb-d {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 1px;
}

/* ── CTA footer card ─────────────────────────────────────── */
.pb-cta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pb-cta:hover {
  background: #f0f4ff;
  border-color: #c7d2fe;
  text-decoration: none;
}

.pb-cta-t {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.pb-cta-d {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ── Mobile accordion section ────────────────────────────── */
.pb-mob-acc {
  display: none;
  overflow: hidden;
  padding-bottom: 8px;
}

.pb-mob-acc.open {
  display: block;
}

/* ── Ensure nav stays above page content ─────────────────── */
header#pb-nav {
  z-index: 9998;
}
