/* Megamenu Service Widget */
.header-menu-area .smw-megamenu-service {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.header-menu-area .smw-mm-service-left {
  flex: 0 0 260px;
}

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

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

.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.6fr;
    gap: 30px;
}

.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: 30px;
    padding-bottom: 30px;
    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: 1024px) {
  .header-menu-area .smw-megamenu-service {
    flex-direction: column;
    gap: 28px;
  }

  .header-menu-area .smw-mm-service-left {
    flex: 1 1 auto;
  }

  .header-menu-area .smw-megamenu-cta-title {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .header-menu-area .smw-megamenu-grid {
    flex-direction: column;
    gap: 28px;
  }
}
