:root {
  --primary-color: #272727;
  /*rgba(39, 39, 39, 1)*/
  --secondary-color: #1d1d1d;
  /*rgba(29, 29, 29, 1)*/
  --third-color: rgba(18, 18, 18, 1);
  --main-black: #000;
  --main-white: #fff;

  --main-yellow: rgb(255, 165, 2, 1);
  --main-blue: rgba(72, 186, 255, 1);

  --main-yellow-shade1: rgba(255, 165, 2, 0.1);
  --main-yellow-shade2: rgba(255, 165, 2, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);

  --main-text-shade1: rgba(255, 255, 255, 0.8);
  --main-text-shade2: rgba(255, 255, 255, 0.7);
  --main-text-shade3: rgba(255, 255, 255, 0.6);
  --main-text-shade4: rgba(255, 255, 255, 0.5);
  --main-text-shade5: rgba(255, 255, 255, 0.4);
  --main-text-shade6: rgba(255, 255, 255, 0.3);
  --main-text-shade7: rgba(255, 255, 255, 0.2);
  --main-text-shade8: rgba(255, 255, 255, 0.1);
  --main-text-shade9: rgba(255, 255, 255, 0.02);
}

/* ADD BY PRITESH (27/01/26) */

/* ======================================================
                       TOP HEADER SOC
====================================================== */

.top-header-main {
  background-color: #313131;
  padding: 7px 10px;
  position: relative;
  z-index: 99;
}

.top-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.header-contact-card {
  padding: 8px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact-card .header-contact-text {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  color: var(--main-white);
}

/* ======================================================
                        HEADER SOC
====================================================== */

.font-16 {
  font-size: 16px !important;
  line-height: 24px;
}

.font-22 {
  font-size: 22px;
}

.font-14 {
  font-size: 14px;
}

.site-header {
  position: relative;
  z-index: 999;
}

.header-main .header-inner-main {
  position: relative;
  background-color: transparent;
}

.header-main-active .header-inner-main {
  background-color: rgba(29, 29, 29, 0.8);
}

/* ADD CSS BY PRITESH */
.header-main-active .header-inner-main::before {
  content: "";
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.header-main .header-inner-main .header-inner {
  align-items: center;
}

.header-main .header-inner-main nav.navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  padding: 0px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  position: static;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu.show
  .header-menu-inner {
  padding-top: 0;
}

/* ADD BY PRITESH (27/01/26) */
.header-main {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  left: 0px;
  transition: all 0.3s ease-in-out;
}

.header-main.header-main-active {
  top: 0;
}

.header-main.header-main-active.hidden {
  /* top: -200px; */
  transform: translateY(-100%);
  opacity: 0;
}

/*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/

.header-menu .header-menu-inner .main-nav-ul .main-nav-li .main-nav-link {
  position: relative;
  margin: 0px 16px;
  padding: 40px 0px;
  text-shadow: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.4s ease-in-out;
}

.main-nav-ul .main-nav-li .main-nav-link .main-link-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--main-white);
  transition: all 0.4s ease-in-out;
}

.main-nav-ul .main-nav-li .main-nav-link:hover .main-link-text {
  color: var(--main-yellow);
}

/*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

/*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

.line-sperator {
  border-top: 1px solid var(--main-text-shade8);
  margin: 28px 0;
}

.spacing_30 {
  gap: 30px;
}

.spacing_20 {
  gap: 20px;
}

.spacing_y_8 {
  row-gap: 8px;
}

.spacing_x_16 {
  column-gap: 16px;
}

/* Common css For title & link START */
.title_link_hover:hover {
  color: var(--main-yellow) !important;
}

.link_hover:hover {
  color: var(--main-white) !important;
  transform: translateX(4px);
}

.dropdown_main .main-title {
  font-size: 17px;
  line-height: 24px;
  color: var(--main-white);
  font-weight: 700;
  margin: 0 0 12px;
  transition: all 0.4s ease-in-out;
}

.dropdown_main .link_list_ul li a {
  font-size: 15px;
  line-height: 24px;
  color: var(--main-text-shade3);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
/* Common css For title & link END */

.header-menu .main-nav-ul .main-nav-li .dropdown_main {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(18, 18, 18, 1);
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
}

.header-menu .dropdown_main .dropdown-body {
  padding: 0 12px;
}

.header-menu .dropdown_main .dropdown-body .header-tabs-row {
  padding: 35px 0px;
  max-height: calc(100vh - 160px);
  overflow: auto;
}

/* HEADER COLUMNS CSS START */
.header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-3 {
  width: calc((100% - 60px) / 3);
}

.header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-4 {
  width: calc((100% - 90px) / 4);
}

.header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-6 {
  width: calc((100% - 150px) / 6);
}

.header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-4 {
  width: calc((100% - 60px) / 4);
}

.header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-3 {
  width: calc((100% - 40px) / 3);
}

/* ADD CSS FOR LOCATION MENU ADDED IN SERVICE MENU  */
.header-menu
  .dropdown_main
  .dropdown-body
  .header-tabs-row
  .header-col-divide-left {
  width: calc((100% - 560px) - 30px);
}

.header-menu
  .dropdown_main
  .dropdown-body
  .header-tabs-row
  .header-col-divide-right {
  width: 560px;
}

.header-menu
  .dropdown_main
  .dropdown-body
  .header-tabs-row
  .submenu-list
  .header-colul-li-2
  li {
  width: calc((100% - 16px) / 2);
}

/* HEADER COLUMNS CSS END */

.dropdown_main .icon-list-wrapper {
  display: flex;
  align-items: start;
  gap: 12px;
}

.dropdown_main .icon-list-wrapper .icon-wrapper {
  width: 40px;
  height: 40px;
  background: var(--main-text-shade8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-text-shade7);
  flex-shrink: 0;
}

.ai-expert-card {
  background: var(--main-yellow-shade2);
  border: 1px solid var(--main-yellow-shade1);
  border-radius: 12px;
  padding: 24px;
}

.icon-card-wrapper {
  background-color: var(--main-text-shade9);
  border: 1px solid var(--main-text-shade8);
  padding: 18px;
  border-radius: 12px;
  gap: 14px;
  transition: all 0.4s ease-in-out;
  height: 100%;
}

.icon-card-wrapper:hover {
  border-color: var(--main-text-shade6);
}

.icon-card-wrapper .card-icon {
  width: 45px;
  height: 45px;
  background-color: var(--main-yellow-shade2);
  border-radius: 6px;
  padding: 6px 3px;
  flex: 0 0 auto;
}

/*=====================================================
            CSS FOR DROPDOWN NAV END 
=====================================================*/

/*=====================================================
            CSS FOR TOGGLER BUTTON START 
=====================================================*/

.header-main button.navbar-toggler {
  padding: 0;
  width: 35px;
  height: 35px;
  border: 1px solid var(--main-text-shade7);
  border-radius: 100%;
  margin: 0px 0;
  position: relative;
}

.header-main button.navbar-toggler:focus {
  box-shadow: none;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(1) {
  top: 6.2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.header-main button.navbar-toggler span.icon-bar:nth-child(3) {
  margin-right: auto;
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(1),
.header-main
  .header-inner
  .header-right
  button.navbar-toggler.collapsed
  span.icon-bar:nth-child(3) {
  top: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  background-color: var(--main-yellow);
}

.header-main button.navbar-toggler span.icon-bar {
  margin: auto;
  background-color: var(--main-white);
  border-radius: 2px;
  display: block;
  height: 1px;
  position: relative;
  width: 15px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header-main button.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}

.header-main .header-right {
  width: 100%;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(3) {
  top: -4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/*=====================================================
            CSS FOR TOGGLER BUTTON END 
=====================================================*/

/*=====================================================
        ADD CSS FOR MENU ICON START 
=====================================================*/

.dropdown-chevron-arrow {
  background-image: url("../images/menu/new-header-img/chevron-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.dropdown_main .header-tabs-row .bg-icon {
  font-size: 21px;
}

.dropdown_main .header-tabs-row .card-icon.bg-icon {
  font-size: 26px;
  align-items: center;
}

/*=====================================================
        ADD CSS FOR MENU ICON END
=====================================================*/

@media (min-width: 992px) {
  .dropdown_main .header-tabs .tab-content .card-header {
    display: none;
  }

  .dropdown_main .header-tabs .tab-content .card .collapse {
    display: block !important;
  }

  .header-menu ul li:hover .dropdown_main .collapse:not(.show) {
    display: block;
  }

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    ul
    li
    a.accordion-btn.collapsed
    .dropdown-chevron-arrow {
    transition: all 500ms ease;
  }

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    ul
    li
    a.accordion-btn.collapsed:hover
    .dropdown-chevron-arrow {
    transform: rotate(-180deg);
  }

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    ul
    li
    a.accordion-btn:not(.collapsed)
    .dropdown-chevron-arrow {
    transform: rotate(-180deg);
  }
}

/* FOR NEW MENU -- BY HIMANI (20/03/24) */
@media (min-width: 768px) {
  .header-menu
    .main-nav-ul
    .main-nav-li
    .dropdown_main
    .submenu-list.collapse:not(.show) {
    display: block;
  }
}

/************ COMMON CONTAINER PROPERTY CSS *************/
.wide-container {
  max-width: calc(1720px + 24px);
  margin: 0 auto;
  padding: 0 12px;
}

@media (max-width: 1799.98px) {
  /************ COMMON CONTAINER PROPERTY CSS *************/

  .wide-container {
    max-width: calc(1620px + 24px);
  }
}

@media (max-width: 1699.98px) {
  /************ COMMON CONTAINER PROPERTY CSS *************/

  .wide-container {
    max-width: calc(1520px + 24px);
  }

  /* ======================================================
                       TOP HEADER SOC
====================================================== */

  .header-contact-card {
    padding: 6px 5px;
  }

  .header-contact-card img {
    max-width: 28px;
  }

  .header-contact-card .header-contact-text {
    font-size: 18px;
  }

  /* ADD BY PRITESH (27/01/26) */
  .header-main {
    top: 0;
  }
}

/* ADD BY PRITESH (27/01/26) */
@media (max-width: 1599.98px) {
  .font-22 {
    font-size: 20px;
  }

  /************ COMMON CONTAINER PROPERTY CSS *************/

  .wide-container {
    max-width: calc(1360px + 24px);
  }

  /* ======================================================
                       TOP HEADER SOC
====================================================== */

  .header-contact-card img {
    max-width: 24px;
  }

  .header-contact-card .header-contact-text {
    font-size: 16px;
  }

  /* ADD BY PRITESH (27/01/26) */
  .header-main {
    top: 0;
  }

  /* Common css For title & link START */

  .dropdown_main .main-title {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px;
  }

  .dropdown_main .link_list_ul li a {
    font-size: 14px;
    line-height: 22px;
  }
  /* Common css For title & link END */

  /*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/

  .header-menu .header-menu-inner .main-nav-ul .main-nav-li .main-nav-link {
    margin: 0px 11px;
    padding: 36px 0px;
  }

  .main-nav-ul .main-nav-li .main-nav-link .main-link-text {
    font-size: 16px;
  }

  /*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

  .spacing_30 {
    gap: 25px;
  }

  .spacing_20 {
    gap: 18px;
  }

  /* HEADER COLUMNS CSS START */
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-3 {
    width: calc((100% - 50px) / 3);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-4 {
    width: calc((100% - 75px) / 4);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-6 {
    width: calc((100% - 50px) / 3);
  }

  /* CARD ICON COLUMNS  */
  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-4 {
    width: calc((100% - 54px) / 4);
  }

  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-3 {
    width: calc((100% - 36px) / 3);
  }

  /* ADD CSS FOR LOCATION MENU ADDED IN SERVICE MENU  */
  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-left {
    width: calc((100% - 480px) - 25px);
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-right {
    width: 480px;
  }

  /* HEADER COLUMNS CSS END */

  .ai-expert-card {
    padding: 20px;
  }

  .icon-card-wrapper {
    padding: 18px 16px;
    gap: 12px;
  }

  /*=====================================================
            CSS FOR DROPDOWN NAV END 
=====================================================*/
}

@media (max-width: 1399px) {
  .font-22 {
    font-size: 18px;
  }

  .font-16 {
    font-size: 15px !important;
    line-height: 22px;
  }

  /************ COMMON CONTAINER PROPERTY CSS *************/

  .wide-container {
    max-width: calc(1140px + 24px);
  }

  /* HEADER MENU CSS ADDED BY PRITESH (12-06-2026) */

  .header-logo img {
    max-width: 120px;
  }

  .header-btn button {
    font-size: 16px;
    padding: 12px 23px;
    min-width: 150px;
  }

  /*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/

  .header-menu .header-menu-inner .main-nav-ul .main-nav-li .main-nav-link {
    margin: 0px 10px;
    padding: 33px 0px;
  }

  .main-nav-ul .main-nav-li .main-nav-link .main-link-text {
    font-size: 15px;
  }

  /*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

  .spacing_30 {
    gap: 20px;
  }

  .spacing_20 {
    gap: 14px;
  }

  .spacing_x_16 {
    column-gap: 12px;
  }

  /* Common css For title & link START */

  .dropdown_main .main-title {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 10px;
  }

  .dropdown_main .link_list_ul li a {
    font-size: 14px;
    line-height: 21px;
  }
  /* Common css For title & link END */

  .header-menu .dropdown_main .dropdown-body .header-tabs-row {
    padding: 30px 0px;
    max-height: calc(100vh - 110px);
  }

  /* HEADER COLUMNS CSS START */
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-3,
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-6 {
    width: calc((100% - 40px) / 3);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-4 {
    width: calc((100% - 60px) / 4);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-xl-3 {
    width: calc((100% - 40px) / 3);
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-xl-12 {
    width: 100%;
  }

  /* CARD ICON COLUMNS  */
  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-4 {
    width: calc((100% - 42px) / 4);
  }

  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-3 {
    width: calc((100% - 28px) / 3);
  }

  /* ADD CSS FOR LOCATION MENU ADDED IN SERVICE MENU  */
  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-left {
    width: calc((100% - 430px) - 20px);
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-right {
    width: 430px;
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .submenu-list
    .header-colul-li-2
    li {
    width: calc((100% - 12px) / 2);
  }

  /* HEADER COLUMNS CSS END */

  .dropdown_main .icon-list-wrapper {
    gap: 10px;
  }
  .dropdown_main .icon-list-wrapper .icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .ai-expert-card {
    padding: 17px;
  }

  .icon-card-wrapper {
    padding: 16px 14px;
    gap: 10px;
  }

  .icon-card-wrapper .card-icon {
    width: 40px;
    height: 40px;
  }

  /*=====================================================
            CSS FOR DROPDOWN NAV END 
=====================================================*/
}

@media (max-width: 1199px) {
  /************ COMMON CONTAINER PROPERTY CSS *************/

  .wide-container {
    max-width: calc(950px + 24px);
  }

  .header-logo img {
    max-width: 100px;
  }

  .header-logo img {
    max-width: 100px !important;
    max-height: 50px !important;
  }

  .header-main .header-btn .btn {
    padding: 10px 12px;
    font-size: 14px;
    min-width: 120px;
  }

  /* ======================================================
                       TOP HEADER SOC
====================================================== */
  .top-header-main {
    padding: 5px 7px;
  }

  .header-contact-card {
    gap: 6px;
    padding: 4px 5px;
  }

  .header-contact-card img {
    max-width: 22px;
  }

  .header-contact-card .header-contact-text {
    font-size: 14px;
  }

  /* ADD BY PRITESH (27/01/26) */
  .header-main {
    top: 0;
  }

  /*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/

  .header-menu .header-menu-inner .main-nav-ul .main-nav-li .main-nav-link {
    margin: 0px 6px;
    padding: 30px 0px;
    gap: 2px;
  }

  .main-nav-ul .main-nav-li .main-nav-link .main-link-text {
    font-size: 14px;
  }

  /*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

  .spacing_30 {
    gap: 16px;
  }

  /* Common css For title & link START */

  .dropdown_main .main-title {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 8px;
  }

  .dropdown_main .link_list_ul li a {
    font-size: 14px;
    line-height: 19px;
  }
  /* Common css For title & link END */

  .header-menu .dropdown_main .dropdown-body .header-tabs-row {
    max-height: calc(100vh - 100px);
  }

  /* HEADER COLUMNS CSS START */
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-3,
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-6 {
    width: calc((100% - 32px) / 3);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-4 {
    width: calc((100% - 48px) / 4);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-xl-3 {
    width: calc((100% - 32px) / 3);
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-xl-12 {
    width: 100%;
  }

  /* CARD ICON COLUMNS  */

  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-3,
  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-4 {
    width: calc((100% - 28px) / 3);
  }

  /* ADD CSS FOR LOCATION MENU ADDED IN SERVICE MENU  */
  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-left {
    width: calc((100% - 255px) - 16px);
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-right {
    width: 255px;
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .submenu-list
    .header-colul-li-2
    li {
    width: 100%;
  }

  /* HEADER COLUMNS CSS END */

  .dropdown_main .icon-list-wrapper {
    gap: 8px;
  }

  .ai-expert-card {
    padding: 15px 13px;
  }

  .icon-card-wrapper {
    padding: 16px 14px;
    gap: 10px;
  }

  /*=====================================================
            CSS FOR DROPDOWN NAV END 
=====================================================*/
}

@media (max-width: 991px) {
  /************ COMMON CONTAINER PROPERTY CSS *************/

  .wide-container {
    max-width: 100%;
  }

  /* ADD BY PRITESH (27/01/26) */
  .header-main {
    top: 0;
  }

  /*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/
  .main-nav-ul .main-nav-li .main-nav-link .main-link-text {
    font-size: 16px;
  }

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    .header-menu-inner {
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    z-index: 777;
    height: calc(100vh - 71px);
    overflow: auto;
    transition: all 400ms ease;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
  }

  .header-main
    .header-inner-main
    .header-inner
    .header-menu.show
    .header-menu-inner {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    background-color: rgba(18, 18, 18, 1);
  }

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    .header-menu-inner {
    display: block;
  }

  .header-main .header-inner-main {
    padding: 12px 0;
    border: none;
  }

  .header-menu .header-menu-inner .main-nav-ul .main-nav-li .main-nav-link {
    margin: 0px 12px;
    padding: 15px 0px;
    justify-content: space-between;
  }

  .header-menu
    .main-nav-ul
    .main-nav-li
    .main-nav-link.accordion-btn
    .dropdown-chevron-arrow {
    transition: all 500ms ease;
  }

  .header-menu
    .main-nav-ul
    .main-nav-li
    .main-nav-link.accordion-btn[aria-expanded="true"]
    .dropdown-chevron-arrow {
    transform: rotate(-180deg);
    transition: all 500ms ease;
  }

  .header-main .header-menu .header-menu-inner > .main-nav-ul > .main-nav-li {
    border-bottom: 1px solid var(--border-color);
  }

  /*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

  .line-sperator {
    margin: 22px 0;
  }

  .spacing_30 {
    gap: 25px 16px;
  }

  .header-menu .main-nav-ul .main-nav-li .dropdown_main {
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-dropdown);
    box-shadow: unset;
  }

  .header-menu .main-nav-ul .main-nav-li .dropdown_main .dropdown-body {
    border-top: 1px solid var(--border-color);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row {
    padding: 24px 0px;
  }

  /* HEADER COLUMNS CSS START */
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-4 {
    width: calc((100% - 32px) / 3);
  }

  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-4,
  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-3 {
    width: calc((100% - 14px) / 2);
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-xl-3 {
    width: calc((100% - 32px) / 3);
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-xl-12 {
    width: 100%;
  }

  /* ADD CSS FOR LOCATION MENU ADDED IN SERVICE MENU  */
  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-left {
    width: 100%;
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-divide-right {
    width: 100%;
  }

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .submenu-list
    .header-colul-li-2
    li {
    width: calc((100% - 24px) / 3);
  }

  /* HEADER COLUMNS CSS END */

  .icon-card-wrapper {
    padding: 13px 10px;
    gap: 8px;
  }

  /*=====================================================
            CSS FOR DROPDOWN NAV END 
=====================================================*/

  .header-main .header-btn .btn {
    min-width: 140px;
  }
}

@media (max-width: 767px) {
  .font-14 {
    font-size: 12px;
  }

  .header-main .container {
    padding: 0 15px;
  }

  .header-btn .btn {
    padding: 10px;
    min-width: 135px;
  }

  .header-logo {
    max-width: 100px;
  }

  /* ADD CSS FOR LOGO PRITESH (22-01-2022)  */

  .header-logo img {
    max-width: 100px !important;
    max-height: 55px !important;
  }

  /*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    .header-menu-inner {
    top: 71px;
    height: calc(100vh - 71px);
    padding-bottom: 90px;
  }

  /*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

  .spacing_30 {
    gap: 18px;
  }

  /* Common css For title & link START */
  .dropdown_main .main-title {
    margin: 0;
    font-size: 14px;
  }
  /* Common css For title & link END */

  .header-menu
    .dropdown_main
    .header-tabs-row
    .icon-list-wrapper
    .submenu-list {
    padding-left: 42px;
  }

  .header-menu
    .dropdown_main
    .header-tabs-row
    .list-wrapper
    .submenu-list
    .link_list_ul {
    padding-top: 10px;
  }

  .header-menu
    .dropdown_main
    .header-tabs-row
    .submenu-accordion-btn
    .dropdown-chevron-arrow {
    transition: all 500ms ease;
  }

  .header-menu
    .dropdown_main
    .header-tabs-row
    .submenu-accordion-btn:not(.collapsed)
    .dropdown-chevron-arrow {
    transform: rotate(-180deg);
    transition: all 500ms ease;
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row {
    max-height: 100%;
  }

  /* HEADER COLUMNS CSS START */
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-4,
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-3,
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-6,
  .header-menu .dropdown_main .dropdown-body .header-tabs-row .header-col-xl-3,
  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .header-col-xl-12 {
    width: 100%;
  }

  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-4,
  .header-menu .dropdown_main .dropdown-body .card-tabs-row .header-col-3 {
    width: calc((100% - 14px) / 2);
  }

  /* ADD CSS FOR LOCATION MENU ADDED IN SERVICE MENU  */

  .header-menu
    .dropdown_main
    .dropdown-body
    .header-tabs-row
    .submenu-list
    .header-colul-li-2
    li {
    width: 100%;
  }

  /* HEADER COLUMNS CSS END */

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/
}

@media (max-width: 575px) {
  .font-22 {
    font-size: 16px;
  }

  .font-16 {
    font-size: 14px !important;
    line-height: 22px;
  }

  .header-logo img {
    max-width: 85px !important;
    max-height: 45px !important;
  }

  /*=====================================================
            CSS FOR MAIN NAV START 
=====================================================*/

  .header-main
    .header-inner-main
    .header-inner
    .header-menu
    .header-menu-inner {
    top: 64px;
    height: calc(100vh - 64px);
    padding-bottom: 80px;
  }

  /*=====================================================
            CSS FOR MAIN NAV END 
=====================================================*/

  /*=====================================================
            CSS FOR DROPDOWN NAV START 
=====================================================*/

  .spacing_20 {
    gap: 8px;
  }

  .header-menu .dropdown_main .dropdown-body {
    padding: 0 8px;
  }

  .header-menu .dropdown_main .dropdown-body .header-tabs-row {
    padding: 16px 0px;
  }

  .dropdown_main .icon-list-wrapper .icon-wrapper {
    padding: 2px;
    border-radius: 6px;
  }

  .ai-expert-card {
    padding: 14px 12px;
  }

  /*=====================================================
            CSS FOR DROPDOWN NAV END 
=====================================================*/
}
