/* Megamenu Service Widget */
.header-menu-area .smw-megamenu-service {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
}

.header-menu-area .smw-mm-service-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.header-menu-area .smw-megamenu-grid {
  display: flex;
  gap: 32px;
}

.header-menu-area .smw-megamenu-grid .smw-megamenu-column {
  flex: 1 1 0;
  min-width: 0;
}

.header-menu-area .smw-megamenu-group {
  margin-bottom: 40px;
}

.header-menu-area .smw-megamenu-group:last-child {
  margin-bottom: 0;
}

.header-menu-area .smw-megamenu-column-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fe5b00;
  margin-bottom: 12px;
}

.header-menu-area .smw-megamenu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: #fde7da;
  color: #fe5b00;
  font-size: 18px;
}

.header-menu-area .smw-megamenu-icon img {
  max-width: 16px;
  height: auto;
}

.header-menu-area .smw-megamenu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header-menu-area .smw-megamenu-links li a {
  margin: -2px 0;
  padding: 10px 15px !important;
}

.header-menu-area .smw-megamenu-links li a:hover {
  background-color: #F1F1F2 !important;
  border-radius: 100px;
}

.header-menu-area .smw-megamenu-cta {
  padding: 30px;
  border-radius: 20px;
  background-color: #11486b;
  background-image: linear-gradient(120deg, #1f8fc4 0%, #0c2d4a 65%);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 30px;
  margin-top: auto;
}

.header-menu-area .smw-megamenu-cta-title {
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 330px;
}

.header-menu-area .smw-megamenu-cta-btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #fe5b00;
  border-radius: 100px;
  padding: 14px 28px;
  transition: background-color 0.3s ease;
}

.header-menu-area .smw-megamenu-cta-btn:hover {
  background-color: #e65200;
}

@media (max-width: 1199px) {

  .header-menu-area .smw-megamenu-grid,
  .header-menu-area .smw-megamenu-service {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-menu-area .smw-megamenu-icon {
    display: none;
  }

  .header-menu-area .smw-megamenu-column-title {
    cursor: pointer;
    color: #fff;
    text-transform: capitalize;
    justify-content: space-between;
  }

  .header-menu-area .smw-megamenu-column-title::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 6px;
    margin-left: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.53125 0.530305L4.53128 4.53027L8.53125 0.530273" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="16"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
  }

  .header-menu-area .smw-megamenu-group.active .smw-megamenu-column-title::after {
    transform: rotate(180deg);
  }

  .header-menu-area .smw-megamenu-links {
    display: none;
  }

  .header-menu-area .smw-megamenu-group.active .smw-megamenu-links {
    display: flex;
  }

  .header-menu-area .smw-megamenu-group {
    margin-bottom: 20px;
    padding-left: 15px;
  }

  .header-menu-area .smw-mm-service-right,
  .header-menu-area .smw-mm-service-left {
    flex: unset;
    width: 100%;
  }


  .header-menu-area ul li.menu-item-has-children>a {
    color: #fff;
  }




}

@media (max-width: 767px) {}