.service-inner p{
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}

.partner-logo-area {
    margin-top: 90px;
}

.partner-logo-wrap {
    margin-bottom: 60px;
}


.partner-logo-wrap img {
    width: 70%;
    min-width: 100px;
}

.single-contact-info {
   /* min-height: 450px; */
   min-height: 530px;
   padding-top: 100px;
}

.pt_100 {
    padding-top: 10px !important;
}

.header-menu .main-menu li .sub-menu li a.master-link{
    
}

.header-menu .main-menu li {
    position: relative;
    display: inline-block;
}

.header-menu .main-menu li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 270px;
    background: #ffffff;
    box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-radius: 5px;
    border-top: 3px solid #086ad8;
    opacity: 0;
    z-index: 99;
    visibility: hidden;
    transition: all 0.3s linear;
}

.header-menu .main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.header-menu .main-menu li .sub-menu li {
    position: relative;
}

.header-menu .main-menu li .sub-menu li .sub-menu {
    position: absolute;
    left: 270px; /* Display the submenu to the left */
    top: 0;
    background: #ffffff
}

.header-menu .main-menu li.service .sub-menu li .menu-icon::after {
    content: '\f16c';
    font-family: "flaticon";
    font-size: 10px;
    color: red;
    margin-left: 5px;
    transition: all 0.3s linear;
    display: none;
}

.header-menu .main-menu li.service .sub-menu li .master-link::after {
    content: '\f16c';
    font-family: "flaticon";
    font-size: 10px;
    color: #94a0b9;
    margin-left: 5px;
    transition: all 0.3s linear;
    transform: rotate(45deg);
}

.header-menu .main-menu li.service .sub-menu li:hover .master-link::after {
    color: #086ad8;
}

.whatsapp-link {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    z-index: 1000; /* Ensures it's on top of other content */
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image scales correctly */
}


.brand-active .single-brand {
    display: flex;
    justify-content: center;  /* Horizontally center the image */
    align-items: center;      /* Vertically center the image */
    height: 100%;   
}

.brand-active .single-brand img {
    max-width: 70%;          /* Ensure the image doesn't exceed the width of the container */
    max-height: 70%;         /* Ensure the image doesn't exceed the height of the container */
    object-fit: contain;      /* Keep the aspect ratio and center the image */
}

.page-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* This dims the image */
    z-index: 1; /* Ensures the overlay is above the image */
}

.page-banner-section.product::before {
    background-color: transparent;
}

.swiper-button-prev, .swiper-button-next {
    display: none;
}



@media (max-width: 768px) { /* Adjust the breakpoint as needed */
    .techwix-hero-section-03 {
      position: relative; /* Ensure the div is positioned for the pseudo-element */
      background-image: url('your-image.jpg'); /* Replace with your background image */
      background-size: cover;
      background-position: center;
    }
  
    .techwix-hero-section-03::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #00000040; /* Semi-transparent black */
      pointer-events: none; /* Allow interaction with text or other elements in the div */
      z-index: 1; /* Ensure the overlay is behind the content */
    }
  
    .techwix-hero-section-03 > * {
      position: relative; /* Ensure the content stays above the overlay */
      z-index: 2;
    }
  }

  .widget-info ul li {
    align-items: flex-start;
  }

/* Hide scroll-to-top progress button */
.progress-wrap { display: none !important; }

/* ============================================
   EverBot Chat Widget
   ============================================ */

/* -- Toggle button -- */
#eb-widget {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#eb-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7141B1, #43BAFF);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(113, 65, 177, 0.4);
    transition: transform 0.3s;
    position: relative;
}

#eb-toggle:hover {
    transform: scale(1.1);
}

#eb-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* -- Chat window -- */
#eb-win {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    height: 500px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* -- Header -- */
#eb-hdr {
    background: linear-gradient(135deg, #7141B1, #43BAFF);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#eb-av {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

#eb-hname {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

#eb-hstatus {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
}

#eb-hclose {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

#eb-hclose:hover {
    color: #fff;
}

/* -- Panels -- */
.eb-panel {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.eb-panel.active {
    display: flex;
}

/* -- Home tab -- */
#eb-home-inner {
    overflow-y: auto;
    flex: 1;
}

#eb-home-banner {
    background: linear-gradient(135deg, #7141B1, #43BAFF);
    padding: 6px 20px 36px;
}

#eb-home-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0 0 2px;
}

#eb-home-banner h2 {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    margin: 0;
}

.eb-cards {
    padding: 14px;
    margin-top: -22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eb-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.15s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    text-align: left;
    width: 100%;
    font: inherit;
}

.eb-card:hover {
    background: #f5f3ff;
}

.eb-card-label {
    font-weight: 600;
    font-size: 13px;
    color: #1e293b;
}

.eb-card-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

.eb-status {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: default;
}

.eb-status:hover {
    background: #fff;
}

.eb-status-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* -- Messages tab -- */
#eb-msglist {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8fafc;
    min-height: 0;
}

.eb-msg {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.eb-msg.user {
    align-items: flex-end;
}

.eb-msg.bot {
    align-items: flex-start;
}

.eb-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.eb-msg.bot .eb-bubble {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.eb-msg.user .eb-bubble {
    background: linear-gradient(135deg, #7141B1, #43BAFF);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.eb-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    max-width: 90%;
}

.eb-opt {
    font-size: 12px;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #d8b4fe;
    color: #7141B1;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s;
    font: inherit;
}

.eb-opt:hover:not(:disabled) {
    background: #f5f3ff;
    border-color: #7141B1;
}

.eb-opt:disabled {
    opacity: 0.4;
    cursor: default;
}

/* Typing indicator */
.eb-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    height: 14px;
}

.eb-dots .eb-dot {
    width: 6px;
    height: 6px;
    background: #bbb;
    border-radius: 50%;
    animation: ebBounce 1.2s infinite;
    display: inline-block;
}

.eb-dots .eb-dot:nth-child(2) { animation-delay: 0.2s; }
.eb-dots .eb-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes ebBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-6px); }
}

/* Input area */
#eb-inputarea {
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

#eb-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    background: #f8fafc;
    font: inherit;
}

#eb-input:focus    { border-color: #7141B1; }
#eb-input:disabled { opacity: 0.6; }

#eb-sendbtn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7141B1, #43BAFF);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#eb-sendbtn:disabled {
    opacity: 0.4;
    cursor: default;
}

/* -- Help tab -- */
#eb-help-inner {
    overflow-y: auto;
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
}

#eb-help-inner h4 {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2px;
}

.eb-faq {
    background: #fff;
    border-radius: 14px;
    padding: 13px 14px;
    border: 1px solid #eef0f2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.eb-faq:hover     { border-color: #d8b4fe; }

.eb-faq-q {
    font-weight: 600;
    font-size: 13px;
    color: #1e293b;
}

.eb-faq-a {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.5;
    display: none;
}

.eb-faq.open .eb-faq-a {
    display: block;
}

/* -- Bottom nav -- */
#eb-nav {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-shrink: 0;
}

.eb-navbtn {
    flex: 1;
    padding: 9px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
    font: inherit;
}

.eb-navbtn.active { color: #7141B1; }
.eb-navbtn svg    { width: 18px; height: 18px; }

/* -- Attention popup -- */
#eb-popup-wrap {
    position: relative;
}

#eb-popup {
    position: absolute;
    bottom: 65px;   /* above the 55px toggle button, with 10px gap */
    right: 0;
    width: 215px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    cursor: pointer;
    animation: ebPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

#eb-popup-bar {
    height: 4px;
    background: linear-gradient(90deg, #7141B1, #43BAFF);
}

#eb-popup-body {
    padding: 11px 14px 14px;
}

#eb-popup-close {
    position: absolute;
    top: 8px;
    right: 9px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #94a3b8;
    line-height: 1;
    padding: 2px 4px;
}

#eb-popup-close:hover { color: #475569; }

#eb-popup p {
    margin: 0 0 2px;
    font-size: 12px;
    color: #64748b;
}

#eb-popup strong {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    display: block;
    padding-right: 18px;
}

#eb-popup::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 27px;
    border: 7px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
}

@keyframes ebPopIn {
    from { opacity: 0; transform: translateY(10px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* -- Mobile overrides (≤480px) -- */
@media (max-width: 480px) {
    #eb-widget { right: 12px; }
    #eb-toggle { width: 50px; height: 50px; }
    #eb-win    { width: calc(100vw - 24px); right: -12px; height: min(520px, calc(100dvh - 90px)); bottom: 65px; }
}