 /* General Styles */
  .inner_content .handset_holder.media_center .handset_content .handset_single .handset_body a img {
          margin: 0 10px;
        }

        @media (max-width: 575.98px) {
          .inner_content .handset_holder.media_center .handset_content .handset_single .handset_body a img {
            margin: 0;
          }
        }

          @media screen and (min-width: 1119px) and (max-width: 1300px) {
        header .logo {
          width: 180px;
        }
      }

       header .logo {
      display: inline-block;
      font-size: 0;
      margin: 5px 0 0;
      position: relative;
      width: 21%;
    }

    header .lg_menu {
      float: right;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      width: 78%;
      margin: 11px 0 0 0;
    }

    @media screen and (max-width: 1119px) {
      header .logo img {
        width: 130%;
      }
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(13, 110, 253, 0.25);
      outline-offset: 2px;
    }

    .full_cta {
      text-align: right;
      position: absolute;
      width: 90%;
      bottom: 100px;
    }

    @media (max-width: 767.98px) {
      .full_cta {
        bottom: 0;
      }
    }

    /* JS ko allow karta hai ke hover menu ko Esc pe force-hide kare */
nav li.has-sub:focus-within > ul.sec {
  visibility: visible;
  opacity: 1;
}
  .zoom-container {
    position: relative;
  }

  .zoom-container.zoom-active {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  .zoom-container.zoom-active .zoom-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 32;
  }

  .dark-mode {
    background-color: #222;
    color: white;
  }

  .dark-mode .accessibility-button {
    background-color: #fff;
  }

  .dark-mode .accessibility-panel {
    background-color: #333;
    color: white;
  }

  .dark-mode .option {
    background-color: #444;
  }


  .dark-mode .option:hover {
    background-color: #555;
  }



  /* Floating Button */
  .accessibility-button {
    align-items: center;
    background-color: #2c74d6;
    border-radius: 50%;
    bottom: 48px;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    left: 20px;
    position: fixed;
    width: 60px;
    z-index: 999;
  }

  .accessibility-button i {
    color: white;
    font-size: 24px;
  }

  .accessibility-button svg {
    height: 100%;
    width: 100%;
  }

  /* Accessibility Panel */
  .accessibility-panel {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    bottom: 220px;
    left: -300px;
    position: fixed;
    transition: left 0.3s ease-in-out;
    width: 300px;
    z-index: 998;
    /* Initially hidden off-screen */
  }

  .accessibility-panel.active {
    left: 20px;
    /* Slide in from the right */
  }

  .accessibility-panel .panel-header {
    background-color: #2c74d6;
    color: white;
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }

  .accessibility-panel .panel-body {
    padding: 10px;
  }

  .accessibility-panel .option {
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 0 none;
    width: 100%;
    transition: background-color 0.2s ease;
  }

  .accessibility-panel .option svg {
    height: 24px;
    width: 24px;
  }

  .accessibility-panel .option:focus,
  .accessibility-panel .option:hover {
    background-color: #e9ecef;
  }

  .accessibility-panel .option i {
    font-size: 24px;
    margin-right: 10px;
  }

  /* Close Button */
  .close-button {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
  }

  .close-button svg {
    width: 100%;
    height: 100%;
  }

  /* Sub-menu */
  .sub-menu {
    display: none;
    height: 210px;
    overflow-x: hidden;
    padding: 10px;
    position: relative;
    /* 
    top: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 5px;
    right: 0;
    z-index: 1000;
     */
  }

  .sub-menu.active {
    display: block;
  }

  .sub-menu .color-option {
    align-items: center;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    padding: 5px 10px;
    transition: background-color 0.2s ease;
  }

  .sub-menu .color-option:hover {
    background-color: #f8f9fa;
  }

  .color-option span {
    border-radius: 50%;
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    width: 20px;
  }

  .color-a {
    background-color: #000;
  }

  /* Black */
  .color-b {
    background-color: #007bff;
  }

  /* Blue */
  .color-c {
    background-color: #ff0000;
  }

  /* Red */
  .color-d {
    background-color: #00ff00;
  }

  /* Green */
  .color-e {
    background-color: #ff00ff;
  }

  /* Magenta */
  .color-f {
    background-color: #ffff00;
  }

  /* Yellow */
  .color-g {
    background-color: #800080;
  }

  /* Purple */
  .color-h {
    background-color: #0000ff;
  }

  /* Fucia */
  .color-fucia {
    background-color: #e40076;
  }




  /* Floating chat button styles */
  .chat-button {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #e40076;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #e40076;
  }

  .chat-icon {
    width: 28px;
    height: 28px;
    fill: white;
  }

  /* Optional: Add a notification dot */
  .notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background-color: #ff4b4b;
    border-radius: 50%;
    border: 2px solid white;
  }

  /* Optional: Simple animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }

    100% {
      transform: scale(1);
    }
  }

  .chat-button.has-notification {
    animation: pulse 2s infinite;
  }




  .accessibility-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
  }

  .accessibility-controls button {
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #fff;
    background-color: rgba(74, 74, 74, 0.9);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .accessibility-controls-2 {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    display: none;
    gap: 10px;
  }

  .zoom-container.zoom-active .accessibility-controls-2 {
    display: flex;
  }

  .accessibility-controls-2 button {
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #fff;
    background-color: rgba(74, 74, 74, 0.9);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .toggle-zoom.active {
    background-color: #e9ecef;
    color: #000;
  }

  /* Dark Blue */

  
.modal {
    z-index: 10551 !important;
  
}
/* 
div#init_widget_main {
    position: relative;
    top: 19px;
} */

.app_flyout {
    align-items: flex-end;
    background-color: rgba(0, 0, 0, .8);
    display: flex
;
    height: 94%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10025 !important;
}
  /* General Styles */

  .dark-mode {
    background-color: #222;
    color: white;
  }

  .dark-mode .accessibility-button {
    background-color: #fff;
  }

  .dark-mode .accessibility-panel {
    background-color: #333;
    color: white;
  }

  .dark-mode .option {
    background-color: #444;
  }


  .dark-mode .option:hover {
    background-color: #555;
  }



  /* Floating Button */
  .accessibility-button {
    align-items: center;
    background-color: #2c74d6;
    border-radius: 50%;
    bottom: 150px;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    left: 20px;
    position: fixed;
    width: 60px;
    z-index: 999;
  }

  .accessibility-button i {
    color: white;
    font-size: 24px;
  }

  .accessibility-button svg {
    height: 100%;
    width: 100%;
  }

  /* Accessibility Panel */
  .accessibility-panel {
    position: fixed;
    bottom: 220px;
    left: -300px;
    /* Initially hidden off-screen */
    width: 300px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    z-index: 998;
  }

  .accessibility-panel.active {
    left: 20px;
    /* Slide in from the right */
  }

  .accessibility-panel .panel-header {
    padding: 10px;
    background-color: #2c74d6;
    color: white;
    text-align: center;
  }

  .accessibility-panel .panel-body {
    padding: 10px;
  }

  .accessibility-panel .option {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .accessibility-panel .option svg {
    height: 24px;
    width: 24px;
  }

  .accessibility-panel .option:hover {
    background-color: #e9ecef;
  }

  .accessibility-panel .option i {
    font-size: 24px;
    margin-right: 10px;
  }

  /* Close Button */
  .close-button {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
  }

  .close-button svg {
    width: 100%;
    height: 100%;
  }

  /* Sub-menu */
  .sub-menu {
    display: none;
    height: 210px;
    overflow-x: hidden;
    padding: 10px;
    position: relative;
    /* 
    top: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 5px;
    right: 0;
    z-index: 1000;
     */
  }

  .sub-menu.active {
    display: block;
  }

  .sub-menu .color-option {
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
  }

  .sub-menu .color-option:hover {
    background-color: #f8f9fa;
  }

  .color-option span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
  }

  .color-a {
    background-color: #000;
  }

  /* Black */
  .color-b {
    background-color: #007bff;
  }

  /* Blue */
  .color-c {
    background-color: #ff0000;
  }

  /* Red */
  .color-d {
    background-color: #00ff00;
  }

  /* Green */
  .color-e {
    background-color: #ff00ff;
  }

  /* Magenta */
  .color-f {
    background-color: #ffff00;
  }

  /* Yellow */
  .color-g {
    background-color: #800080;
  }

  /* Purple */
  .color-h {
    background-color: #0000ff;
  }




  /* Floating chat button styles */
  .chat-button {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #e40076;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #e40076;
  }

  .chat-icon {
    width: 28px;
    height: 28px;
    fill: white;
  }

  /* Optional: Add a notification dot */
  .notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background-color: #ff4b4b;
    border-radius: 50%;
    border: 2px solid white;
  }

  /* Optional: Simple animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }

    100% {
      transform: scale(1);
    }
  }

  .chat-button.has-notification {
    animation: pulse 2s infinite;
  }