/* Floating WhatsApp Button with Pulsing Effect */
        .whatsapp-button {
            position: fixed;
            bottom: 15px;
            left: 15px;
            background-color: #25d366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            animation: pulse 1.5s infinite;
        }

        /* Pulsing Effect */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-button img {
            width: 55px;
            height: 55px;
        }

        /* Chat Popup */
        .chat-popup {
            position: fixed;
            bottom: 80px;
            left: 15px;
            width: 360px;
            max-width: 90%;
            background: white !important;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            display: none;
            z-index: 999;
            transition: opacity 0.3s ease-in-out;
            font-family: "Manrope", sans-serif;
        }

        /* Chat Header */
        .chat-header {
            background: #0a5f54;
            color: white;
            display: flex;
            align-items: center;
            padding: 10px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 10px 10px 0 0;
            height: 78px;
            position: relative;
        }

        .chat-header img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-right: 10px;
        }

        /* Close Button */
        .close-btn {
            z-index: 1;
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 16px;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
        }

        /* Chat Content */
        .chat-content {
            background: url(https://user-images.githubusercontent.com/99333830/277576700-059390fb-4890-40dc-8a77-34942ff2e9db.png) no-repeat center;
            background-size: cover;
            padding: 20px 15px 35px 15px;
        }

        /* IMC Group Text */
        .wa-chat-title {
            font-size: 13px;
            font-weight: 700;
            line-height: 18px;
            color: rgba(0, 0, 0, 0.4);
            margin-bottom: 5px;
        }

        /* Chat Message Box */
        .wa-chat-box-content-chat {
            width: fit-content;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Start Chat Button */
        .start-chat {
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: white;
            font-size: 15px;
            font-weight: 700;
            padding: 12px;
            border-radius: 25px;
            background: #4dc247;
            margin: 25px;
            gap: 8px;
        }

        .start-chat img {
            width: 20px;
            height: 20px;
        }

        /* Responsive */
        @media (max-width: 500px) {
            .chat-popup {
                width: 90%;
                left: 5%;
            }
        }
	
/* GEM Tab CSS */
.gem-tabs-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-family: "Sinteca", Sans-serif;
  border-bottom: 1px solid #ededed;
  background: #f1f7fd;
  padding: 0 10px;
}

.gem-tab-control {
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.6rem 4.3rem;
  font-size: 18px;
  position: relative;
  color: #1a1a1a;
  transition: color 0.3s;
  text-decoration: none;
  user-select: none;
}

.gem-tab-control.active-tab {
  color: #c00000;
}

.gem-tab-control.active-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #c00000;
}

.gem-tab-content[aria-expanded="false"] {
  display: none;
}

.gem-tab-content[aria-expanded="true"] {
  display: block;
}

.gem-region-content {
  max-width: 1350px;
  margin: auto;
  display: flex;
  flex-direction: column;
  color: #444;
  background: #f1f7fd;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.gem-region-desc {
  font-size: 19px;
  line-height: 1.5;
  font-family: "Sinteca", Sans-serif;
}

.gem-region-box {
  display: flex;
  overflow: hidden;
  background: #f4f9ff;
  border-radius: 4px;
}

.gem-region-list {
  flex: 1 1 60%;
  padding: 2.5rem 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background: #fff;
  justify-content: space-between;
}

.gem-region-list ul {
  list-style: none;
  padding: 0px;
}

.gem-region-list li {
  margin: 1.4rem 0;
  font-family: "Sinteca", Sans-serif;
}

/* Make li content clickable and add animated underline */
.gem-region-list li a {
  position: relative;
  display: inline-block;
  font-size: 19px;
  color: #1a1a1a;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.gem-region-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #C00000;
  transition: width 0.3s ease;
}

.gem-region-list li a:hover {
  color: #C00000;
}

.gem-region-list li a:hover::after {
  width: 100%;
}

.gem-region-map {
  flex: 1 1 40%;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.gem-region-map img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

@media (max-width: 1024px) {
  .gem-region-box {
    flex-direction: column;
  }
  .gem-region-list {
    gap: 2rem;
    padding: 2rem;
  }
  .gem-region-map {
    justify-content: center;
  }
  .gem-region-map img {
    max-width: none;
  }
  .gem-tab-control {
    padding: 0.6rem 1.3rem;
  }
  .gem-tabs-nav {
    justify-content: space-between;
  }
}
/* GEM Tab CSS */


/* ================= Header Slider ================= */
.imc-header-slider-container {
  max-width: 1500px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  font-family: "Manrope", Sans-serif;
}

.imc-header-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.imc-header-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 60px;
  color: white;
  position: relative;
}

.imc-header-slide1,
.imc-header-slide3 {
  background: linear-gradient(270deg, #C01212 24%, #0A0D5A 86%);
}

.imc-header-slide2 {
  background: linear-gradient(270deg, #0A0D5A 24%, #C01212 86%);
}

.imc-header-slide-content {
  flex: 1;
  padding-right: 40px;
}

.imc-header-slide-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: normal;
}

.imc-header-slide-content p {
  font-size: 19px;
  margin-bottom: 20px;
}

.imc-header-btn {
  background: white;
  color: #0b0050;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 30px;
  display: inline-block;
  text-decoration: none;
}

.imc-header-nav {
  display: flex;
  gap: 10px;
}

.imc-header-nav button {
  background-color: #00005d;
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.imc-header-nav button:hover,
.imc-header-nav button:active {
  background-color: #c00000;
}

.imc-header-nav button img {
  width: 16px;
  height: 16px;
}

.imc-header-slide-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.imc-header-slide-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.imc-header-nav.desktop {
  margin-top: 20px;
}

/* ================= Clients ================= */
.imc-clients-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.imc-clients-scroller {
  display: inline-flex;
  animation: imc-clients-scroll-left 30s linear infinite;
}

.imc-clients-scroller:hover {
  animation-play-state: paused;
}

.imc-clients-scroller img {
  height: 70px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.imc-clients-scroller img:hover {
  filter: none;
  opacity: 1;
}

@keyframes imc-clients-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================= Our Solutions ================= */
.imc-solutions-section {
  display: flex;
  flex-wrap: nowrap;
  border-radius: 20px;
  overflow: hidden;
  background: url(https://intuitconsultancy.com/wp-content/uploads/2025/07/imc-solutions.png) center/cover no-repeat;
  position: relative;
  min-height: 600px;
  color: white;
  padding: 50px;
  font-family: 'Sinteca';
}

.imc-solutions-section::before {
  content: '';
  display: none;
  position: absolute;
  inset: 0;
  background-color: #00005d;
  opacity: 0.85;
  z-index: 1;
}

.imc-solutions-left {
  flex: 0 0 30%;
  padding: 60px 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.imc-solutions-left > h2 {
  font-size: 3rem;
  font-weight: normal;
}

.imc-subtitle {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.9;
}

.imc-subtitle::before {
  content: "🌐";
  font-size: 16px;
}

.imc-solutions-center {
  flex: 0 0 20%;
}

.imc-solutions-right {
  flex: 0 0 50%;
  padding: 60px 40px;
  max-height: 600px;
  overflow-y: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Manrope", sans-serif;
}

.imc-solutions-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  color: white;
  padding: 20px 24px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.imc-solutions-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.imc-solutions-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
  font-weight: normal;
}

.imc-solutions-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.imc-solutions-card a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.imc-solutions-right::-webkit-scrollbar {
  width: 6px;
}

.imc-solutions-right::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* ================= Blog Carousel ================= */
.uc_carousel button.owl-prev,
.uc_carousel button.owl-next {
  border: 1px solid #00005d !important;
  width: 45px !important;
  height: 45px !important;
  line-height: 44px !important;
  font-size: 22px !important;
  text-align: center !important;
}

.uc_carousel button.owl-prev.disabled,
.uc_carousel button.owl-next.disabled {
  opacity: 0.3;
}

.uc_carousel button.owl-prev {
  left: 94% !important;
  transform: translateX(-100%);
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .uc_carousel button.owl-prev {
    left: 90% !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .uc_carousel button.owl-prev {
    left: 88% !important;
  }
}

.uc_carousel button.owl-prev:focus,
.uc_carousel button.owl-prev:active,
.uc_carousel button.owl-next:focus,
.uc_carousel button.owl-next:active {
  outline: none;
  box-shadow: none;
}

.uc_carousel button.owl-prev:hover,
.uc_carousel button.owl-next:hover {
  background: #f1f7fd !important;
}

.uc_carousel .ue_post_date {
  position: absolute;
  top: 27.52em;
}

.uc_carousel .ue_post_btn_holder {
  text-align: end;
}

.uc_carousel a.uc_more_btn {
  font-size: 2em;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .imc-solutions-left {
    flex: 0 0 35%;
    padding: 40px 10px;
  }
  .imc-solutions-center {
    flex: 0 0 10%;
  }
  .imc-solutions-right {
    flex: 0 0 55%;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  /* Header */
  .imc-header-slide {
    flex-direction: column;
    padding: 40px 20px 0;
    text-align: left;
  }
  .imc-header-slide-content {
    padding-right: 0;
    width: 100%;
  }
  .imc-header-slide-content h1 {
    font-size: 40px;
  }
  .imc-header-btn {
    width: 100%;
    text-align: center;
  }
  .imc-header-slide-image {
    width: 100%;
    margin-top: 20px;
  }
  .imc-header-slide-image img {
    width: 100%;
    margin-bottom: -5px;
  }
  .imc-header-nav.desktop {
    display: none;
  }
  .imc-header-nav.mobile {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
  }

  /* Clients */
  .imc-clients-scroller img {
    height: 40px;
    margin: 0 20px;
  }

  /* Solutions */
  .imc-solutions-section {
    flex-direction: column;
    padding: 30px 20px;
    background-position: center;
  }
  .imc-solutions-section::before {
    display: block;
  }
  .imc-solutions-left,
  .imc-solutions-right {
    padding: 20px 10px;
    width: 100%;
  }
  .imc-solutions-left {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .imc-solutions-center {
    display: none;
  }
  .imc-solutions-right {
    max-height: none;
    overflow-y: visible;
  }
  .imc-solutions-card h3 {
    font-size: 20px;
  }
}

@media (min-width: 769px) {
  .imc-header-nav.mobile {
    display: none;
  }
}

/* Menu Section */
.imc-menu-left-list li:hover::after,
.imc-menu-left-list li.active::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 14px;
  color: #c00000;
  transition: all 0.3s ease;
}
header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #ffffff;
      border-bottom: 1px solid #ddd;
      font-family: "Manrope", Sans-Serif;
    }
    
    /* Optional scroll shadow */
header.sticky-scroll {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .header-container {
      max-width: 1400px;
      margin: auto;
      padding: 16px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo img {
      height: 80px;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 32px;
    }
    nav ul li button {
      background: none;
      border: none;
      font-size: 16px;
      cursor: pointer;
      font-weight: 500;
      color: #00005d;
    }
    
    nav ul li button a {
        color: #00005d;
    }
    
    nav ul li button a:hover {
        color: #c00000;
    }
    
    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-right button {
      background-color: #00054f;
      color: white;
      padding: 8px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .nav-right i {
      font-size: 18px;
      color: #333;
      cursor: pointer;
    }
    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 1500px;
      background: #f5f5f5;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border: 1px solid #ddd;
      z-index: 1000;
    }
    .submenu.open {
      display: block;
  width: 100%;
  background: #f1f7fd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
  z-index: 1000;
    }

    .submenu-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  padding: 24px;
  gap: 24px;
}

    .menu-left {
      width: 350px;
      border-right: 1px solid #e4e8ef;
    }
    .menu-left ul {
      list-style: none;
    }
    .menu-left li {
      padding: 16px 20px;
      cursor: pointer;
    }
    .menu-left li.active,
    .menu-left li:hover {
      background-color: #fff;
      /*font-weight: 600;*/
      /*color: #c00000;*/
    }
    .menu-right {
      flex: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }
.menu-item {
  width: 30%;
  min-width: 300px;
  max-width: 300px;
  text-align: left;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  background-color: #00005d05;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto; /* allow natural height */
}


    .menu-item:hover {
      background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .menu-item-title {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .menu-item-desc {
      font-size: 13px;
      color: #666;
    }
    .mobile-header,
    .mobile-menu {
      display: none;
    }

    .mobile-menu a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.mobile-search {
  margin-top: 12px;
}

.mobile-search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}


    @media (max-width: 1024px) {
      .desktop-header,
      .desktop-menu,
      .nav-right {
        display: none;
      }
      .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
      }
      .mobile-header .logo img {
        height: 40px;
      }
      .hamburger {
        font-size: 24px;
        cursor: pointer;
      }
      .mobile-menu {
        position: fixed;
  top: 0;
  left: -100%;
  width: 100%; /* Full width */
  height: 100%;
  background: #f1f7fd;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  z-index: 2000;
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  display: block;
      }
      .mobile-menu.open {
        left: 0;
      }
      .mobile-menu-header {
        text-align: center;
        border-bottom: 1px solid #ccc;
        padding-bottom: 12px;
        margin-bottom: 12px;
      }
      .mobile-menu ul {
        list-style: none;
        padding: 0px;
      }
      .mobile-menu li {
        padding: 20px 8px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        position: relative;
      }
      .mobile-menu li i {
        position: absolute;
        right: 8px;
        top: 24px;
      }
      .mobile-submenu {
        display: none;
        padding-left: 8px;
        margin-top: 8px;
      }
      
      .mobile-about-links > a {
          padding: 10px;
          border-radius: 5px;
      }
      
      .mobile-about-links > a:hover {
          background: white;
      }
      
      .mobile-about-links > a:hover h6 {
          color: #c00000;
      }

      .mobile-submenu.open {
        display: block;
      }
    }

    @media (max-width: 768px) {
  .submenu-content {
    grid-template-columns: 1fr;
  }

  .menu-left {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}

.menu-right-section {
  flex-wrap: wrap;
  gap: 24px;
  display: none;
}

.menu-item-icon {
  /*background-image: url('https://example.com/icon.svg');*/
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  margin-bottom: 15px;
}

.submenu-content h3, .submenu-content h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: #00005d;
}

/*.submenu-content a {*/
/*  color: #00054f;*/
/*  text-decoration: none;*/
/*  display: block;*/
/*}*/


.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.about-col-1 {
  font-size: 16px;
}

.about-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-left: 1px solid #e4e8ef;
    border-right: 1px solid #e4e8ef;
    padding: 0 5px;
}

.about-col-2 a {
  color: #000000;
  padding: 15px;
}

.about-col-2 a:hover {
  background: white;
  border-radius: 10px;
}


#locationsMenu, #aboutMenu {
    padding: 30px 0px;
}

.about-col-1 > h5, .about-col-2 > a > h5, .about-col-3 h5 {
    font-size: 1.125rem;
    margin: 0px 0px 10px 0px;
    color: #000000;
}

.about-col-1 > p, .about-col-2 > a > p, .about-col-3 p {
    font-size: 0.85rem;
    margin: 0px;
    color: #000000;
}

.featured-box {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.featured-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.featured-box .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-box .text-content strong {
  font-size: 16px;
  color: #00054f;
}

.featured-box .text-content span {
  font-size: 14px;
  color: #555;
}


.mobile-about-title h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.mobile-about-title p {
  font-size: 14px;
  margin-bottom: 14px;
  color: #555;
}
.mobile-about-links h6 {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0px;
}
.mobile-about-links a p {
  display: block;
  font-size: 13px;
  color: #666;
  flex-grow: 1;
  margin: 5px 0px;
}
.mobile-about-links a i {
  font-size: 14px;
  color: #00054f;
  margin-left: auto;
  margin-top: 4px;
}
.mobile-featured h4 {
  margin-top: 16px;
  font-size: 15px;
}
.mobile-featured .featured-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  text-decoration: none;
}
.mobile-featured img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.mobile-featured .text-content strong {
  font-size: 15px;
  color: #00054f;
}
.mobile-featured .text-content span {
  font-size: 13px;
  color: #555;
}

.mobile-about-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  color: #000;
  padding: 10px;
}
.mobile-about-links .text {
  display: flex;
  flex-direction: column;
}
.mobile-about-links .text strong {
  font-size: 15px;
}
.mobile-about-links .text span {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
.mobile-about-links a i {
  font-size: 14px;
  color: #00054f;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 2100;
}

nav ul li button:hover, nav ul li button:focus,
nav ul li button:active {
    background: #00000000;
    color: #c00000;
    border: none;
    outline: none;
    box-shadow: none;
}

#servicesSubmenu > li > ul > li > a > h6 {
text-decoration: none;
font-size: 16px;
font-weight: 500;
color: #000;
margin: 0;
}

#servicesSubmenu > li > ul > li > a > p {
display: block;
font-size: 13px;
color: #666;
flex-grow: 1;
margin-top: 5px;
}

.desktop-search-bar {
  width: 100%;
  background: #fff;
  padding: 20px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: slideDown 0.3s ease-out forwards;
}

.desktop-search-bar form {
  max-width: 1200px;
  margin: auto;
}

.desktop-search-bar input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Slide animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}


.nav-right > button:hover {
    background: #c00000;
}

.imc-menu-left-list li {
  display: flex;
  align-items: center;     /* vertically center icon + text */
  gap: 12px;               /* spacing between icon and text */
  padding: 16px 20px;
  cursor: pointer;
}

.imc-menu-left-list li .menu-icon {
  width: 24px;
  height: 24px;
}

/*.imc-menu-left-list li:hover .menu-icon,*/
/*.imc-menu-left-list li.active .menu-icon {*/
/*  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(7500%) hue-rotate(350deg) brightness(90%) contrast(90%);*/
/*}*/
/* Menu Section */


/* Location Page Tab*/
.imclocation-tab__tabs { display: flex; border-bottom: 1px solid #ccc; margin-bottom: 30px; }
.imclocation-tab__tab { margin-right: 20px; padding-bottom: 10px; cursor: pointer; position: relative; font-weight: 500;font-size:1.2rem;font-family: "Manrope", Sans-serif;color: #222; }
.imclocation-tab__tab.active { color: #c00000;font-weight:bold; }
.imclocation-tab__tab.active::after { content: ''; position: absolute; height: 2px; width: 100%; background: #d00; left: 0; bottom: 0; }
.imclocation-tab__panel-wrapper { overflow: hidden; position: relative; }
.imclocation-tab__content { display: flex; flex-wrap: wrap; transition: transform 0.5s ease; width: 100%; }
.imclocation-tab__card { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: #fff; border-radius: 16px; overflow: hidden; margin: 10px; flex: 1 1 calc(100%); max-width: 100%; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.imclocation-tab__card:hover { box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .3); transform: translateY(-.5rem); }
.imclocation-tab__card img { width: 100%; height: 210px; object-fit: cover; }
.imclocation-tab__info { padding: 12px 16px; display: flex; flex-direction: column; flex-grow: 1; }
.imclocation-tab__info h4 { margin-bottom: 8px; font-size: 1.1rem; font-family: "Manrope", sans-serif; font-weight: 600; color: #000; }
.imclocation-tab__card hr { border: none; border-top: 1px solid #ddd; margin: 8px 0; }
.imclocation-tab__card:hover .imclocation-tab__link { color: #c00000; }
.imclocation-tab__card:hover .imclocation-tab__info h4 { color: #c00000;}
.imclocation-tab__link { display: flex; justify-content: flex-end; font-family: "Manrope", sans-serif; color: #00005d; font-weight: 600; font-size: 0.9rem; margin-top: 10px; }
@media (min-width: 768px) { .imclocation-tab__card { flex: 1 1 calc(50% - 20px); max-width: calc(50% - 20px); } }
@media (min-width: 1024px) { .imclocation-tab__card { flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); } }
/* Location Page Tab*/


/* eServices Tab */
/* Tabs Container */
.infotabs__tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.infotabs__tab {
  margin-right: 20px;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "Manrope", Sans-serif;
  color: #222;
}
.infotabs__tab.active {
  color: #c00000;
  font-weight: bold;
}
.infotabs__tab.active::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #d00;
  left: 0;
  bottom: 0;
}

.infotabs__panel-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.infotabs__content {
  transition: transform 0.5s ease;
  width: 100%;
}
.infotabs__panel {
  padding: 15px;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.infotabs__panel > h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.infotabs__panel p {
  margin-bottom: 10px;
}
.infotabs__panel ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
/* eServices Tab */

/* eServices links */
.eservice-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .eservice-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .eservice-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eservice-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eservice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.eservice-header {
    min-height: 50px; /* Adjust to align titles */
    display: flex;
    align-items: flex-start;
}

.eservice-card h4 {
    font-size: 18px;
    margin: 0;
    color: #000000;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}

.eservice-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eservice-checklist li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
    font-family: "Manrope", sans-serif;
}

.eservice-checklist li::before {
    content: "✔";
    color: #c00000;
    font-weight: bold;
    margin-right: 8px;
}

.eservice-price {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-top: auto;
    font-family: "Manrope", sans-serif;
}

.eservice-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 18px;
    color: #004E98;
}

.eservice-card:hover h4 {
    color: #c00000;
}

.eservice-card:hover .eservice-arrow {
    color: #c00000;
}

.eservice-card h4,
.eservice-arrow {
    transition: color 0.3s ease;
}
/* eServices links */