@charset "UTF-8";
:root {
      --mg-yellow: #f5c800;
   
      --mg-black: #111111;
  
    
    }



    /* ── SERVICES MEGA DROPDOWN ── */
    .services-dropdown-wrapper { position: relative; }
    .services-mega {
      display: none;
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      width: 820px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
      overflow: hidden;
      z-index: 9999;
      border: 1px solid #eee;
    }
    .services-mega.open { display: flex; }

    /* Sidebar of mega menu */
    .mega-sidebar {
      width: 240px;
      min-width: 240px;
      background: #f8f8f8;
      border-right: 1px solid #ebebeb;
      padding: 8px 0;
    }
    .mega-sidebar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      font-size: 13.5px;
      color: #555;
      cursor: pointer;
      border-left: 3px solid transparent;
      transition: background 0.15s, color 0.15s;
    }
    .mega-sidebar-item i { font-size: 27px; }
    .mega-sidebar-item:hover { background: #fff; color: #222; }
    .mega-sidebar-item.active {
      color: var(--mg-black);
      font-weight: 600;
      border-left-color: var(--mg-yellow);
      background: #fff;
    }

    /* Content panel */
    .mega-content {
      flex: 1;
      padding: 22px 24px 18px;
    }
    .mega-section-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--mg-black);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mega-section-title i { color: var(--mg-yellow); font-size: 20px; }
    .mega-section-desc {
      font-size: 12.5px;
      color: #888;
      margin-bottom: 16px;
    }

    /* Tech cards grid */
    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .tech-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 14px;
      border: 1px solid #ebebeb;
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
    }
    .tech-card:hover {
      border-color: var(--mg-yellow);
      box-shadow: 0 4px 16px rgba(245,200,0,0.12);
      transform: translateY(-1px);
    }
    .tech-card-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      font-weight: 800;
    }
    .tech-card-info h4 { font-size: 14px; font-weight: 600; color: #222; margin: 0 0 2px; }
    .tech-card-info span { font-size: 10.5px; color: #999; letter-spacing: 0.8px; font-weight: 500; }

    /* Whatsapp CTA inside menu */
    .mega-footer {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #f0f0f0;
    }
    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #25d366;
      color: #fff;
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-wa:hover { background: #1db557; color: #fff; }

    
   
 
    
    
	
	/* =========================
   MOBILE SERVICES MEGA MENU
   ========================= */
@media (max-width: 991px) {

  .services-mega {
    width: calc(100vw - 20px);
    left: 10px;
    right: 10px;
    transform: none;
    flex-direction: column;
    max-height: 85vh;
    overflow-y: auto;
	 overflow: visible;
  }

  /* Sidebar Grid */
  .mega-sidebar {
    width: 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
  }

  .mega-sidebar-item {
    border-left: none;
    border-radius: 8px;
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
    font-size: 12px;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    min-height: 70px;
  }

  .mega-sidebar-item i {
    font-size: 18px;
  }

  .mega-sidebar-item.active {
    background: #f5c800;
    color: #111;
    font-weight: 600;
  }

  .mega-content {
    padding: 15px;
  }

  .mega-section-title {
    font-size: 15px;
  }

  .mega-section-desc {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Tech cards */
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tech-card {
    padding: 10px 12px;
  }

  .tech-card-info h4 {
    font-size: 13px;
  }

  .tech-card-info span {
    font-size: 10px;
  }

  /* WhatsApp Button */
  .btn-wa {
    width: 100%;
    justify-content: center;
  }
}

/* Extra Small Mobile */
@media (max-width: 576px) {

  .services-mega {
    width: calc(100vw - 25px);
    left: 5px;
    right: 5px;
  }

  .mega-sidebar {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
  }

  .mega-sidebar-item {
    font-size: 11px;
    padding: 10px 6px;
    min-height: 65px;
  }

  .mega-sidebar-item i {
    font-size: 16px;
  }
}

.mega-close-btn{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: 0.2s;
  z-index: 10;
}

.mega-close-btn:hover{
  background: #f5c800;
  color: #111;
}

