

.site-header {
  position: relative;
  z-index: 9999;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Fixed Header After Scroll */
        .site-header.header-fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            animation: headerSlideDown 0.35s ease forwards;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Smooth animation */
        @keyframes headerSlideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
        
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

.site-header ul li{
    padding: 0 !important;
}

.header-container {
  min-height: 86px;
  position: relative;
}

.navbar-brand img {
  width: 210px;
  height: auto;
  display: block;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  padding: 33px 0 !important;
  line-height: 1;
}

.nav-link:hover {
  color: #1d5cff;
}

.header-btn {
  background: #202cff;
  color: #fff;
  text-decoration: none;
  min-width: 210px;
  height: 56px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.header-btn:hover {
  color: #fff;
  background: #1120f5;
}

.mega-parent {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 86px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #6da0ff;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.18s ease;
  isolation: isolate;
  z-index: 10;
  overflow: visible;
}

.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu::before {
    content: "";
    position: absolute;
    border: 0;
    top: -10px;
    left: 50%;
    transform: translate(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 10px solid #3c7cff;
}

.mega-3 {
  width: 1140px;
  min-height: 345px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 30px;
}

.mega-2 {
  width: 760px;
  min-height: 345px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px 30px;
}

.mega-col {
  padding: 0 28px;
  border-right: 1px solid #477cff;
}

.mega-col:last-child {
  border-right: 0;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #222;
  margin-bottom: 22px;
}

.mega-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 52px;
}

.mega-item strong {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.mega-item small {
  display: block;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.15;
}

.industry-menu {
  width: 1140px;
  min-height: 398px;
  display: grid;
  grid-template-columns: 265px 1fr;
}

.industry-tabs {
  background: #f0f0f0;
  padding: 28px 20px;
}

.industry-tabs h3 {
  color: #1662ff;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #aaa;
  display: inline-block;
}

.industry-tabs button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 16px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
}

.industry-tabs button.active,
.industry-tabs button:hover {
  color: #1662ff;
}

.industry-content {
  padding: 46px 56px;
}

.industry-panel {
  display: none;
}

.industry-panel.active {
  display: block;
}

.industry-panel h4 {
  color: #1662ff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
}

.industry-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
  columns: 2;
  max-width: 520px;
}

.industry-panel li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #333;
  font-size: 15px;
}

.industry-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #2d74ff;
  border-radius: 50%;
}

.insight-parent {
  position: relative;
}

.insight-menu {
  width: 225px;
  left: 50%;
  transform: translateX(-50%);
  padding: 28px;
  min-height: auto;
}

.insight-menu .mega-item {
  align-items: center;
  margin-bottom: 20px;
}

.insight-menu .mega-item:last-child {
  margin-bottom: 0;
}


@media (max-width: 700px) {
    .site-header{
        display: none;
    }
}

@media (max-width: 1199px) {
  .header-container {
    max-width: 1140px;
  }

  .navbar-nav {
    gap: 12px;
  }

  .mega-3,
  .industry-menu {
    width: 1040px;
  }

  .header-btn {
    min-width: 170px;
  }
}